summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-01-06 10:23:40 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2003-01-06 10:23:40 +0000
commit4b4cc2c05a8e3a9426ae472817acfb2183ec55c9 (patch)
treed42210d5ea53364955557dc98125b1b0c1ad98e4
parentf9a6f18500b53f7d914b98370f7eac224cf5f2ea (diff)
downloadgstreamer-plugins-bad-4b4cc2c05a8e3a9426ae472817acfb2183ec55c9.tar.gz
only build ffmpeg when it's enabled
Original commit message from CVS: only build ffmpeg when it's enabled
-rw-r--r--gst-libs/ext/ffmpeg/Makefile.am8
1 files changed, 7 insertions, 1 deletions
diff --git a/gst-libs/ext/ffmpeg/Makefile.am b/gst-libs/ext/ffmpeg/Makefile.am
index 1dd50de90..a8c5bf763 100644
--- a/gst-libs/ext/ffmpeg/Makefile.am
+++ b/gst-libs/ext/ffmpeg/Makefile.am
@@ -3,7 +3,13 @@ EXTRA_DIST = Tag
# this doesn't trigger the distdir target in the ffmpeg checkout
DIST_SUBDIRS =
-SUBDIRS = ffmpeg
+if USE_FFMPEG
+FFMPEG_DIR=ffmpeg
+else
+FFMPEG_DIR=
+endif
+
+SUBDIRS = $(FFMPEG_DIR)
DISTFILES = \
ffmpeg/Changelog \