version 1.35, 2009/03/04 06:51:41 |
version 1.39, 2012/05/30 02:24:33 |
|
|
dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.34 2009/02/23 16:51:06 ohara Exp $ |
dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.38 2012/05/09 06:17:13 ohara Exp $ |
|
|
AC_INIT |
AC_INIT |
AC_CONFIG_SRCDIR([LICENSE]) |
AC_CONFIG_SRCDIR([LICENSE]) |
|
|
|
|
AC_PATH_XTRA |
AC_PATH_XTRA |
|
|
AC_DEFINE([HMEXT]) |
|
|
|
AC_ARG_ENABLE([shared], |
AC_ARG_ENABLE([shared], |
[ --enable-shared enable linking shared libraries. [[no]]], |
[ --enable-shared enable linking shared libraries. [[no]]], |
[enable_shared=yes],[enable_shared=no]) |
[enable_shared=yes],[enable_shared=no]) |
Line 36 elif test `basename ./"${CC}"` = "icc" ; then |
|
Line 34 elif test `basename ./"${CC}"` = "icc" ; then |
|
CFLAGS="-g -O" |
CFLAGS="-g -O" |
fi |
fi |
|
|
GC=gc6.8 |
GC=gc-7.2 |
AC_ARG_WITH([asir-gc], |
AC_ARG_WITH([asir-gc], |
[ --with-asir-gc modify Boehm's GC [[yes]]], |
[ --with-asir-gc modify Boehm's GC [[yes]]], |
[with_asir_gc=${withval}],[with_asir_gc=yes]) |
[with_asir_gc=${withval}],[with_asir_gc=yes]) |
Line 53 GC_CONFIGURE_ARGS="--disable-threads --enable-large-co |
|
Line 51 GC_CONFIGURE_ARGS="--disable-threads --enable-large-co |
|
if test -n "${host_alias}" ; then |
if test -n "${host_alias}" ; then |
GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}" |
GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}" |
fi |
fi |
AC_ARG_WITH([gc7], |
|
[ --with-gc7 use GC 7.x (if --with-asir-gc=yes) [[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.1 ;; |
|
esac |
|
GC=gc-${GC_VERSION} |
|
AC_DEFINE([GC7]) |
|
fi |
|
|
|
|
AC_DEFINE([GC7]) |
AC_SUBST([ASIR_GCLIB]) |
AC_SUBST([ASIR_GCLIB]) |
AC_SUBST([GCLIB]) |
AC_SUBST([GCLIB]) |
AC_SUBST([GCINC]) |
AC_SUBST([GCINC]) |
|
|
AC_SUBST([GC]) |
AC_SUBST([GC]) |
AC_SUBST([GC_CONFIGURE_ARGS]) |
AC_SUBST([GC_CONFIGURE_ARGS]) |
AM_CONDITIONAL([USE_GC7],[test "$with_gc7" != no]) |
|
|
|
AC_ARG_WITH([distdir], |
AC_ARG_WITH([distdir], |
[ --with-distdir specify the spool for fetching. [[no]]], |
[ --with-distdir specify the spool for fetching. [[no]]], |
Line 88 AC_ARG_WITH([pari], |
|
Line 74 AC_ARG_WITH([pari], |
|
[with_pari=${withval}],[with_pari=no]) |
[with_pari=${withval}],[with_pari=no]) |
|
|
if test ${with_pari:=no} != no ; then |
if test ${with_pari:=no} != no ; then |
if test "${with_pari}" = new -o "${with_pari}" = 2.3 ; then |
|
AC_DEFINE([PARI23]) |
|
fi |
|
libasir_postfix=${libasir_postfix}_pari |
libasir_postfix=${libasir_postfix}_pari |
PARIINC='-I${prefix}/include/pari' |
PARIINC='-I${prefix}/include/pari' |
if test "${enable_shared}" != yes ; then |
if test "${enable_shared}" != yes ; then |