1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-21 16:55:05 +02:00
Originally committed as revision 2462 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2003-11-01 14:29:32 +00:00
parent b5c950c4f4
commit eb592f6af1

12
configure vendored
View File

@ -958,12 +958,12 @@ if test "$bigendian" = "yes" ; then
fi
if test "$emu_fast_int" = "yes" ; then
#note, we dont try to emulate fast64
echo "typedef signed char int_fast8_t" >> $TMPH
echo "typedef signed int int_fast16_t" >> $TMPH
echo "typedef signed int int_fast32_t" >> $TMPH
echo "typedef unsigned char uint_fast8_t" >> $TMPH
echo "typedef unsigned int uint_fast16_t" >> $TMPH
echo "typedef unsigned int uint_fast32_t" >> $TMPH
echo "typedef signed char int_fast8_t;" >> $TMPH
echo "typedef signed int int_fast16_t;" >> $TMPH
echo "typedef signed int int_fast32_t;" >> $TMPH
echo "typedef unsigned char uint_fast8_t;" >> $TMPH
echo "typedef unsigned int uint_fast16_t;" >> $TMPH
echo "typedef unsigned int uint_fast32_t;" >> $TMPH
fi
if test "$mmx" = "yes" ; then
echo "TARGET_MMX=yes" >> config.mak