diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-07-14 17:37:34 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2003-07-14 17:37:34 +0000 |
commit | 1c4eb87d8aad344eb5886c519e6fede5049f216a (patch) | |
tree | 99c279d581416bff846500fbd8ac3cb015892074 /ext | |
parent | fc44c4515c7ca1a516ce223f335ba01094f014bd (diff) | |
download | gst-plugins-bad-1c4eb87d8aad344eb5886c519e6fede5049f216a.tar.gz gst-plugins-bad-1c4eb87d8aad344eb5886c519e6fede5049f216a.tar.bz2 gst-plugins-bad-1c4eb87d8aad344eb5886c519e6fede5049f216a.zip |
Add matroska support to the build tree
Original commit message from CVS:
Add matroska support to the build tree
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Makefile.am | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index 5d8940c7..84326325 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -166,6 +166,12 @@ else MAD_DIR= endif +if USE_MATROSKA +MATROSKA_DIR=matroska +else +MATROSKA_DIR= +endif + if USE_MIKMOD MIKMOD_DIR=mikmod else @@ -264,8 +270,9 @@ SUBDIRS=$(A52DEC_DIR) $(AALIB_DIR) $(ALSA_DIR) \ $(HERMES_DIR) $(JACK_DIR) $(JPEG_DIR) \ $(LADSPA_DIR) $(LAME_DIR) $(LCS_DIR) \ $(LIBDV_DIR) $(LIBFAME_DIR) $(LIBPNG_DIR) \ - $(MAD_DIR) $(MIKMOD_DIR) $(MPEG2DEC_DIR) $(PANGO_DIR) \ - $(RAW1394_DIR) $(SDL_DIR) $(SHOUT_DIR) $(SIDPLAY_DIR) \ + $(MAD_DIR) $(MATROSKA_DIR) $(MIKMOD_DIR) \ + $(MPEG2DEC_DIR) $(PANGO_DIR) $(RAW1394_DIR) \ + $(SDL_DIR) $(SHOUT_DIR) $(SIDPLAY_DIR) \ $(SMOOTHWAVE_DIR) $(SWFDEC_DIR) $(TARKIN_DIR) \ $(VORBIS_DIR) $(XVID_DIR) $(SNAPSHOT_DIR) @@ -276,7 +283,9 @@ DIST_SUBDIRS=\ flac gdk_pixbuf gnomevfs gsm \ hermes ivorbis jack jpeg \ ladspa lame lcs libfame libpng \ - mad mikmod mpeg2dec pango raw1394 \ - sdl snapshot sndfile shout shout2 sidplay \ + mad matroska mikmod \ + mpeg2dec pango raw1394 \ + sdl snapshot sndfile \ + shout shout2 sidplay \ smoothwave swfdec tarkin vorbis \ xvid |