diff options
author | David Schleef <ds@schleef.org> | 2003-07-27 05:29:10 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-07-27 05:29:10 +0000 |
commit | 6db306d56b3da43f685201b773564170a524fcf5 (patch) | |
tree | 72dd3e28d0c6bf137bbf18ebaf326acea350c15e | |
parent | 323d613cc78ccb4dbd0e040a29b42c64978d8d3c (diff) | |
download | gst-plugins-bad-6db306d56b3da43f685201b773564170a524fcf5.tar.gz gst-plugins-bad-6db306d56b3da43f685201b773564170a524fcf5.tar.bz2 gst-plugins-bad-6db306d56b3da43f685201b773564170a524fcf5.zip |
Make mplex subdir dependent on USE_MPLEX
Original commit message from CVS:
Make mplex subdir dependent on USE_MPLEX
-rw-r--r-- | ext/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index 6dacacaf..2b1ab6ec 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -184,6 +184,12 @@ else MPEG2DEC_DIR= endif +if USE_MPLEX +MPLEX_DIR=mplex +else +MPLEX_DIR= +endif + if USE_PANGO PANGO_DIR=pango else @@ -277,7 +283,7 @@ SUBDIRS=$(A52DEC_DIR) $(AALIB_DIR) $(ALSA_DIR) \ $(LADSPA_DIR) $(LAME_DIR) $(LCS_DIR) \ $(LIBDV_DIR) $(LIBFAME_DIR) $(LIBPNG_DIR) \ $(MAD_DIR) $(MATROSKA_DIR) $(MIKMOD_DIR) \ - $(MPEG2DEC_DIR) mplex $(PANGO_DIR) $(RAW1394_DIR) \ + $(MPEG2DEC_DIR) $(MPLEX_DIR) $(PANGO_DIR) $(RAW1394_DIR) \ $(SDL_DIR) $(SHOUT_DIR) $(SIDPLAY_DIR) \ $(SMOOTHWAVE_DIR) $(SNDFILE_DIR) $(SWFDEC_DIR) $(TARKIN_DIR) \ $(VORBIS_DIR) $(XVID_DIR) $(SNAPSHOT_DIR) $(SPEEX_DIR) |