=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/configure.in,v retrieving revision 1.23 retrieving revision 1.26 diff -u -p -r1.23 -r1.26 --- OpenXM_contrib2/asir2000/configure.in 2005/07/12 14:47:13 1.23 +++ OpenXM_contrib2/asir2000/configure.in 2007/11/11 15:54:02 1.26 @@ -1,12 +1,12 @@ -dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.22 2005/02/09 15:28:26 saito Exp $ +dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.25 2007/11/11 08:44:12 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,28 @@ 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_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]) @@ -197,7 +219,7 @@ sparc-sun-solaris2.*) esac AC_DEFINE([SYSV]) ;; -powerpc-apple-darwin*) +*-apple-darwin*) asm_obj="${generic_obj}" AC_DEFINE([__DARWIN__]) ;; @@ -218,4 +240,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