gst/modplug/libmodplug/Makefile.am: More gcc-4.1 fixes (we don't need file saving...
authorTim-Philipp Müller <tim@centricular.net>
Wed, 22 Mar 2006 15:02:58 +0000 (15:02 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 22 Mar 2006 15:02:58 +0000 (15:02 +0000)
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).

ChangeLog
gst/modplug/libmodplug/Makefile.am

index cde3776..77728b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
 
+       * 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).
+
+2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
+
        Patch by: Wouter Paeson  <wouter at kangaroot dot net>
 
        * configure.ac:
index b900a60..f5cb339 100644 (file)
@@ -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         \