[svn] / trunk / xvidcore / build / generic / configure.in Repository:
ViewVC logotype

Diff of /trunk/xvidcore/build/generic/configure.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1788, Fri Nov 23 10:44:11 2007 UTC revision 1845, Thu Dec 4 18:30:36 2008 UTC
# Line 1  Line 1 
1  dnl ==========================================================================  dnl ==========================================================================
2  dnl  dnl
3  dnl Autoconf script for XviD  dnl Autoconf script for Xvid
4  dnl  dnl
5  dnl Copyright(C) 2003-2004 Edouard Gomez <ed.gomez@free.fr>  dnl Copyright(C) 2003-2004 Edouard Gomez <ed.gomez@free.fr>
6  dnl  dnl
# Line 8  Line 8 
8    
9  AC_PREREQ([2.50])  AC_PREREQ([2.50])
10    
11  AC_INIT([XviD], [1.1.0-beta2], [xvid-devel@xvid.org])  AC_INIT([Xvid], [1.3.0], [xvid-devel@xvid.org])
12  AC_CONFIG_SRCDIR(configure.in)  AC_CONFIG_SRCDIR(configure.in)
13    
14  dnl Do not forget to increase that when needed.  dnl Do not forget to increase that when needed.
15  API_MAJOR="4"  API_MAJOR="4"
16  API_MINOR="1"  API_MINOR="3"
17    
18  dnl NASM version requirement  dnl NASM/YASM version requirement
19  minimum_nasm_patch_version=34  minimum_yasm_minor_version=7
20  minimum_nasm_minor_version=99  minimum_nasm_minor_version=0
21  minimum_nasm_major_version=2  minimum_nasm_major_version=2
22  nasm_prog="nasm"  nasm_prog="nasm"
23  yasm_prog="yasm"  yasm_prog="yasm"
# Line 27  Line 27 
27  our_cflags_defaults="$our_cflags_defaults -O2"  our_cflags_defaults="$our_cflags_defaults -O2"
28  our_cflags_defaults="$our_cflags_defaults -fstrength-reduce"  our_cflags_defaults="$our_cflags_defaults -fstrength-reduce"
29  our_cflags_defaults="$our_cflags_defaults -finline-functions"  our_cflags_defaults="$our_cflags_defaults -finline-functions"
 our_cflags_defaults="$our_cflags_defaults -freduce-all-givs"  
30  our_cflags_defaults="$our_cflags_defaults -ffast-math"  our_cflags_defaults="$our_cflags_defaults -ffast-math"
31  our_cflags_defaults="$our_cflags_defaults -fomit-frame-pointer"  our_cflags_defaults="$our_cflags_defaults -fomit-frame-pointer"
32    
# Line 201  Line 200 
200          BUS="64BIT"          BUS="64BIT"
201          ;;          ;;
202       *)       *)
203          AC_MSG_ERROR([XviD supports only 32/64 bit architectures])          AC_MSG_ERROR([Xvid supports only 32/64 bit architectures])
204          ;;          ;;
205  esac  esac
206    
# Line 343  Line 342 
342    
343     dnl     dnl
344     dnl Checking for nasm compatible programs     dnl Checking for nasm compatible programs
    dnl yasm is preferred over nasm, because... i can use it  
    dnl to profile assembly code ;-)  
345     dnl     dnl
346    
347     found_nasm_comp_prog="no"     found_nasm_comp_prog="no"
# Line 353  Line 350 
350     dnl Check for yasm first     dnl Check for yasm first
351     AC_CHECK_PROG([ac_yasm], [$yasm_prog], [yes], [no], , [yes])     AC_CHECK_PROG([ac_yasm], [$yasm_prog], [yes], [no], , [yes])
352     if test "$ac_yasm" = "yes" ; then     if test "$ac_yasm" = "yes" ; then
353           dnl
354           dnl Checking yasm version
355           dnl
356           AC_MSG_CHECKING([for yasm version])
357           yasm_minor=`$yasm_prog --version | cut -d '.' -f 2 | cut -d ' ' -f 1`
358           if test -z $yasm_minor ; then
359              yasm_minor=-1
360           fi
361           AC_MSG_RESULT([$yasm_minor])
362    
363           dnl Actually, yasm >= 0.6.2 should be ok
364           dnl But I'm too lazy to check also the patch version...
365           if test "$yasm_minor" -lt "$minimum_yasm_minor_version" ; then
366             AC_MSG_WARN([yasm version is too old])
367           else
368       found_nasm_comp_prog="yes"       found_nasm_comp_prog="yes"
369       chosen_asm_prog="$yasm_prog"       chosen_asm_prog="$yasm_prog"
370     fi     fi
371       fi
372    
373     dnl if yasm hasn't been found, then check for nasm (not buggy version)     dnl Check for nasm (not buggy version)
374     if test "$found_nasm_comp_prog" = "no" -a "$ARCHITECTURE" != "X86_64" ; then     if test "$found_nasm_comp_prog" = "no" ; then
375         AC_CHECK_PROG([ac_nasm], [$nasm_prog], [yes], [no], , [yes])         AC_CHECK_PROG([ac_nasm], [$nasm_prog], [yes], [no], , [yes])
376         if test "$ac_nasm" = "yes" ; then         if test "$ac_nasm" = "yes" ; then
377             dnl             dnl
378             dnl Checking nasm patch version             dnl Checking nasm version
379             dnl             dnl
380             AC_MSG_CHECKING([for nasm patch version])             AC_MSG_CHECKING([for nasm version])
            nasm_patch=`$nasm_prog -r | cut -d '.' -f 3 | cut -d ' ' -f 1`  
