[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.19 and 1.26

version 1.19, 2004/06/25 09:37:19 version 1.26, 2007/11/11 15:54:02
Line 1 
Line 1 
 dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.18 2004/03/25 16:32:45 ohara Exp $  dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.25 2007/11/11 08:44:12 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 36  elif test `basename ./"${CC}"` = "icc" ; then
Line 36  elif test `basename ./"${CC}"` = "icc" ; then
     CFLAGS="-g -O"      CFLAGS="-g -O"
 fi  fi
   
   GC=gc6.8
   dnl GC_CONFIGURE_ARGS=--disable-threads --enable-shared=no
   GC_CONFIGURE_ARGS=--disable-threads
   if [ -n "${host_alias}" ]; then
       GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}"
   fi
   AC_ARG_WITH([gc7],
   [  --with-gc7              use Boehm's GC 7.x. [[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])
      USE_GC7="yes"
   fi
   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])
   
 AC_ARG_ENABLE([gc-zeropage],  AC_ARG_ENABLE([gc-zeropage],
 [  --enable-gc-zeropage    enable to avoid the kernel zeropage bug.  [[no]]],  [  --enable-gc-zeropage    enable to avoid the kernel zeropage bug.  [[no]]],
 [enable_gc_zeropage=yes],[enable_gc_zeropage=no])  [enable_gc_zeropage=yes],[enable_gc_zeropage=no])
Line 138  dnl [  --with-lapack           use the LAPACK library.
Line 169  dnl [  --with-lapack           use the LAPACK library.
 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 178  case "${host}" in
Line 209  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}"
                   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 204  dnl for Solaris 2.x
Line 240  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.19  
changed lines
  Added in v.1.26

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