[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.15 and 1.33

version 1.15, 2003/12/22 09:31:41 version 1.33, 2009/02/13 13:24:16
Line 1 
Line 1 
 dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.14 2003/09/07 16:49:37 ohara Exp $  dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.32 2009/02/13 11:25:48 ohara Exp $
   
 AC_INIT([LICENSE])  AC_INIT
 AC_PREREQ(2.53)  AC_CONFIG_SRCDIR([LICENSE])
   AC_PREREQ(2.61)
   AC_CANONICAL_TARGET
 AM_INIT_AUTOMAKE(asir, 20030307)  AM_INIT_AUTOMAKE(asir, 20030307)
 AM_MAINTAINER_MODE  AM_MAINTAINER_MODE
   
 AC_CANONICAL_SYSTEM  
   
 dnl AM_PROG_AS  dnl AM_PROG_AS
 AC_PROG_CC  AC_PROG_CC
 AC_PROG_INSTALL  AC_PROG_INSTALL
Line 32  if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ;
Line 32  if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ;
     else      else
         CFLAGS="-O"          CFLAGS="-O"
     fi      fi
   elif test `basename ./"${CC}"` = "icc" ; then
       CFLAGS="-g -O"
 fi  fi
   
 AC_ARG_ENABLE([gc-zeropage],  GC=gc6.8
 [  --enable-gc-zeropage    enable to avoid the kernel zeropage bug.  [[no]]],  AC_ARG_WITH([asir-gc],
 [enable_gc_zeropage=yes],[enable_gc_zeropage=no])  [  --with-asir-gc          modify Boehm's GC [[yes]]],
   [with_asir_gc=${withval}],[with_asir_gc=yes])
 if test "${enable_gc_zeropage:=no}" != no ; then  if test ${with_asir_gc:=yes} != no; then
     USE_GC_ZEROPAGE="yes"     ASIR_GCLIB=libasir-gc.a
      GCINC='-I${top_srcdir}/${GC}/include'
   else
      GCLIB='-L${prefix}/lib -lgc'
      GCINC='-I${prefix}/include'
      AC_DEFINE([NO_ASIR_GC])
 fi  fi
 AC_SUBST([USE_GC_ZEROPAGE])  dnl GC_CONFIGURE_ARGS=--disable-threads --enable-shared=no
   GC_CONFIGURE_ARGS=--disable-threads
   if test -n "${host_alias}" ; then
       GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}"
   fi
   AC_ARG_WITH([gc7],
   [  --with-gc7              use GC 7.x (if --with-asir-gc=yes) [[no]]],
   [with_gc7=${withval}],[with_gc7=no])
   if test ${with_gc7:=no} != no; then
      case "${with_gc7}" in
      [7*]) GC_VERSION=${with_gc7} ;;
      *)    GC_VERSION=7.0 ;;
      esac
      GC=gc-${GC_VERSION}
      AC_DEFINE([GC7])
   fi
   
   AC_SUBST([ASIR_GCLIB])
   AC_SUBST([GCLIB])
   AC_SUBST([GCINC])
   
   AC_SUBST([GC])
   AC_SUBST([GC_CONFIGURE_ARGS])
   AM_CONDITIONAL([USE_GC7],[test "$with_gc7" != no])
   
   AC_ARG_WITH([distdir],
   [  --with-distdir          specify the spool for fetching. [[no]]],
   [with_distdir=${withval}],[with_distdir=no])
   GC_DISTDIR='${prefix}/../OpenXM_dist'
   if test ${with_distdir:=no} != no -a ${with_distdir} != yes ; then
       GC_DISTDIR=${with_distdir}
   fi
   AC_SUBST([GC_DISTDIR])
   
 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]]],
 [with_pari=${withval}],[with_pari=no])  [with_pari=${withval}],[with_pari=no])
   
 if test ${with_pari:=no} != no ; then  if test ${with_pari:=no} != no ; then
     libasir_postfix=${libasir_postfix}_pari      if test "${with_pari}" = new -o "${with_pari}" = 2.3 ; then
     if test ${with_pari} = new ; then          AC_DEFINE([PARI23])
         libpari=pari-2.2  
     else  
         libpari=pari  
     fi      fi
       libasir_postfix=${libasir_postfix}_pari
     PARIINC='-I${prefix}/include/pari'      PARIINC='-I${prefix}/include/pari'
     if test "${enable_shared}" != yes ; then      if test "${enable_shared}" != yes ; then
         PARILIB='${prefix}'"/lib/lib${libpari}.a"          PARILIB='${libdir}/libpari.a'
     else      else
         PARILIB='-L${prefix}/lib'" -l${libpari}"          PARILIB='-L${libdir} -lpari'
     fi      fi
     AC_DEFINE([PARI])      AC_DEFINE([PARI])
 fi  fi
