=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/configure.in,v retrieving revision 1.21 retrieving revision 1.25 diff -u -p -r1.21 -r1.25 --- OpenXM_contrib2/asir2000/configure.in 2005/02/09 08:32:32 1.21 +++ OpenXM_contrib2/asir2000/configure.in 2007/11/11 08:44:12 1.25 @@ -1,12 +1,12 @@ -dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.20 2004/06/25 13:41:33 ohara Exp $ +dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.24 2007/02/18 05:36:27 ohara Exp $ -AC_INIT([LICENSE]) -AC_PREREQ(2.53) +AC_INIT +AC_CONFIG_SRCDIR([LICENSE]) +AC_PREREQ(2.61) +AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(asir, 20030307) AM_MAINTAINER_MODE -AC_CANONICAL_SYSTEM - dnl AM_PROG_AS AC_PROG_CC AC_PROG_INSTALL @@ -36,6 +36,24 @@ elif test `basename ./"${CC}"` = "icc" ; then CFLAGS="-g -O" 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_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]) + AC_ARG_ENABLE([gc-zeropage], [ --enable-gc-zeropage enable to avoid the kernel zeropage bug. [[no]]], [enable_gc_zeropage=yes],[enable_gc_zeropage=no]) @@ -138,7 +156,7 @@ dnl [ --with-lapack use the LAPACK library. dnl [with_lapack=${withval}],[with_lapack=no]) if test "${with_lapack:=no}" != no ; then - LAPACKLIB="-llapack -lblas -lg2c + LAPACKLIB="-llapack -lblas -lg2c" AC_DEFINE([LAPACK]) fi AC_SUBST([LAPACKLIB]) @@ -188,7 +206,7 @@ sparc-sun-solaris2.*) esac AC_DEFINE([SYSV]) ;; -powerpc-apple-darwin*) +*-apple-darwin*) asm_obj="${generic_obj}" AC_DEFINE([__DARWIN__]) ;; @@ -209,4 +227,5 @@ dnl for Solaris 2.x AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)]) 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