diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-07-08 14:01:19 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-07-08 14:01:19 +0000 |
commit | 9c2d06313bd2d6e498982b906d813f740c400855 (patch) | |
tree | e06f7316fe27b6f7ecf076c1224e2f2ebf0e58b7 /configure.ac | |
parent | c8a54904b232087dac1dd5eded8a9ad9008cc0f9 (diff) | |
download | gst-plugins-bad-9c2d06313bd2d6e498982b906d813f740c400855.tar.gz gst-plugins-bad-9c2d06313bd2d6e498982b906d813f740c400855.tar.bz2 gst-plugins-bad-9c2d06313bd2d6e498982b906d813f740c400855.zip |
configure.ac: Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include flags that are invalid for C++.
Original commit message from CVS:
* configure.ac:
Don't include ERROR_CFLAGS in GST_CXXFLAGS as it might include
flags that are invalid for C++.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e74fee1a..70ebaca5 100644 --- a/configure.ac +++ b/configure.ac @@ -1180,7 +1180,7 @@ dnl prefer internal headers to already installed ones dnl also add builddir include for enumtypes and marshal dnl add GST_OPTION_CFLAGS, but overridable GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS \$(GST_OPTION_CFLAGS)" -GST_CXXFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS \$(GST_OPTION_CXXFLAGS)" +GST_CXXFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CXXFLAGS \$(GST_OPTION_CXXFLAGS)" AC_SUBST(GST_CFLAGS) AC_SUBST(GST_CXXFLAGS) AC_SUBST(GST_LIBS) |