=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/configure.in,v retrieving revision 1.18 retrieving revision 1.24 diff -u -p -r1.18 -r1.24 --- OpenXM_contrib2/asir2000/configure.in 2004/03/25 16:32:45 1.18 +++ OpenXM_contrib2/asir2000/configure.in 2007/02/18 05:36:27 1.24 @@ -1,4 +1,4 @@ -dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.17 2004/02/27 18:32:21 ohara Exp $ +dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.23 2005/07/12 14:47:13 ohara Exp $ AC_INIT([LICENSE]) AC_PREREQ(2.53) @@ -36,6 +36,15 @@ elif test `basename ./"${CC}"` = "icc" ; then CFLAGS="-g -O" fi +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 +147,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 -lI77 -lF77" + LAPACKLIB="-llapack -lblas -lg2c" AC_DEFINE([LAPACK]) fi AC_SUBST([LAPACKLIB]) @@ -155,7 +164,7 @@ dnl generic_obj: for 32bits/64bits generic micro pro i386_elf_obj=asmi_l.o i386_aout_obj=asmi.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 case "${host}" in @@ -178,12 +187,17 @@ case "${host}" in sparc-sun-solaris2.*) case "`uname -m`" in [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}" ;; esac AC_DEFINE([SYSV]) ;; -powerpc-apple-darwin*) +*-apple-darwin*) asm_obj="${generic_obj}" AC_DEFINE([__DARWIN__]) ;;