381             nasm_minor=`$nasm_prog -v | cut -d '.' -f 2 | cut -d ' ' -f 1`             nasm_minor=`$nasm_prog -v | cut -d '.' -f 2 | cut -d ' ' -f 1`
382             nasm_major=`$nasm_prog -v | cut -d '.' -f 1 | cut -d ' ' -f 3`             nasm_major=`$nasm_prog -v | cut -d '.' -f 1 | cut -d ' ' -f 3`
            if test -z $nasm_patch ; then  
               nasm_patch=-1  
            fi  
383             if test -z $nasm_minor ; then             if test -z $nasm_minor ; then
384                nasm_minor=-1                nasm_minor=-1
385             fi             fi
386             if test -z $nasm_major ; then             if test -z $nasm_major ; then
387                nasm_major=-1                nasm_major=-1
388             fi             fi
389             AC_MSG_RESULT([$nasm_patch])             AC_MSG_RESULT([$nasm_major])
390    
391             if test "$nasm_patch" -lt "$minimum_nasm_patch_version" ; then             dnl need nasm 2.x for SSE3/4 and X86_64
               if test "$nasm_minor" -lt "$minimum_nasm_minor_version" ; then  
392                   if test "$nasm_major" -lt "$minimum_nasm_major_version" ; then                   if test "$nasm_major" -lt "$minimum_nasm_major_version" ; then
393                      AC_MSG_WARN([nasm version is too old])                      AC_MSG_WARN([nasm version is too old])
394                   else                   else
395                     found_nasm_comp_prog="yes"                     found_nasm_comp_prog="yes"
396                             chosen_asm_prog="$nasm_prog"                             chosen_asm_prog="$nasm_prog"
397                   fi                   fi
               else  
                  found_nasm_comp_prog="yes"  
                      chosen_asm_prog="$nasm_prog"  
               fi  
            else  
                found_nasm_comp_prog="yes"  
                        chosen_asm_prog="$nasm_prog"  
            fi  
398         fi         fi
399     fi     fi
400    
# Line 405  Line 405 
405         AC_MSG_CHECKING([for asm object format])         AC_MSG_CHECKING([for asm object format])
406         case "$target_os" in         case "$target_os" in
407             *bsd*|linux*|beos|irix*|solaris*)             *bsd*|linux*|beos|irix*|solaris*)
408                   if test "$ARCHITECTURE" = "X86_64" ; then
409                       AC_MSG_RESULT([elf64])
410                       NASM_FORMAT="elf64"
411                   else
412                 AC_MSG_RESULT([elf])                 AC_MSG_RESULT([elf])
413                 NASM_FORMAT="elf"                 NASM_FORMAT="elf"
414                   fi
415                 MARK_FUNCS="-DMARK_FUNCS"                 MARK_FUNCS="-DMARK_FUNCS"
416                     PREFIX=""                     PREFIX=""
417                 ;;                 ;;
418             [[cC]][[yY]][[gG]][[wW]][[iI]][[nN]]*|mingw32*|mks*)             [[cC]][[yY]][[gG]][[wW]][[iI]][[nN]]*|mingw32*|mks*)
419                   if test "$ARCHITECTURE" = "X86_64" ; then
420                       AC_MSG_RESULT([win64])
421                       NASM_FORMAT="win64"
422                   else
423                 AC_MSG_RESULT([win32])                 AC_MSG_RESULT([win32])
424                 NASM_FORMAT="win32"                 NASM_FORMAT="win32"
425                 PREFIX="-DPREFIX"                 fi
426                   PREFIX="-DWINDOWS"
427                 MARK_FUNCS=""                 MARK_FUNCS=""
428                 ;;                 ;;
429             *darwin*)             *darwin*)
# Line 426  Line 436 
436    
437         AS="$chosen_asm_prog"         AS="$chosen_asm_prog"
438         ASSEMBLY_EXTENSION="asm"         ASSEMBLY_EXTENSION="asm"
439         AFLAGS="-I\$(<D)/ -f $NASM_FORMAT $PREFIX $MARK_FUNCS"         AFLAGS="-I\$(<D)/ -I../../src/ -f $NASM_FORMAT $PREFIX $MARK_FUNCS"
440         ASSEMBLY_SOURCES="SRC_${ARCHITECTURE}"         ASSEMBLY_SOURCES="SRC_${ARCHITECTURE}"
441         if test "$ARCHITECTURE" = "X86_64" ; then         if test "$ARCHITECTURE" = "X86_64" ; then
442                 AFLAGS=${AFLAGS}" -m amd64"                 AFLAGS=${AFLAGS}" -DARCH_IS_X86_64"
443         fi         fi
444     else     else
445         AC_MSG_WARN([no correct assembler was found - Compiling generic sources only])         AC_MSG_WARN([no correct assembler was found - Compiling generic sources only])

Legend:
Removed from v.1788  
changed lines
  Added in v.1845

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4