diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 00:25:29 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-23 00:25:29 +0000 |
commit | 01db92f682d16643f2aa01f946efcffddd9c82ef (patch) | |
tree | 4bcdd759f4663ac39986e99ecbcf7cbd8ea42600 /ext | |
parent | 9181b321d00b93a65be04dacc2833336366afcf5 (diff) | |
download | gst-plugins-bad-01db92f682d16643f2aa01f946efcffddd9c82ef.tar.gz gst-plugins-bad-01db92f682d16643f2aa01f946efcffddd9c82ef.tar.bz2 gst-plugins-bad-01db92f682d16643f2aa01f946efcffddd9c82ef.zip |
added alsa
Original commit message from CVS:
added alsa
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Makefile.am | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ext/Makefile.am b/ext/Makefile.am index 2b2aca01..ff91846e 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -10,6 +10,12 @@ else AALIB_DIR= endif +if USE_ALSA +ALSA_DIR=alsa +else +ALSA_DIR= +endif + if USE_AUDIOFILE AUDIOFILE_DIR=audiofile else @@ -47,8 +53,8 @@ VORBIS_DIR= endif -SUBDIRS=$(A52_DIR) $(AALIB_DIR) $(AUDIOFILE_DIR) $(ESD_DIR) \ +SUBDIRS=$(A52_DIR) $(AALIB_DIR) $(ALSA_DIR) $(AUDIOFILE_DIR) $(ESD_DIR) \ $(LAME_DIR) $(MAD_DIR) \ $(SDL_DIR) $(VORBIS_DIR) -DIST_SUBDIRS=a52 aalib audiofile esd lame mad sdl vorbis +DIST_SUBDIRS=a52 aalib alsa audiofile esd lame mad sdl vorbis |