Line 119  if test "${enable_fft_float:=no}" != no ; then
Line 156  if test "${enable_fft_float:=no}" != no ; then
     AC_DEFINE([USE_FLOAT])      AC_DEFINE([USE_FLOAT])
 fi  fi
   
 dnl AC_ARG_WITH([mpi],  AC_ARG_WITH([mpi],
 dnl [  --with-mpi              use the MPI library. [[no]]],  [  --with-mpi              use the MPI library. [[no]]],
 dnl [with_mpi=${withval}],[with_mpi=no])  [with_mpi=${withval}],[with_mpi=no])
   
 if test "${with_mpi:=no}" != no ; then  if test "${with_mpi:=no}" != no ; then
     MPIINC="-I/opt/FJSVmpi2/include"  
     MPILIB="-L/opt/FJSVmpi2/lib -lmpi -L/opt/FSUNaprun/lib -lmpl -lemi -lthread"  
     AC_DEFINE([MPI])      AC_DEFINE([MPI])
 fi  fi
 AC_SUBST([MPIINC])  
 AC_SUBST([MPILIB])  
   
 dnl AC_ARG_WITH([lapack],  dnl AC_ARG_WITH([lapack],
 dnl [  --with-lapack           use the LAPACK library. [[no]]],  dnl [  --with-lapack           use the LAPACK library. [[no]]],
 dnl [with_lapack=${withval}],[with_lapack=no])  dnl [with_lapack=${withval}],[with_lapack=no])
   
 if test "${with_lapack:=no}" != no ; then  if test "${with_lapack:=no}" != no ; then
     LAPACKLIB="-llapack -lblas -lI77 -lF77"      LAPACKLIB="-llapack -lblas -lg2c"
     AC_DEFINE([LAPACK])      AC_DEFINE([LAPACK])
 fi  fi
 AC_SUBST([LAPACKLIB])  AC_SUBST([LAPACKLIB])
Line 153  dnl generic_obj:   for 32bits/64bits generic micro pro
Line 186  dnl generic_obj:   for 32bits/64bits generic micro pro
 i386_elf_obj=asmi_l.o  i386_elf_obj=asmi_l.o
 i386_aout_obj=asmi.o  i386_aout_obj=asmi.o
 sparc_v8_obj="sparc-2.o asm4-2.o edr-2.o"  sparc_v8_obj="sparc-2.o asm4-2.o edr-2.o"
 sparc_v9_obj="sparc-2.o asm5-2.o edr-2.o"  sparc_v9_obj=asmalpha.o
 generic_obj=asmalpha.o  generic_obj=asmalpha.o
   
 case "${host}" in  case "${host}" in
Line 167  case "${host}" in
Line 200  case "${host}" in
 *-*-cygwin*)  *-*-cygwin*)
     asm_obj="${i386_aout_obj}"      asm_obj="${i386_aout_obj}"
     ;;      ;;
   [i[3-6]86-*-interix*])
       asm_obj="${i386_aout_obj}"
       AC_DEFINE([_ALL_SOURCE])
       ;;
 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}"
                   if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
                       CFLAGS="${CFLAGS} -m64"
                   fi
                   AC_SUBST([USE_GC_SPARC64])
                   ;;
     *)          asm_obj="${generic_obj}"  ;;      *)          asm_obj="${generic_obj}"  ;;
     esac      esac
     AC_DEFINE([SYSV])      AC_DEFINE([SYSV])
     ;;      ;;
 powerpc-apple-darwin*)  *-apple-darwin*)
     asm_obj="${generic_obj}"      asm_obj="${generic_obj}"
     AC_DEFINE([__DARWIN__])      AC_DEFINE([__DARWIN__])
     ;;      ;;
Line 196  dnl for Solaris 2.x
Line 238  dnl for Solaris 2.x
 AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)])  AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)])
 AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)])  AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)])
   
 AC_OUTPUT([Makefile engine/Makefile asm/Makefile builtin/Makefile fft/Makefile include/Makefile io/Makefile lib/Makefile parse/Makefile plot/Makefile])  AC_CONFIG_FILES([Makefile engine/Makefile asm/Makefile builtin/Makefile fft/Makefile include/Makefile io/Makefile lib/Makefile parse/Makefile plot/Makefile])
   AC_OUTPUT

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.33

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