diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-03-22 15:02:58 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-03-22 15:02:58 +0000 |
commit | 2d0ec410ae954435e84a95c6ecc0c753fa10d8a7 (patch) | |
tree | fb3c9ea5d094bd11e7a670750d5e4ae7bda9c3d2 /gst | |
parent | 89ab6598cb6e3469e04811047f3d0cab78857b91 (diff) | |
download | gstreamer-plugins-bad-2d0ec410ae954435e84a95c6ecc0c753fa10d8a7.tar.gz |
gst/modplug/libmodplug/Makefile.am: More gcc-4.1 fixes (we don't need file saving, so just define MODPLUG_NO_FILESAVE...
Original commit message from CVS:
* gst/modplug/libmodplug/Makefile.am:
More gcc-4.1 fixes (we don't need file saving, so just
define MODPLUG_NO_FILESAVE. That way, the compiler won't
complain about modplug ignoring the return value of fwrite
any longer and we might even save a few bytes as well).
Diffstat (limited to 'gst')
-rw-r--r-- | gst/modplug/libmodplug/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/modplug/libmodplug/Makefile.am b/gst/modplug/libmodplug/Makefile.am index b900a60d3..f5cb33914 100644 --- a/gst/modplug/libmodplug/Makefile.am +++ b/gst/modplug/libmodplug/Makefile.am @@ -1,6 +1,6 @@ noinst_LTLIBRARIES = libmodplug.la -libmodplug_la_CXXFLAGS = $(GST_CFLAGS) -D_REENTRANT +libmodplug_la_CXXFLAGS = $(GST_CFLAGS) -D_REENTRANT -DMODFILE_NO_FILESAVE libmodplug_la_LDFLAGS = -module -avoid-version libmodplug_la_SOURCES = tables.cpp \ sndmix.cpp \ |