[BACK]Return to configure.in CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000

Diff for /OpenXM_contrib2/asir2000/configure.in between version 1.11 and 1.16

version 1.11, 2003/03/17 14:33:47 version 1.16, 2004/01/25 11:54:09
Line 1 
Line 1 
 dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.10 2003/03/16 18:37:56 ohara Exp $  dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.15 2003/12/22 09:31:41 noro Exp $
   
 AC_INIT([LICENSE])  AC_INIT([LICENSE])
 AC_PREREQ(2.53)  AC_PREREQ(2.53)
Line 34  if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ;
Line 34  if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ;
     fi      fi
 fi  fi
   
   AC_ARG_ENABLE([gc-zeropage],
   [  --enable-gc-zeropage    enable to avoid the kernel zeropage bug.  [[no]]],
   [enable_gc_zeropage=yes],[enable_gc_zeropage=no])
   
   if test "${enable_gc_zeropage:=no}" != no ; then
       USE_GC_ZEROPAGE="yes"
   fi
   AC_SUBST([USE_GC_ZEROPAGE])
   
 libasir_postfix=""  libasir_postfix=""
 AC_ARG_WITH([pari],  AC_ARG_WITH([pari],
 [  --with-pari             use the PARI library. [[no]]],  [  --with-pari             use the PARI library. [[no]]],
Line 59  AC_SUBST([PARILIB])
Line 68  AC_SUBST([PARILIB])
   
 AC_CHECK_TYPES([unsigned long long])  AC_CHECK_TYPES([unsigned long long])
 AC_CHECK_SIZEOF(long)  AC_CHECK_SIZEOF(long)
 if test SIZEOF_LONG = 8; then  if test "${ac_cv_sizeof_long}" = 8; then
     AC_DEFINE([LONG_IS_64BIT])      AC_DEFINE([LONG_IS_64BIT])
 else  else
     AC_DEFINE([LONG_IS_32BIT])      AC_DEFINE([LONG_IS_32BIT])
 fi  fi
 if test "${no_x}" != yes ; then  if test "${no_x}" != yes ; then
     if test -f "${x_libraries}/libXpm.a" ; then      if test -f "${x_libraries}/libXpm.a" -o -f "${x_libraries}/libXpm.dll.a" ; then
             XPMLIB="-lXpm"              XPMLIB="-lXpm"
     fi      fi
     AC_ARG_ENABLE([plot],      AC_ARG_ENABLE([plot],
Line 153  case "${host}" in
Line 162  case "${host}" in
     ;;      ;;
 [i[3-6]86-*-linux*]|x86-*-linux*)  [i[3-6]86-*-linux*]|x86-*-linux*)
     asm_obj="${i386_elf_obj}"      asm_obj="${i386_elf_obj}"
     AC_DEFINE([BSD_SOURCE])      AC_DEFINE([_BSD_SOURCE])
     ;;      ;;
 *-*-cygwin*)  *-*-cygwin*)
     asm_obj="${i386_aout_obj}"      asm_obj="${i386_aout_obj}"
       ;;
   [i[3-6]86-*-interix*])
       asm_obj="${generic_obj}"
       AC_DEFINE([_ALL_SOURCE])
     ;;      ;;
 sparc-sun-solaris2.*)  sparc-sun-solaris2.*)
     case "`uname -m`" in      case "`uname -m`" in

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.16

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>