Annotation of OpenXM_contrib2/asir2000/configure.in, Revision 1.44
1.44 ! ohara 1: dnl $OpenXM: OpenXM_contrib2/asir2000/configure.in,v 1.43 2015/08/04 06:46:29 ohara Exp $
1.1 ohara 2:
1.43 ohara 3: AC_INIT(asir,1.15)
1.25 ohara 4: AC_CONFIG_SRCDIR([LICENSE])
1.43 ohara 5: AC_PREREQ(2.69)
1.25 ohara 6: AC_CANONICAL_TARGET
1.43 ohara 7: AM_INIT_AUTOMAKE
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.44 ! ohara 37: GC=gc-7.4.2
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:
1.41 noro 55: AC_DEFINE([GC7])
1.30 ohara 56: AC_SUBST([ASIR_GCLIB])
57: AC_SUBST([GCLIB])
58: AC_SUBST([GCINC])
1.25 ohara 59: AC_SUBST([GC])
60: AC_SUBST([GC_CONFIGURE_ARGS])
61:
1.23 ohara 62: AC_ARG_WITH([distdir],
63: [ --with-distdir specify the spool for fetching. [[no]]],
64: [with_distdir=${withval}],[with_distdir=no])
65: GC_DISTDIR='${prefix}/../OpenXM_dist'
66: if test ${with_distdir:=no} != no -a ${with_distdir} != yes ; then
67: GC_DISTDIR=${with_distdir}
68: fi
69: AC_SUBST([GC_DISTDIR])
1.12 ohara 70:
1.1 ohara 71: libasir_postfix=""
72: AC_ARG_WITH([pari],
73: [ --with-pari use the PARI library. [[no]]],
74: [with_pari=${withval}],[with_pari=no])
75:
76: if test ${with_pari:=no} != no ; then
77: libasir_postfix=${libasir_postfix}_pari
78: PARIINC='-I${prefix}/include/pari'
79: if test "${enable_shared}" != yes ; then
1.30 ohara 80: PARILIB='${libdir}/libpari.a'
1.1 ohara 81: else
1.30 ohara 82: PARILIB='-L${libdir} -lpari'
1.1 ohara 83: fi
84: AC_DEFINE([PARI])
85: fi
86: AC_SUBST([PARIINC])
87: AC_SUBST([PARILIB])
88:
1.7 ohara 89: AC_CHECK_TYPES([unsigned long long])
1.5 noro 90: AC_CHECK_SIZEOF(long)
1.15 noro 91: if test "${ac_cv_sizeof_long}" = 8; then
1.5 noro 92: AC_DEFINE([LONG_IS_64BIT])
93: else
94: AC_DEFINE([LONG_IS_32BIT])
95: fi
1.1 ohara 96: if test "${no_x}" != yes ; then
1.14 ohara 97: if test -f "${x_libraries}/libXpm.a" -o -f "${x_libraries}/libXpm.dll.a" ; then
1.10 ohara 98: XPMLIB="-lXpm"
99: fi
1.1 ohara 100: AC_ARG_ENABLE([plot],
101: [ --enable-plot enable plot feature. [[no]]],
102: [enable_plot=yes],[enable_plot=no])
103: fi
1.10 ohara 104: AC_SUBST([XPMLIB])
1.1 ohara 105:
106: if test ${enable_plot:=no} != no ; then
107: libasir_postfix=${libasir_postfix}_X
108: AC_DEFINE([DO_PLOT])
109: fi
110: AM_CONDITIONAL([USE_PLOT],[test "$enable_plot" = yes])
111:
112: AC_ARG_ENABLE([interval],
113: [ --enable-interval enable interval feature. [[no]]],
114: [enable_interval=${enableval}],[enable_interval=no])
115:
116: if test ${enable_interval:=no} != no ; then
117: libasir_postfix=${libasir_postfix}_itv
118: AC_DEFINE([INTERVAL])
119: if test "${enable_interval}" = debug ; then
120: AC_DEFINE([ITVDEBUG])
121: fi
122: fi
123:
124: dnl AC_ARG_ENABLE([fep],
125: dnl [ --enable-fep enable fep for human interfaces. [[no]]],
126: dnl [enable_fep=yes],[enable_fep=no])
127:
128: if test "${enable_fep:=no}" != no ; then
129: AC_DEFINE([FEP])
130: FEPLIB="-lreadline -ltermcap"
131: fi
132: AC_SUBST([FEPLIB])
133:
134: AC_ARG_ENABLE([fft-float],
135: [ --enable-fft-float enable FFT-FLOAT feature. [[no]]],
136: [enable_fft_float=yes],[enable_fft_float=no])
137:
138: if test "${enable_fft_float:=no}" != no ; then
139: AC_DEFINE([USE_FLOAT])
140: fi
141:
1.32 ohara 142: AC_ARG_WITH([mpi],
143: [ --with-mpi use the MPI library. [[no]]],
144: [with_mpi=${withval}],[with_mpi=no])
1.1 ohara 145:
146: if test "${with_mpi:=no}" != no ; then
147: AC_DEFINE([MPI])
148: fi
149:
150: dnl AC_ARG_WITH([lapack],
151: dnl [ --with-lapack use the LAPACK library. [[no]]],
152: dnl [with_lapack=${withval}],[with_lapack=no])
153:
154: if test "${with_lapack:=no}" != no ; then
1.22 saito 155: LAPACKLIB="-llapack -lblas -lg2c"
1.1 ohara 156: AC_DEFINE([LAPACK])
157: fi
158: AC_SUBST([LAPACKLIB])
159:
160: AC_SUBST([libasir_postfix])
161:
162: dnl Object files in assembly languages for each micro processors.
163: dnl i386_elf_obj: for FreeBSD 3.x or later and Linux 2.x
164: dnl i386_aout_obj: for FreeBSD 2.x, Linux 1.x, and Cygwin
165: dnl sparc_v8_obj: for Sparc V8 processor on Solaris 2.x
166: dnl sparc_v9_obj: for Sparc V9 processor on Solaris 2.x
167: dnl generic_obj: for 32bits/64bits generic micro processors
168:
169: i386_elf_obj=asmi_l.o
170: i386_aout_obj=asmi.o
171: sparc_v8_obj="sparc-2.o asm4-2.o edr-2.o"
1.19 noro 172: sparc_v9_obj=asmalpha.o
1.1 ohara 173: generic_obj=asmalpha.o
174:
175: case "${host}" in
1.9 ohara 176: [i[3-6]86-*-freebsd[3-9].*])
1.1 ohara 177: asm_obj="${i386_elf_obj}"
1.9 ohara 178: ;;
179: [i[3-6]86-*-linux*]|x86-*-linux*)
180: asm_obj="${i386_elf_obj}"
1.13 ohara 181: AC_DEFINE([_BSD_SOURCE])
1.1 ohara 182: ;;
1.43 ohara 183: [i[3-6]86-*-cygwin*]|x86-*-cygwin*)
1.1 ohara 184: asm_obj="${i386_aout_obj}"
1.16 ohara 185: ;;
186: [i[3-6]86-*-interix*])
1.17 ohara 187: asm_obj="${i386_aout_obj}"
1.16 ohara 188: AC_DEFINE([_ALL_SOURCE])
1.1 ohara 189: ;;
190: sparc-sun-solaris2.*)
191: case "`uname -m`" in
192: [sun4[dm]]) asm_obj="${sparc_v8_obj}" ;;
1.20 ohara 193: sun4u*) asm_obj="${sparc_v9_obj}"
194: if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
195: CFLAGS="${CFLAGS} -m64"
196: fi
197: AC_SUBST([USE_GC_SPARC64])
198: ;;
1.1 ohara 199: *) asm_obj="${generic_obj}" ;;
200: esac
201: AC_DEFINE([SYSV])
1.2 ohara 202: ;;
1.24 ohara 203: *-apple-darwin*)
1.2 ohara 204: asm_obj="${generic_obj}"
205: AC_DEFINE([__DARWIN__])
1.42 ohara 206: if test -d /usr/X11/include -a x"${X_CFLAGS}" = x ; then
207: X_CFLAGS=-I/usr/X11/include
208: fi
1.8 ohara 209: ;;
210: arm*-*-linux*)
211: asm_obj="${generic_obj}"
212: if test "${ac_test_CFLAGS}" != set -a "${GCC}" = yes ; then
213: CFLAGS="${CFLAGS} -fsigned-char"
214: fi
1.1 ohara 215: ;;
216: *)
217: asm_obj="${generic_obj}"
218: ;;
219: esac
220:
221: AC_SUBST([asm_obj])
222:
223: dnl for Solaris 2.x
224: AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket,socket)])
225: AC_CHECK_FUNC(gethostbyname, , [AC_CHECK_LIB(nsl,gethostbyname)])
226:
1.25 ohara 227: AC_CONFIG_FILES([Makefile engine/Makefile asm/Makefile builtin/Makefile fft/Makefile include/Makefile io/Makefile lib/Makefile parse/Makefile plot/Makefile])
228: AC_OUTPUT
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>