summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-01-30 22:38:50 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-01-30 22:38:50 +0000
commite2ba0121a9c01e70ab05d722eab15f8c5501757d (patch)
tree2c12b5d8e74d61440642ef5b469f7dd662ed1ea3
parentd03d8dcc4a18aacd6ce44bc60d747c102a3d8055 (diff)
ffmpeg uses uncompressGSTREAMER-0_6_0-HOTTESTPICK
Original commit message from CVS: ffmpeg uses uncompress
-rw-r--r--ext/ffmpeg/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/ffmpeg/Makefile.am b/ext/ffmpeg/Makefile.am
index 1efded9..b85feaa 100644
--- a/ext/ffmpeg/Makefile.am
+++ b/ext/ffmpeg/Makefile.am
@@ -14,9 +14,12 @@ libgstffmpeg_la_SOURCES = gstffmpeg.c \
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) \
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec \
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat
+
+# mov.c uses uncompress so we link in lz
libgstffmpeg_la_LIBADD = \
$(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec/libavcodec.a \
- $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat/libavformat.a
+ $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat/libavformat.a \
+ -lz
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)