[Ffmpeg-cvslog] r6952 - trunk/configure

mru subversion
Thu Nov 9 02:06:49 CET 2006


Author: mru
Date: Thu Nov  9 02:06:48 2006
New Revision: 6952

Modified:
   trunk/configure

Log:
check for byteswap.h


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Thu Nov  9 02:06:48 2006
@@ -1296,6 +1296,8 @@
     die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
 fi
 
+check_header byteswap.h && byteswap_h=yes || byteswap_h=no
+
 check_func localtime_r && localtime_r=yes || localtime_r=no
 enabled zlib && check_lib zlib.h zlibVersion -lz || zlib="no"
 
@@ -2091,6 +2093,9 @@
   echo "#define MEMALIGN_HACK 1" >> $TMPH
 fi
 
+if test "$byteswap_h" = "yes"; then
+  echo "#define HAVE_BYTESWAP_H 1" >> $TMPH
+fi
 
 if test "$netserver" = "yes" ; then
   echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH




More information about the ffmpeg-cvslog mailing list