diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 14:15:30 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 14:15:30 +0000 |
commit | b4b7683df9bf1f7cc85e239c175817740197dfe6 (patch) | |
tree | 80594e847ea47bbd8e86915cd74a78df5eac7f54 /ext | |
parent | 8df7a03156fc8cbec3e855ca75cda04a72c769ae (diff) | |
download | gst-plugins-bad-b4b7683df9bf1f7cc85e239c175817740197dfe6.tar.gz gst-plugins-bad-b4b7683df9bf1f7cc85e239c175817740197dfe6.tar.bz2 gst-plugins-bad-b4b7683df9bf1f7cc85e239c175817740197dfe6.zip |
adding flac
Original commit message from CVS:
adding flac
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Makefile.am | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index c53ea1bd..83000f83 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -46,10 +46,16 @@ else ESD_DIR= endif -if USE_FESTIVAL -FESTIVAL_DIR=festival -else +## if USE_FESTIVAL +## FESTIVAL_DIR=festival +## else FESTIVAL_DIR= +## endif + +if USE_FLAC +FLAC_DIR=flac +else +FLAC_DIR= endif if USE_LAME @@ -84,8 +90,9 @@ endif SUBDIRS=$(A52_DIR) $(AALIB_DIR) $(ALSA_DIR) $(AUDIOFILE_DIR) \ $(AVIFILE_DIR) $(CDPARANOIA_DIR) $(DVDREAD_DIR) $(ESD_DIR) \ - $(FESTIVAL_DIR) $(LAME_DIR) $(MAD_DIR) $(MPEG2DEC_DIR) \ + $(FESTIVAL_DIR) $(FLAC_DIR) \ + $(LAME_DIR) $(MAD_DIR) $(MPEG2DEC_DIR) \ $(SDL_DIR) $(VORBIS_DIR) DIST_SUBDIRS=a52 aalib alsa avifile audiofile cdparanoia dvdread esd \ - festival lame mad mpeg2dec sdl vorbis + festival flac lame mad mpeg2dec sdl vorbis |