diff options
author | Zeeshan Ali <zeenix@gmail.com> | 2004-09-02 22:46:30 +0000 |
---|---|---|
committer | Zeeshan Ali <zeenix@gmail.com> | 2004-09-02 22:46:30 +0000 |
commit | 2408f3718a24615f42dee1d741cd556b0ae961dd (patch) | |
tree | 48582fd5c9c9a913c0b7f6feb872f2645441e5ac | |
parent | 1fcf92b730c84d133d30119c6cd10841fd769296 (diff) |
Trying to correct the GST_CHECK_CONFIGPROG macro. It works perfectly for
Original commit message from CVS:
* Trying to correct the GST_CHECK_CONFIGPROG macro. It works perfectly for
I hope i dont break anything.
* Shifting the MAS plugin back from gst-rotten.
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 9 | ||||
-rw-r--r-- | ext/Makefile.am | 8 |
3 files changed, 17 insertions, 0 deletions
diff --git a/common b/common -Subproject 14f44a56213628dcfdf8ca77159ba0f9622f610 +Subproject e258b347aa811ca7aa49e102ca3d576a91e4fb6 diff --git a/configure.ac b/configure.ac index ba0d49c3..0992c4a4 100644 --- a/configure.ac +++ b/configure.ac @@ -1208,6 +1208,14 @@ int main (int argc, char *argv[]) AC_SUBST(LAME_CFLAGS) AC_SUBST(LAME_LIBS) +dnl *** MAS (TODO) *** +translit(dnm, m, l) AM_CONDITIONAL(USE_MAS, true) +GST_CHECK_FEATURE(MAS, [mas], mas, [ + GST_CHECK_CONFIGPROG(MAS, mas-config) + AC_SUBST(MAS_CFLAGS) + AC_SUBST(MAS_LIBS) +]) + dnl *** libcaca *** translit(dnm, m, l) AM_CONDITIONAL(USE_LIBCACA, true) GST_CHECK_FEATURE(LIBCACA, [libcaca], libcaca, [ @@ -1954,6 +1962,7 @@ ext/libpng/Makefile ext/librfb/Makefile ext/libvisual/Makefile ext/mad/Makefile +ext/mas/Makefile ext/mikmod/Makefile ext/mpeg2dec/Makefile ext/mpeg2enc/Makefile diff --git a/ext/Makefile.am b/ext/Makefile.am index c74677e4..20f7993e 100644 --- a/ext/Makefile.am +++ b/ext/Makefile.am @@ -226,6 +226,12 @@ else MPLEX_DIR= endif +if USE_MAS +MAS_DIR=mas +else +MAS_DIR= +endif + if USE_MUSICBRAINZ MUSICBRAINZ_DIR=musicbrainz else @@ -381,6 +387,7 @@ SUBDIRS=\ $(LIBRFB_DIR) \ $(LIBVISUAL_DIR) \ $(MAD_DIR) \ + $(MAS_DIR) \ $(MIKMOD_DIR) \ $(MPEG2DEC_DIR) \ $(MPEG2ENC_DIR) \ @@ -444,6 +451,7 @@ DIST_SUBDIRS=\ mpeg2dec \ mpeg2enc \ mplex \ + mas \ musicbrainz \ nas \ ogg \ |