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 /gst-libs | |
parent | 1e9fd08525958c6831498c37c51fd453459e186f (diff) | |
download | gstreamer-plugins-bad-a740294f2a6919b6c6ca1cebf71dcdaef1877b9e.tar.gz |
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 'gst-libs')
-rw-r--r-- | gst-libs/gst/dshow/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst-libs/gst/dshow/Makefile.am b/gst-libs/gst/dshow/Makefile.am index 582df9adc..d9ab54043 100644 --- a/gst-libs/gst/dshow/Makefile.am +++ b/gst-libs/gst/dshow/Makefile.am @@ -1,10 +1,10 @@ lib_LTLIBRARIES = libgstdshow-@GST_MAJORMINOR@.la libgstdshow_@GST_MAJORMINOR@_la_SOURCES = gstdshow.cpp gstdshowfakesink.cpp gstdshowfakesrc.cpp gstdshowinterface.cpp -libgstdshow_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \ - $(GST_PLUGINS_BASE_CFLAGS) +libgstdshow_@GST_MAJORMINOR@_la_CXXFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \ + $(GST_PLUGINS_BASE_CFLAGS) -DLIBDSHOW_EXPORTS libgstdshow_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) libgstdshow_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_ALL_LDFLAGS) -libgstdshow_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/app +libgstdshow_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/dshow libgstdshow_@GST_MAJORMINOR@include_HEADERS = gstdshow.h gstdshowfakesink.h gstdshowfakesrc.h gstdshowinterface.h |