mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
gst/modplug/libmodplug/Makefile.am: Use GST_CXXFLAGS instead of GST_CFLAGS for CXXFLAGS. GST_CFLAGS can contain compi...
Original commit message from CVS: * gst/modplug/libmodplug/Makefile.am: Use GST_CXXFLAGS instead of GST_CFLAGS for CXXFLAGS. GST_CFLAGS can contain compiler parameters that are invalid for C++. Fixes bug #543860.
This commit is contained in:
parent
f1c14fcf87
commit
7b80cad30f
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2008-07-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* gst/modplug/libmodplug/Makefile.am:
|
||||
Use GST_CXXFLAGS instead of GST_CFLAGS for CXXFLAGS. GST_CFLAGS
|
||||
can contain compiler parameters that are invalid for C++.
|
||||
Fixes bug #543860.
|
||||
|
||||
2008-07-21 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* ext/resindvd/Makefile.am:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
noinst_LTLIBRARIES = libmodplug.la
|
||||
|
||||
libmodplug_la_CXXFLAGS = $(GST_CFLAGS) -D_REENTRANT
|
||||
libmodplug_la_CXXFLAGS = $(GST_CXXFLAGS) -D_REENTRANT
|
||||
libmodplug_la_LDFLAGS = -module -avoid-version
|
||||
libmodplug_la_SOURCES = tables.cpp \
|
||||
sndmix.cpp \
|
||||
|
|
Loading…
Reference in a new issue