=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/configure.in,v retrieving revision 1.1 retrieving revision 1.6 diff -u -p -r1.1 -r1.6 --- OpenXM_contrib2/asir2000/configure.in 2003/02/23 03:05:35 1.1 +++ OpenXM_contrib2/asir2000/configure.in 2003/03/07 08:49:12 1.6 @@ -1,8 +1,8 @@ -dnl $OpenXM$ +dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.5 2003/03/07 05:40:16 noro Exp $ AC_INIT([LICENSE]) AC_PREREQ(2.53) -AM_INIT_AUTOMAKE(asir, 20030128) +AM_INIT_AUTOMAKE(asir, 20030307) AC_CANONICAL_SYSTEM @@ -25,6 +25,14 @@ if test "${enable_shared:=no}" != no ; then true 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 +fi + libasir_postfix="" AC_ARG_WITH([pari], [ --with-pari use the PARI library. [[no]]], @@ -32,10 +40,10 @@ AC_ARG_WITH([pari], if test ${with_pari:=no} != no ; then libasir_postfix=${libasir_postfix}_pari - if test ${with_pari} = old ; then - libpari=pari - else + if test ${with_pari} = new ; then libpari=pari-2.2 + else + libpari=pari fi PARIINC='-I${prefix}/include/pari' if test "${enable_shared}" != yes ; then @@ -44,16 +52,16 @@ if test ${with_pari:=no} != no ; then PARILIB='-L${prefix}/lib'" -l${libpari}" fi 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 AC_SUBST([PARIINC]) AC_SUBST([PARILIB]) +AC_CHECK_SIZEOF(long) +if test SIZEOF_LONG = 8; then + AC_DEFINE([LONG_IS_64BIT]) +else + AC_DEFINE([LONG_IS_32BIT]) +fi if test "${no_x}" != yes ; then AC_ARG_ENABLE([plot], [ --enable-plot enable plot feature. [[no]]], @@ -143,10 +151,14 @@ 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}" ;; *) asm_obj="${generic_obj}" ;; esac AC_DEFINE([SYSV]) + ;; +powerpc-apple-darwin*) + asm_obj="${generic_obj}" + AC_DEFINE([__DARWIN__]) ;; *) asm_obj="${generic_obj}"