version 1.32, 2009/02/13 11:25:48 |
version 1.51, 2019/03/26 08:10:13 |
|
|
dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.31 2009/02/11 21:48:15 ohara Exp $ |
dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.50 2017/03/12 04:51:49 ohara Exp $ |
|
|
AC_INIT |
AC_INIT(asir,1.15) |
AC_CONFIG_SRCDIR([LICENSE]) |
AC_CONFIG_SRCDIR([LICENSE]) |
AC_PREREQ(2.61) |
AC_PREREQ(2.69) |
AC_CANONICAL_TARGET |
AC_CANONICAL_TARGET |
AM_INIT_AUTOMAKE(asir, 20030307) |
AM_INIT_AUTOMAKE |
AM_MAINTAINER_MODE |
AM_MAINTAINER_MODE |
|
|
dnl AM_PROG_AS |
dnl AM_PROG_AS |
|
|
|
|
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.4.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]) |
|
|
AC_DEFINE([NO_ASIR_GC]) |
AC_DEFINE([NO_ASIR_GC]) |
fi |
fi |
dnl GC_CONFIGURE_ARGS=--disable-threads --enable-shared=no |
dnl GC_CONFIGURE_ARGS=--disable-threads --enable-shared=no |
GC_CONFIGURE_ARGS=--disable-threads |
GC_CONFIGURE_ARGS="--disable-threads --enable-large-config" |
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.0 ;; |
|
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 |
Line 126 if test ${enable_plot:=no} != no ; then |
|
Line 109 if test ${enable_plot:=no} != no ; then |
|
fi |
fi |
AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes]) |
AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes]) |
|
|
|
GMPLIB="-L${libdir} -lmpc -lmpfr -lgmp" |
|
AC_ARG_ENABLE([static_gmp], |
|
[ --enable-static-gmp force to link statically with gmp. [[no]]], |
|
[enable_static_gmp=yes],[enable_static_gmp=no]) |
|
if test ${enable_static_gmp:=no} != no ; then |
|
GMPLIB='${libdir}/libmpc.a ${libdir}/libmpfr.a ${libdir}/libgmp.a' |
|
fi |
|
AC_SUBST([GMPLIB]) |
|
|
AC_ARG_ENABLE([interval], |
AC_ARG_ENABLE([interval], |
[ --enable-interval enable interval feature. [[no]]], |
[ --enable-interval enable interval feature. [[no]]], |
[enable_interval=${enableval}],[enable_interval=no]) |
[enable_interval=${enableval}],[enable_interval=no]) |
Line 163 AC_ARG_WITH([mpi], |
|
Line 155 AC_ARG_WITH([mpi], |
|
if test "${with_mpi:=no}" != no ; then |
if test "${with_mpi:=no}" != no ; then |
AC_DEFINE([MPI]) |
AC_DEFINE([MPI]) |
fi |
fi |
AC_SUBST([MPIINC]) |
|
AC_SUBST([MPILIB]) |
|
|
|
dnl AC_ARG_WITH([lapack], |
dnl AC_ARG_WITH([lapack], |
dnl [ --with-lapack use the LAPACK library. [[no]]], |
dnl [ --with-lapack use the LAPACK library. [[no]]], |
Line 199 case "${host}" in |
|
Line 189 case "${host}" in |
|
asm_obj="${i386_elf_obj}" |
asm_obj="${i386_elf_obj}" |
AC_DEFINE([_BSD_SOURCE]) |
AC_DEFINE([_BSD_SOURCE]) |
;; |
;; |
*-*-cygwin*) |
[i[3-6]86-*-cygwin*]|x86-*-cygwin*) |
asm_obj="${i386_aout_obj}" |
asm_obj="${i386_aout_obj}" |
;; |
;; |
[i[3-6]86-*-interix*]) |
[i[3-6]86-*-interix*]) |
Line 222 sparc-sun-solaris2.*) |
|
Line 212 sparc-sun-solaris2.*) |
|
*-apple-darwin*) |
*-apple-darwin*) |
asm_obj="${generic_obj}" |
asm_obj="${generic_obj}" |
AC_DEFINE([__DARWIN__]) |
AC_DEFINE([__DARWIN__]) |
|
if test -d /usr/X11/include -a x"${X_CFLAGS}" = x ; then |
|
X_CFLAGS=-I/usr/X11/include |
|
fi |
;; |
;; |
arm*-*-linux*) |
arm*-*-linux*) |
asm_obj="${generic_obj}" |
asm_obj="${generic_obj}" |
|
|
CFLAGS="${CFLAGS} -fsigned-char" |
CFLAGS="${CFLAGS} -fsigned-char" |
fi |
fi |
;; |
;; |
|
*-*-mingw*) |
|
WSLIB="-lws2_32" |
|
asm_obj="${generic_obj}" |
|
;; |
*) |
*) |
asm_obj="${generic_obj}" |
asm_obj="${generic_obj}" |
;; |
;; |
esac |
esac |
|
|
AC_SUBST([asm_obj]) |
AC_SUBST([asm_obj]) |
|
AC_SUBST([WSLIB]) |
|
|
|
AC_CHECK_FUNCS(sigaction) |
dnl for Solaris 2.x |
dnl for Solaris 2.x |
AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)]) |
AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)]) |
AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)]) |
AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)]) |
|
|
AC_CONFIG_FILES([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 asir2000]) |
AC_OUTPUT |
AC_OUTPUT |