Annotation of OpenXM_contrib2/asir2000/configure.in, Revision 1.40
1.40 ! noro 1: dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.39 2012/05/30 02:24:33 ohara Exp $
1.1 ohara 2:
1.25 ohara 3: AC_INIT
4: AC_CONFIG_SRCDIR([LICENSE])
5: AC_PREREQ(2.61)
6: AC_CANONICAL_TARGET
1.5 noro 7: AM_INIT_AUTOMAKE(asir, 20030307)
1.11 ohara 8: AM_MAINTAINER_MODE
1.1 ohara 9:
10: dnl AM_PROG_AS
11: AC_PROG_CC
12: AC_PROG_INSTALL
13: AC_PROG_LN_S
14: AC_PROG_RANLIB
15: AC_PROG_YACC
16:
17: AC_PATH_XTRA
18:
19: AC_ARG_ENABLE([shared],
20: [ --enable-shared enable linking shared libraries. [[no]]],
21: [enable_shared=yes],[enable_shared=no])
22:
23: if test "${enable_shared:=no}" != no ; then
24: true
25: fi
1.4 noro 26:
1.6 ohara 27: if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
28: if test "${ac_cv_prog_cc_g}" = yes; then
29: CFLAGS="-g -O"
30: else
31: CFLAGS="-O"
32: fi
1.18 ohara 33: elif test `basename ./"${CC}"` = "icc" ; then
34: CFLAGS="-g -O"
1.6 ohara 35: fi
1.23 ohara 36:
1.40 ! noro 37: GC=gc6.8
1.30 ohara 38: AC_ARG_WITH([asir-gc],
39: [ --with-asir-gc modify Boehm's GC [[yes]]],
40: [with_asir_gc=${withval}],[with_asir_gc=yes])
41: if test ${with_asir_gc:=yes} != no; then
42: ASIR_GCLIB=libasir-gc.a
43: GCINC='-I${top_srcdir}/${GC}/include'
44: else
45: GCLIB='-L${prefix}/lib -lgc'
46: GCINC='-I${prefix}/include'
47: AC_DEFINE([NO_ASIR_GC])
48: fi
1.25 ohara 49: dnl GC_CONFIGURE_ARGS=--disable-threads --enable-shared=no
1.34 ohara 50: GC_CONFIGURE_ARGS="--disable-threads --enable-large-config"
1.31 ohara 51: if test -n "${host_alias}" ; then
1.25 ohara 52: GC_CONFIGURE_ARGS="--host=${host_alias} ${GC_CONFIGURE_ARGS}"
53: fi
1.30 ohara 54:
55: AC_SUBST([ASIR_GCLIB])
56: AC_SUBST([GCLIB])
57: AC_SUBST([GCINC])
1.25 ohara 58: AC_SUBST([GC])
59: AC_SUBST([GC_CONFIGURE_ARGS])
60:
1.23 ohara 61: AC_ARG_WITH([distdir],
62: [ --with-distdir specify the spool for fetching. [[no]]],
63: [with_distdir=${withval}],[with_distdir=no])
64: GC_DISTDIR='${prefix}/../OpenXM_dist'
65: if test ${with_distdir:=no} != no -a ${with_distdir} != yes ; then
66: GC_DISTDIR=${with_distdir}
67: fi
68: AC_SUBST([GC_DISTDIR])
1.12 ohara 69:
1.1 ohara 70: libasir_postfix=""
71: AC_ARG_WITH([pari],
72: [ --with-pari use the PARI library. [[no]]],
73: [with_pari=${withval}],[with_pari=no])
74:
75: if test ${with_pari:=no} != no ; then
76: libasir_postfix=${libasir_postfix}_pari
77: PARIINC='-I${prefix}/include/pari'
78: if test "${enable_shared}" != yes ; then
1.30 ohara 79: PARILIB='${libdir}/libpari.a'
1.1 ohara 80: else
1.30 ohara 81: PARILIB='-L${libdir} -lpari'
1.1 ohara 82: fi
83: AC_DEFINE([PARI])
84: fi
85: AC_SUBST([PARIINC])
86: AC_SUBST([PARILIB])
87:
1.7 ohara 88: AC_CHECK_TYPES([unsigned long long])
1.5 noro 89: AC_CHECK_SIZEOF(long)
1.15 noro 90: if test "${ac_cv_sizeof_long}" = 8; then
1.5 noro 91: AC_DEFINE([LONG_IS_64BIT])
92: else
93: AC_DEFINE([LONG_IS_32BIT])
94: fi
1.1 ohara 95: if test "${no_x}" != yes ; then
1.14 ohara 96: if test -f "${x_libraries}/libXpm.a" -o -f "${x_libraries}/libXpm.dll.a" ; then
1.10 ohara 97: XPMLIB="-lXpm"
98: fi
1.1 ohara 99: AC_ARG_ENABLE([plot],
100: [ --enable-plot enable plot feature. [[no]]],
101: [enable_plot=yes],[enable_plot=no])
102: fi
1.10 ohara 103: AC_SUBST([XPMLIB])
1.1 ohara 104:
105: if test ${enable_plot:=no} != no ; then
106: libasir_postfix=${libasir_postfix}_X
107: AC_DEFINE([DO_PLOT])
108: fi
109: AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes])
110:
111: AC_ARG_ENABLE([interval],
112: [ --enable-interval enable interval feature. [[no]]],
113: [enable_interval=${enableval}],[enable_interval=no])
114:
115: if test ${enable_interval:=no} != no ; then
116: libasir_postfix=${libasir_postfix}_itv
117: AC_DEFINE([INTERVAL])
118: if test "${enable_interval}" = debug ; then
119: AC_DEFINE([ITVDEBUG])
120: fi
121: fi
122:
123: dnl AC_ARG_ENABLE([fep],
124: dnl [ --enable-fep enable fep for human interfaces. [[no]]],
125: dnl [enable_fep=yes],[enable_fep=no])
126:
127: if test "${enable_fep:=no}" != no ; then
128: AC_DEFINE([FEP])
129: FEPLIB="-lreadline -ltermcap"
130: fi
131: AC_SUBST([FEPLIB])
132:
133: AC_ARG_ENABLE([fft-float],
134: [ --enable-fft-float enable FFT-FLOAT feature. [[no]]],
135: [enable_fft_float=yes],[enable_fft_float=no])
136:
137: if test "${enable_fft_float:=no}" != no ; then
138: AC_DEFINE([USE_FLOAT])
139: fi
140:
1.32 ohara 141: AC_ARG_WITH([mpi],
142: [ --with-mpi use the MPI library. [[no]]],
143: [with_mpi=${withval}],[with_mpi=no])
1.1 ohara 144:
145: if test "${with_mpi:=no}" != no ; then
146: AC_DEFINE([MPI])
147: fi
148:
149: dnl AC_ARG_WITH([lapack],
150: dnl [ --with-lapack use the LAPACK library. [[no]]],
151: dnl [with_lapack=${withval}],[with_lapack=no])
152:
153: if test "${with_lapack:=no}" != no ; then
1.22 saito 154: LAPACKLIB="-llapack -lblas -lg2c"
1.1 ohara 155: AC_DEFINE([LAPACK])
156: fi
157: AC_SUBST([LAPACKLIB])
158:
159: AC_SUBST([libasir_postfix])
160:
161: dnl Object files in assembly languages for each micro processors.
162: dnl i386_elf_obj: for FreeBSD 3.x or later and Linux 2.x
163: dnl i386_aout_obj: for FreeBSD 2.x, Linux 1.x, and Cygwin
164: dnl sparc_v8_obj: for Sparc V8 processor on Solaris 2.x
165: dnl sparc_v9_obj: for Sparc V9 processor on Solaris 2.x
166: dnl generic_obj: for 32bits/64bits generic micro processors
167:
168: i386_elf_obj=asmi_l.o
169: i386_aout_obj=asmi.o
170: sparc_v8_obj="sparc-2.o asm4-2.o edr-2.o"
1.19 noro 171: sparc_v9_obj=asmalpha.o
1.1 ohara 172: generic_obj=asmalpha.o
173:
174: case "${host}" in
1.9 ohara 175: [i[3-6]86-*-freebsd[3-9].*])
1.1 ohara 176: asm_obj="${i386_elf_obj}"
1.9 ohara 177: ;;
178: [i[3-6]86-*-linux*]|x86-*-linux*)
179: asm_obj="${i386_elf_obj}"
1.13 ohara 180: AC_DEFINE([_BSD_SOURCE])
1.1 ohara 181: ;;
182: *-*-cygwin*)
183: asm_obj="${i386_aout_obj}"
1.16 ohara 184: ;;
185: [i[3-6]86-*-interix*])
1.17 ohara 186: asm_obj="${i386_aout_obj}"
1.16 ohara 187: AC_DEFINE([_ALL_SOURCE])
1.1 ohara 188: ;;
189: sparc-sun-solaris2.*)
190: case "`uname -m`" in
191: [sun4[dm]]) asm_obj="${sparc_v8_obj}" ;;
1.20 ohara 192: sun4u*) asm_obj="${sparc_v9_obj}"
193: if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
194: CFLAGS="${CFLAGS} -m64"
195: fi
196: AC_SUBST([USE_GC_SPARC64])
197: ;;
1.1 ohara 198: *) asm_obj="${generic_obj}" ;;
199: esac
200: AC_DEFINE([SYSV])
1.2 ohara 201: ;;
1.24 ohara 202: *-apple-darwin*)
1.2 ohara 203: asm_obj="${generic_obj}"
204: AC_DEFINE([__DARWIN__])
1.8 ohara 205: ;;
206: arm*-*-linux*)
207: asm_obj="${generic_obj}"
208: if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
209: CFLAGS="${CFLAGS} -fsigned-char"
210: fi
1.1 ohara 211: ;;
212: *)
213: asm_obj="${generic_obj}"
214: ;;
215: esac
216:
217: AC_SUBST([asm_obj])
218:
219: dnl for Solaris 2.x
220: AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)])
221: AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)])
222:
1.25 ohara 223: AC_CONFIG_FILES([Makefile engine/Makefile asm/Makefile builtin/Makefile fft/Makefile include/Makefile io/Makefile lib/Makefile parse/Makefile plot/Makefile])
224: AC_OUTPUT
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>