diff options
author | Michael Smith <msmith@xiph.org> | 2008-04-25 18:13:07 +0000 |
---|---|---|
committer | Michael Smith <msmith@xiph.org> | 2008-04-25 18:13:07 +0000 |
commit | a740294f2a6919b6c6ca1cebf71dcdaef1877b9e (patch) | |
tree | 27ed56cc7c2cc4e00acecd87f77ad118fe4847f6 /sys/dshowdecwrapper/Makefile.am | |
parent | 1e9fd08525958c6831498c37c51fd453459e186f (diff) | |
download | gst-plugins-bad-a740294f2a6919b6c6ca1cebf71dcdaef1877b9e.tar.gz gst-plugins-bad-a740294f2a6919b6c6ca1cebf71dcdaef1877b9e.tar.bz2 gst-plugins-bad-a740294f2a6919b6c6ca1cebf71dcdaef1877b9e.zip |
gst-libs/gst/dshow/Makefile.am: Use CXXFLAGS rather than CFLAGS; these are C++ files.
Original commit message from CVS:
* gst-libs/gst/dshow/Makefile.am:
Use CXXFLAGS rather than CFLAGS; these are C++ files.
Define required constants appropriately.
* sys/dshowdecwrapper/Makefile.am:
Add required include dir, libraries.
Define required constants appropriately.
Diffstat (limited to 'sys/dshowdecwrapper/Makefile.am')
-rw-r--r-- | sys/dshowdecwrapper/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dshowdecwrapper/Makefile.am b/sys/dshowdecwrapper/Makefile.am index 3b03a40d..7e9782bf 100644 --- a/sys/dshowdecwrapper/Makefile.am +++ b/sys/dshowdecwrapper/Makefile.am @@ -2,8 +2,8 @@ plugin_LTLIBRARIES = libgstdshowdecwrapper.la libgstdshowdecwrapper_la_SOURCES = gstdshowaudiodec.c gstdshowdecwrapper.c gstdshowvideodec.c -libgstdshowdecwrapper_la_CFLAGS = $(GST_CFLAGS) -libgstdshowdecwrapper_la_LIBADD = $(GST_LIBS) +libgstdshowdecwrapper_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/gst-libs/gst -DLIBGSTDSHOWDECWRAPPER_EXPORTS +libgstdshowdecwrapper_la_LIBADD = $(GST_LIBS) $(top_builddir)/gst-libs/gst/dshow/libgstdshow-@GST_MAJORMINOR@.la libgstdshowdecwrapper_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstdshowaudiodec.h gstdshowdecwrapper.h gstdshowvideodec.h |