diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2004-02-14 00:54:03 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2004-02-14 00:54:03 +0000 |
commit | 3d7208b07af0730a74e6647230abc28f52af214c (patch) | |
tree | 09eb64bd8bb1ac7b0ce673571df0d83202f84882 | |
parent | 24792f921dc520a12b437657513a90a6c7993105 (diff) | |
download | xine-lib-3d7208b07af0730a74e6647230abc28f52af214c.tar.gz xine-lib-3d7208b07af0730a74e6647230abc28f52af214c.tar.bz2 |
Add -DEMULATE_FAST_INT to libffmpeg CFLAGS if [u]int_fastxx_t typedefs are not defined.
CVS patchset: 6149
CVS date: 2004/02/14 00:54:03
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6dc129b32..b4a53e615 100644 --- a/configure.ac +++ b/configure.ac @@ -236,6 +236,8 @@ AC_CHECK_DECL(lrintf,[AC_DEFINE(HAVE_LRINTF,1,[Define this if the 'lrintf' funct #include "math.h" ]) +AC_CHECK_TYPES(int_fast8_t, [], [LIBFFMPEG_CFLAGS="$LIBFFMPEG_CFLAGS -DEMULATE_FAST_INT"]) + AC_ARG_ENABLE(altivec, [ --disable-altivec Do not use assembly codes for Motorola 74xx CPUs], enable_altivec=no, |