gst/matroska/Makefile.am: If zlib is available and used, we must link it explicitly...
authorTim-Philipp Müller <tim@centricular.net>
Fri, 5 Jan 2007 17:23:04 +0000 (17:23 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Fri, 5 Jan 2007 17:23:04 +0000 (17:23 +0000)
Original commit message from CVS:
* gst/matroska/Makefile.am:
If zlib is available and used, we must link it explicitly for
things to work on MingW (fixes #392855).

ChangeLog
gst/matroska/Makefile.am

index f9d8279..a3d8d9a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/matroska/Makefile.am:
+         If zlib is available and used, we must link it explicitly for
+         things to work on MingW (fixes #392855).
+
 2007-01-04  Tim-Philipp Müller  <tim at centricular dot net>
 
        * ext/esd/esdsink.c: (gst_esdsink_delay):
index 87e3d9e..21dbb51 100644 (file)
@@ -25,5 +25,6 @@ libgstmatroska_la_LIBADD = \
        $(GST_BASE_LIBS) \
        $(GST_PLUGINS_BASE_LIBS) \
        $(GST_LIBS) \
-       -lgstriff-@GST_MAJORMINOR@
+       -lgstriff-@GST_MAJORMINOR@ \
+       $(ZLIB_LIBS)
 libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)