| version 1.23, 2005/07/12 14:47:13 |
version 1.44, 2015/08/04 06:57:51 |
|
|
| 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.43 2015/08/04 06:46:29 ohara Exp $ |
| |
|
| AC_INIT([LICENSE]) |
AC_INIT(asir,1.15) |
| AC_PREREQ(2.53) |
AC_CONFIG_SRCDIR([LICENSE]) |
| AM_INIT_AUTOMAKE(asir, 20030307) |
AC_PREREQ(2.69) |
| |
AC_CANONICAL_TARGET |
| |
AM_INIT_AUTOMAKE |
| AM_MAINTAINER_MODE |
AM_MAINTAINER_MODE |
| |
|
| AC_CANONICAL_SYSTEM |
|
| |
|
| dnl AM_PROG_AS |
dnl AM_PROG_AS |
| AC_PROG_CC |
AC_PROG_CC |
| AC_PROG_INSTALL |
AC_PROG_INSTALL |
|
|
| |
|
| 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=gc-7.4.2 |
| |
AC_ARG_WITH([asir-gc], |
| |
[ --with-asir-gc modify Boehm's GC [[yes]]], |
| |
[with_asir_gc=${withval}],[with_asir_gc=yes]) |
| |
if test ${with_asir_gc:=yes} != no; then |
| |
ASIR_GCLIB=libasir-gc.a |
| |
GCINC='-I${top_srcdir}/${GC}/include' |
| |
else |
| |
GCLIB='-L${prefix}/lib -lgc' |
| |
GCINC='-I${prefix}/include' |
| |
AC_DEFINE([NO_ASIR_GC]) |
| |
fi |
| |
dnl GC_CONFIGURE_ARGS=--disable-threads --enable-shared=no |
| |
GC_CONFIGURE_ARGS="--disable-threads --enable-large-config" |
| |
if test -n "${host_alias}" ; then |
| |
GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}" |
| |
fi |
| |
|
| |
AC_DEFINE([GC7]) |
| |
AC_SUBST([ASIR_GCLIB]) |
| |
AC_SUBST([GCLIB]) |
| |
AC_SUBST([GCINC]) |
| |
AC_SUBST([GC]) |
| |
AC_SUBST([GC_CONFIGURE_ARGS]) |
| |
|
| AC_ARG_WITH([distdir], |
AC_ARG_WITH([distdir], |
| [ --with-distdir specify the spool for fetching. [[no]]], |
[ --with-distdir specify the spool for fetching. [[no]]], |
| [with_distdir=${withval}],[with_distdir=no]) |
[with_distdir=${withval}],[with_distdir=no]) |
| Line 45 if test ${with_distdir:=no} != no -a ${with_distdir} ! |
|
| Line 68 if test ${with_distdir:=no} != no -a ${with_distdir} ! |
|
| fi |
fi |
| AC_SUBST([GC_DISTDIR]) |
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]) |
|
| |
|
| if test "${enable_gc_zeropage:=no}" != no ; then |
|
| USE_GC_ZEROPAGE="yes" |
|
| fi |
|
| AC_SUBST([USE_GC_ZEROPAGE]) |
|
| |
|
| libasir_postfix="" |
libasir_postfix="" |
| AC_ARG_WITH([pari], |
AC_ARG_WITH([pari], |
| [ --with-pari use the PARI library. [[no]]], |
[ --with-pari use the PARI library. [[no]]], |
| Line 61 AC_ARG_WITH([pari], |
|
| Line 75 AC_ARG_WITH([pari], |
|
| |
|
| if test ${with_pari:=no} != no ; then |
if test ${with_pari:=no} != no ; then |
| libasir_postfix=${libasir_postfix}_pari |
libasir_postfix=${libasir_postfix}_pari |
| if test ${with_pari} = new ; then |
|
| libpari=pari-2.2 |
|
| else |
|
| libpari=pari |
|
| fi |
|
| PARIINC='-I${prefix}/include/pari' |
PARIINC='-I${prefix}/include/pari' |
| if test "${enable_shared}" != yes ; then |
if test "${enable_shared}" != yes ; then |
| PARILIB='${prefix}'"/lib/lib${libpari}.a" |
PARILIB='${libdir}/libpari.a' |
| else |
else |
| PARILIB='-L${prefix}/lib'" -l${libpari}" |
PARILIB='-L${libdir} -lpari' |
| fi |
fi |
| AC_DEFINE([PARI]) |
AC_DEFINE([PARI]) |
| fi |
fi |
| Line 130 if test "${enable_fft_float:=no}" != no ; then |
|
| Line 139 if test "${enable_fft_float:=no}" != no ; then |
|
| AC_DEFINE([USE_FLOAT]) |
AC_DEFINE([USE_FLOAT]) |
| fi |
fi |
| |
|
| dnl AC_ARG_WITH([mpi], |
AC_ARG_WITH([mpi], |
| dnl [ --with-mpi use the MPI library. [[no]]], |
[ --with-mpi use the MPI library. [[no]]], |
| dnl [with_mpi=${withval}],[with_mpi=no]) |
[with_mpi=${withval}],[with_mpi=no]) |
| |
|
| if test "${with_mpi:=no}" != no ; then |
if test "${with_mpi:=no}" != no ; then |
| MPIINC="-I/opt/FJSVmpi2/include" |
|
| MPILIB="-L/opt/FJSVmpi2/lib -lmpi -L/opt/FSUNaprun/lib -lmpl -lemi -lthread" |
|
| 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 175 case "${host}" in |
|
| Line 180 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*]) |
| asm_obj="${i386_aout_obj}" |
asm_obj="${i386_aout_obj}" |
| USE_GC_INTERIX="yes" |
|
| AC_SUBST([USE_GC_INTERIX]) |
|
| AC_DEFINE([_ALL_SOURCE]) |
AC_DEFINE([_ALL_SOURCE]) |
| ;; |
;; |
| sparc-sun-solaris2.*) |
sparc-sun-solaris2.*) |
| Line 197 sparc-sun-solaris2.*) |
|
| Line 200 sparc-sun-solaris2.*) |
|
| esac |
esac |
| AC_DEFINE([SYSV]) |
AC_DEFINE([SYSV]) |
| ;; |
;; |
| powerpc-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}" |
| Line 218 dnl for Solaris 2.x |
|
| Line 224 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_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 |