diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-07 12:41:46 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-08-07 12:41:46 +0000 |
commit | 7925b0a98d936c4b8ad0a5fee9ef08b3b2dafd5e (patch) | |
tree | 472f0d251a6071daafa7c1d6fc4cfe9e289af7f6 /configure.in | |
parent | c002c9aa9c541fa75bc8e9a5fb15722f70d853f9 (diff) | |
download | xine-lib-7925b0a98d936c4b8ad0a5fee9ef08b3b2dafd5e.tar.gz xine-lib-7925b0a98d936c4b8ad0a5fee9ef08b3b2dafd5e.tar.bz2 |
introducing the ffmpeg video decoder plugin for ms mpeg 4, opendivx and motion jpeg decoding
CVS patchset: 395
CVS date: 2001/08/07 12:41:46
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index ff54d065d..d1e9d4a4a 100644 --- a/configure.in +++ b/configure.in @@ -342,6 +342,7 @@ dnl Common cflags for all platforms COMMON_CFLAGS="$wall -D_REENTRANT -D_FILE_OFFSET_BITS=64 -DXINE_COMPILE" enable_w32dll="no" +enable_ffmmx="no" case $host in i386-*-freebsd*) @@ -352,6 +353,7 @@ case $host in AC_DEFINE([ARCH_X86],,[x86 architecture]) enable_w32dll="yes" + enable_ffmmx="yes" ;; *) dnl Set the appropriate architecture define @@ -378,6 +380,7 @@ case $host in dnl enable x86 specific parts of the code enable_w32dll="yes" + enable_ffmmx="yes" if test x"$sarchopt" != "xno"; then [case "$host_alias" in @@ -463,6 +466,8 @@ else fi AC_SUBST(W32DLL_DEP) +AM_CONDITIONAL(HAVE_FFMMX, test x"$enable_ffmmx" = "xyes") + dnl dnl gcc __attribute__ ((aligned ())) @@ -571,6 +576,8 @@ src/demuxers/Makefile src/dxr3/Makefile src/libmpeg2/Makefile src/libac3/Makefile +src/libffmpeg/Makefile +src/libffmpeg/libavcodec/Makefile src/liblpcm/Makefile src/libmpg123/Makefile src/libw32dll/Makefile |