[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.1 and 1.5

version 1.1, 2003/02/23 03:05:35 version 1.5, 2003/03/07 05:40:16
Line 1 
Line 1 
 dnl $OpenXM$  dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.4 2003/03/07 05:19:53 noro Exp $
   
 AC_INIT([LICENSE])  AC_INIT([LICENSE])
 AC_PREREQ(2.53)  AC_PREREQ(2.53)
 AM_INIT_AUTOMAKE(asir, 20030128)  AM_INIT_AUTOMAKE(asir, 20030307)
   
 AC_CANONICAL_SYSTEM  AC_CANONICAL_SYSTEM
   
Line 25  if test "${enable_shared:=no}" != no ; then
Line 25  if test "${enable_shared:=no}" != no ; then
    true     true
 fi  fi
   
   CFLAGS="-g -O"
   
 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 32  AC_ARG_WITH([pari],
Line 34  AC_ARG_WITH([pari],
   
 if test ${with_pari:=no} != no ; then  if test ${with_pari:=no} != no ; then
     libasir_postfix=${libasir_postfix}_pari      libasir_postfix=${libasir_postfix}_pari
     if test ${with_pari} = old ; then      if test ${with_pari} = new ; then
         libpari=pari  
     else  
         libpari=pari-2.2          libpari=pari-2.2
       else
           libpari=pari
     fi      fi
     PARIINC='-I${prefix}/include/pari'      PARIINC='-I${prefix}/include/pari'
     if test "${enable_shared}" != yes ; then      if test "${enable_shared}" != yes ; then
Line 44  if test ${with_pari:=no} != no ; then
Line 46  if test ${with_pari:=no} != no ; then
         PARILIB='-L${prefix}/lib'" -l${libpari}"          PARILIB='-L${prefix}/lib'" -l${libpari}"
     fi      fi
     AC_DEFINE([PARI])      AC_DEFINE([PARI])
     AC_CHECK_SIZEOF(long)  
     if test SIZEOF_LONG = 8; then  
         AC_DEFINE([LONG_IS_64BIT])  
     else  
         AC_DEFINE([LONG_IS_32BIT])  
     fi  
 fi  fi
 AC_SUBST([PARIINC])  AC_SUBST([PARIINC])
 AC_SUBST([PARILIB])  AC_SUBST([PARILIB])
   
   AC_CHECK_SIZEOF(long)
   if test SIZEOF_LONG = 8; then
       AC_DEFINE([LONG_IS_64BIT])
   else
       AC_DEFINE([LONG_IS_32BIT])
   fi
 if test "${no_x}" != yes ; then  if test "${no_x}" != yes ; then
     AC_ARG_ENABLE([plot],      AC_ARG_ENABLE([plot],
     [  --enable-plot           enable plot feature. [[no]]],      [  --enable-plot           enable plot feature. [[no]]],
Line 143  case "${host}" in
Line 145  case "${host}" in
 sparc-sun-solaris2.*)  sparc-sun-solaris2.*)
     case "`uname -m`" in      case "`uname -m`" in
     [sun4[dm]]) asm_obj="${sparc_v8_obj}" ;;      [sun4[dm]]) asm_obj="${sparc_v8_obj}" ;;
     sun4u)      asm_obj="${sparc_v9_obj}" ;;      sun4u*)     asm_obj="${sparc_v9_obj}" ;;
     *)          asm_obj="${generic_obj}"  ;;      *)          asm_obj="${generic_obj}"  ;;
     esac      esac
     AC_DEFINE([SYSV])      AC_DEFINE([SYSV])
       ;;
   powerpc-apple-darwin*)
       asm_obj="${generic_obj}"
       AC_DEFINE([__DARWIN__])
     ;;      ;;
 *)  *)
     asm_obj="${generic_obj}"      asm_obj="${generic_obj}"

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.5

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