[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.3 and 1.48

version 1.3, 2003/03/06 11:29:10 version 1.48, 2016/09/22 07:15:33
Line 1 
Line 1 
 dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.2 2003/02/24 17:58:41 ohara Exp $  dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.47 2016/08/24 05:33:58 ohara Exp $
   
 AC_INIT([LICENSE])  AC_INIT(asir,1.15)
 AC_PREREQ(2.53)  AC_CONFIG_SRCDIR([LICENSE])
 AM_INIT_AUTOMAKE(asir, 20030128)  AC_PREREQ(2.69)
   AC_CANONICAL_TARGET
   AM_INIT_AUTOMAKE
   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 15  AC_PROG_YACC
Line 16  AC_PROG_YACC
   
 AC_PATH_XTRA  AC_PATH_XTRA
   
 AC_DEFINE([HMEXT])  
   
 AC_ARG_ENABLE([shared],  AC_ARG_ENABLE([shared],
 [  --enable-shared         enable linking shared libraries.  [[no]]],  [  --enable-shared         enable linking shared libraries.  [[no]]],
 [enable_shared=yes],[enable_shared=no])  [enable_shared=yes],[enable_shared=no])
Line 25  if test "${enable_shared:=no}" != no ; then
Line 24  if test "${enable_shared:=no}" != no ; then
    true     true
 fi  fi
   
   if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
       if test "${ac_cv_prog_cc_g}" = yes; then
           CFLAGS="-g -O"
       else
           CFLAGS="-O"
       fi
   elif test `basename ./"${CC}"` = "icc" ; then
       CFLAGS="-g -O"
   fi
   
   GC=gc-7.4.2
   AC_ARG_WITH([asir-gc],
   [  --with-asir-gc          modify Boehm's GC [[yes]]],
   [with_asir_gc=${withval}],[with_asir_gc=yes])
   if test ${with_asir_gc:=yes} != no; then
      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
   dnl GC_CONFIGURE_ARGS=--disable-threads --enable-shared=no
   GC_CONFIGURE_ARGS="--disable-threads --enable-large-config"
   if test -n "${host_alias}" ; then
       GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}"
   fi
   
   AC_DEFINE([GC7])
   AC_SUBST([ASIR_GCLIB])
   AC_SUBST([GCLIB])
   AC_SUBST([GCINC])
   AC_SUBST([GC])
   AC_SUBST([GC_CONFIGURE_ARGS])
   
   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]]],
Line 32  AC_ARG_WITH([pari],
Line 75  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  
         libpari=pari  
     else  
         libpari=pari-2.2  
     fi  
     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])
     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_TYPES([unsigned long long])
   AC_CHECK_SIZEOF(long)
   if test "${ac_cv_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
       if test -f "${x_libraries}/libXpm.a" -o -f "${x_libraries}/libXpm.dll.a" ; then
               XPMLIB="-lXpm"
       fi
     AC_ARG_ENABLE([plot],      AC_ARG_ENABLE([plot],
     [  --enable-plot           enable plot feature. [[no]]],      [  --enable-plot           enable plot feature. [[no]]],
     [enable_plot=yes],[enable_plot=no])      [enable_plot=yes],[enable_plot=no])
 fi  fi
   AC_SUBST([XPMLIB])
   
 if test ${enable_plot:=no} != no ; then  if test ${enable_plot:=no} != no ; then
     libasir_postfix=${libasir_postfix}_X      libasir_postfix=${libasir_postfix}_X
Line 66  if test ${enable_plot:=no} != no ; then
Line 109  if test ${enable_plot:=no} != no ; then
 fi  fi
 AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes])  AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes])
   
   GMPLIB="-lmpc -lmpfr -lgmp"
   AC_ARG_ENABLE([static_gmp],
   [  --enable-static-gmp     force to link statically with gmp. [[no]]],
   [enable_static_gmp=yes],[enable_static_gmp=no])
   if test ${enable_static_gmp:=no} != no ; then
       GMPLIB="libmpc.a libmpfr.a libgmp.a"
   fi
   AC_SUBST([GMPLIB])
   
 AC_ARG_ENABLE([interval],  AC_ARG_ENABLE([interval],
 [  --enable-interval       enable interval feature. [[no]]],  [  --enable-interval       enable interval feature. [[no]]],
 [enable_interval=${enableval}],[enable_interval=no])  [enable_interval=${enableval}],[enable_interval=no])
Line 96  if test "${enable_fft_float:=no}" != no ; then
Line 148  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 130  dnl generic_obj:   for 32bits/64bits generic micro pro
Line 178  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
 [i[3-6]86-*-freebsd[3-9].*]|[i[3-6]86-*-linux*])  [i[3-6]86-*-freebsd[3-9].*])
     asm_obj="${i386_elf_obj}"      asm_obj="${i386_elf_obj}"
     ;;      ;;
 *-*-cygwin*)  [i[3-6]86-*-linux*]|x86-*-linux*)
       asm_obj="${i386_elf_obj}"
       AC_DEFINE([_BSD_SOURCE])
       ;;
   [i[3-6]86-*-cygwin*]|x86-*-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__])
       if test -d /usr/X11/include -a x"${X_CFLAGS}" = x ; then
           X_CFLAGS=-I/usr/X11/include
       fi
     ;;      ;;
   arm*-*-linux*)
       asm_obj="${generic_obj}"
       if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
           CFLAGS="${CFLAGS} -fsigned-char"
       fi
       ;;
   *-*-mingw*)
           WSLIB="-lws2_32"
       asm_obj="${generic_obj}"
       ;;
 *)  *)
     asm_obj="${generic_obj}"      asm_obj="${generic_obj}"
     ;;      ;;
 esac  esac
   
 AC_SUBST([asm_obj])  AC_SUBST([asm_obj])
   AC_SUBST([WSLIB])
   
   AC_CHECK_FUNCS(sigaction)
 dnl for Solaris 2.x  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.3  
changed lines
  Added in v.1.48

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