[gforth] / gforth / configure.in  

gforth: gforth/configure.in


1 : anton 1.1 dnl Process this file with autoconf to produce a configure script.
2 : anton 1.20
3 : anton 1.41 #Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4 : anton 1.20
5 :     #This file is part of Gforth.
6 :    
7 :     #Gforth is free software; you can redistribute it and/or
8 :     #modify it under the terms of the GNU General Public License
9 :     #as published by the Free Software Foundation; either version 2
10 :     #of the License, or (at your option) any later version.
11 :    
12 :     #This program is distributed in the hope that it will be useful,
13 :     #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 :     #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
15 :     #GNU General Public License for more details.
16 :    
17 :     #You should have received a copy of the GNU General Public License
18 :     #along with this program; if not, write to the Free Software
19 :     #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 :    
21 : anton 1.31 AC_INIT(engine/engine.c)
22 : anton 1.34
23 :     dnl We use some automake macros here,
24 :     dnl but don't use automake for creating Makefile.in
25 : anton 1.52 AM_INIT_AUTOMAKE(gforth,0.4.9-19990320)
26 : anton 1.47 #snapshots have numbers major.minor.release-YYYYMMDD
27 :     #note that lexicographic ordering bust be heeded.
28 :     #I.e., 0.4.1-YYYYMMDD must not exist before 0.4.1!
29 : anton 1.34 AM_CONFIG_HEADER(engine/config.h)
30 :     AM_CYGWIN32
31 : anton 1.14
32 : anton 1.1 AC_ARG_ENABLE(force-reg,
33 :     [ --enable-force-reg Use explicit register declarations if they appear in
34 :     the machine.h file. This can cause a good speedup,
35 :     but also incorrect code with some gcc versions on
36 :     some processors (default disabled).],
37 :    
38 :     AC_DEFINE(FORCE_REG))
39 :     dnl this is not quite according to the autoconf manual, it causes a replacement
40 :     AC_ARG_ENABLE(direct-threaded,
41 :     [ --enable-direct-threaded Force direct threading. This may not work on
42 :     some machines and may cause slowdown on others.
43 :     (default processor-dependent)],
44 :     AC_DEFINE(DIRECT_THREADED))
45 :     AC_ARG_ENABLE(indirect-threaded,
46 :     [ --enable-indirect-threaded Force indirect threading. This can cause a
47 :     slowdown on some machines.
48 :     (default processor-dependent)],
49 :     AC_DEFINE(INDIRECT_THREADED))
50 :    
51 : pazsan 1.9 AC_ARG_WITH(debug,
52 : anton 1.10 [ --with-debug specifies option -g to compile with debug info (default)
53 : anton 1.27 --without-debug omits the -g switch and creates smaller images on
54 :     machines where "strip" has problems with gcc style
55 :     debugging informations.],
56 : pazsan 1.9 if test "$withval" = "yes"; then DEBUGFLAG=-g; fi)
57 :    
58 : anton 1.16 CFLAGS=$CFLAGS
59 :    
60 : pazsan 1.15 AC_PROG_CC
61 :    
62 :     if test "$GCC" = "yes"
63 :     then
64 :     echo "Fine, gcc is available"
65 :     else
66 :     cat <<'EOF'
67 : anton 1.16 Gforth requires GCC-2.0 or higher (it uses GNU C extensions).
68 :     It does not work with other C compilers. Please install the GNU C compiler,
69 :     and try again (or search for a binary distribution for your platform).
70 : pazsan 1.15 EOF
71 :     exit 1
72 :     fi
73 : pazsan 1.9
74 : pazsan 1.15 AC_SUBST(CC)
75 : pazsan 1.9 AC_SUBST(DEBUGFLAG)
76 : anton 1.7
77 : anton 1.10 dnl the following macro produces a warning with autoconf-2.1
78 :     AC_CHECK_SIZEOF(char *)
79 :     case "$ac_cv_sizeof_char_p" in
80 :     2)
81 :     wordsize=16
82 :     ;;
83 :     4)
84 :     wordsize=32
85 :     ;;
86 :     8)
87 :     wordsize=64
88 :     ;;
89 :     esac
90 : pazsan 1.9
91 : pazsan 1.40 AC_CHECK_SIZEOF(char)
92 : pazsan 1.23 AC_CHECK_SIZEOF(short)
93 :     AC_CHECK_SIZEOF(int)
94 :     AC_CHECK_SIZEOF(long)
95 :     AC_CHECK_SIZEOF(long long)
96 :    
97 :     ac_cv_int_type_cell=none
98 :     case "$ac_cv_sizeof_char_p" in
99 : pazsan 1.40 $ac_cv_sizeof_int)
100 :     ac_cv_int_type_cell=int
101 :     ;;
102 : pazsan 1.23 $ac_cv_sizeof_short)
103 :     ac_cv_int_type_cell=short
104 :     ;;
105 : pazsan 1.40 $ac_cv_sizeof_char)
106 :     ac_cv_int_type_cell=char
107 : pazsan 1.23 ;;
108 :     $ac_cv_sizeof_long)
109 :     ac_cv_int_type_cell=long
110 :     ;;
111 :     $ac_cv_sizeof_long_long)
112 :     ac_cv_int_type_cell="long long"
113 :     ;;
114 :     esac
115 : pazsan 1.22 if test "$ac_cv_int_type_cell" != int; then
116 : anton 1.20 echo "So, sizeof(pointer)!=sizeof(int); looks like a DOS C compiler to me."
117 :     echo "Since you don't have a proper C on this machine, that's one more reason"
118 :     echo "to use Forth;-)"
119 :     fi
120 : pazsan 1.23 AC_DEFINE_UNQUOTED(CELL_TYPE,$ac_cv_int_type_cell)
121 :    
122 :     ac_cv_int_type_double_cell=none
123 :     case `expr 2 '*' "$ac_cv_sizeof_char_p"` in
124 :     $ac_cv_sizeof_short)
125 :     ac_cv_int_type_double_cell=short
126 :     ;;
127 :     $ac_cv_sizeof_int)
128 :     ac_cv_int_type_double_cell=int
129 :     ;;
130 :     $ac_cv_sizeof_long)
131 :     ac_cv_int_type_double_cell=long
132 :     ;;
133 :     $ac_cv_sizeof_long_long)
134 :     ac_cv_int_type_double_cell="long long"
135 :     ;;
136 :     esac
137 : anton 1.21 if test "$ac_cv_int_type_double_cell" = none; then
138 : anton 1.20 echo "Emulating double-cell arithmetic. This may be slow."
139 :     echo "If you find this unacceptable, ask the GCC maintainers to provide proper"
140 : pazsan 1.23 echo 'long longs for your machine (the GCC manual states that they \"are twice as'
141 :     echo "long as \`long int\'\")."
142 : anton 1.20 LIBOBJS="$LIBOBJS dblsub.o"
143 :     AC_DEFINE(BUGGY_LONG_LONG)
144 : pazsan 1.23 else
145 :     AC_DEFINE_UNQUOTED(DOUBLE_CELL_TYPE,$ac_cv_int_type_double_cell)
146 : anton 1.20 fi
147 :    
148 : jwilke 1.50 AC_MSG_CHECKING([whether the linker accepts -export-dynamic])
149 :     OLDLDFLAGS=$LDFLAGS
150 :     LDFLAGS="$LDFLAGS -export-dynamic"
151 :     AC_TRY_LINK(,,ac_export_dynamic=yes,ac_export_dynamic=no)
152 :     test $ac_export_dynamic = yes|| LDFLAGS=$OLDLDFLAGS
153 :     AC_MSG_RESULT($ac_export_dynamic)
154 :    
155 : anton 1.1 #terminology is a bit unusual here: The host is the system on which
156 :     #gforth will run; the system on which configure will run is the `build'
157 :     AC_CANONICAL_HOST
158 :     case "$host_cpu" in
159 :     hppa*)
160 : anton 1.34 machine=hppa
161 : anton 1.46 $srcdir/mkinstalldirs arch/hppa
162 : anton 1.38 LIBOBJS="$LIBOBJS ../arch/hppa/cache.o"
163 : jwilke 1.50 LDFLAGS="$LDFLAGS -Xlinker -N"
164 : anton 1.47 LIBS="$LIBS -L/lib/pa1.1/"
165 : anton 1.31 if test "${enable_direct_threaded+set}" = ""
166 :     then
167 :     AC_DEFINE(DIRECT_THREADED)
168 :     fi
169 : anton 1.1 ;;
170 :     sparc*)
171 : anton 1.34 machine=sparc
172 : anton 1.1 ;;
173 : anton 1.31 i386)
174 : anton 1.34 machine=386
175 : anton 1.16 CFLAGS="$CFLAGS -fomit-frame-pointer -fforce-addr -fforce-mem"
176 : anton 1.31 if test "${enable_direct_threaded+set}" = "" \
177 :     -a "${enable_indirect_threaded+set}" = ""
178 :     then
179 : anton 1.34 echo "Using direct threaded code on 386"
180 : anton 1.31 AC_DEFINE(DIRECT_THREADED)
181 :     fi
182 :     ;;
183 :     i486)
184 : anton 1.34 machine=386
185 : anton 1.31 CFLAGS="$CFLAGS -fomit-frame-pointer -fforce-addr -fforce-mem -m486"
186 :     if test "${enable_direct_threaded+set}" = "" \
187 :     -a "${enable_indirect_threaded+set}" = ""
188 :     then
189 : anton 1.34 echo "Using direct threaded code on 486"
190 : anton 1.31 AC_DEFINE(DIRECT_THREADED)
191 :     fi
192 :     ;;
193 :     i586|i686)
194 : anton 1.34 machine=386
195 : anton 1.31 CFLAGS="$CFLAGS -fomit-frame-pointer -fforce-addr -fforce-mem -m486"
196 :     if test "${enable_direct_threaded+set}" = "" \
197 :     -a "${enable_indirect_threaded+set}" = ""
198 :     then
199 : anton 1.34 echo "Using indirect threaded code on Pentium and up"
200 : anton 1.31 AC_DEFINE(INDIRECT_THREADED)
201 :     fi
202 : anton 1.1 ;;
203 : pazsan 1.26 m68k)
204 : anton 1.34 machine=m68k
205 : pazsan 1.32 CFLAGS="$CFLAGS -fomit-frame-pointer"
206 :     if test "$host_os" = "nextstep3"
207 :     then
208 :     LIBOBJS="$LIBOBJS termios.o"
209 :     fi
210 : pazsan 1.26 ;;
211 : anton 1.1 mips*)
212 : anton 1.34 machine=mips
213 : anton 1.7 #link text and data segment into the same 256M region!
214 : anton 1.49 AC_MSG_CHECKING([whether the linker accepts -T])
215 :     OLDLDFLAGS=$LDFLAGS
216 :     LDFLAGS="$LDFLAGS -Xlinker -T -Xlinker 10000000"
217 :     AC_TRY_LINK(,,ac_link_mips_t=yes,ac_link_mips_t=no)
218 :     test $ac_link_mips_t = yes||LDFLAGS=$OLDLDFLAGS
219 :     AC_MSG_RESULT($ac_link_mips_t)
220 :     test $ac_link_mips_t = yes||(echo cannot link text and data into same 256M region, using indirect threading; AC_DEFINE(INDIRECT_THREADED))
221 : anton 1.37 AC_MSG_CHECKING([whether the linker accepts -D])
222 :     OLDLDFLAGS=$LDFLAGS
223 : anton 1.49 LDFLAGS="$LDFLAGS -Xlinker -D -Xlinker 10400000"
224 : anton 1.37 AC_TRY_LINK(,,ac_link_mips_d=yes,ac_link_mips_d=no)
225 : anton 1.49 test $ac_link_mips_d = yes||LDFLAGS=$OLDLDFLAGS
226 : anton 1.37 AC_MSG_RESULT($ac_link_mips_d)
227 : anton 1.1 ;;
228 : pazsan 1.9 alpha*)
229 : anton 1.34 machine=alpha
230 : pazsan 1.9 ;;
231 : anton 1.31 power*)
232 : anton 1.34 machine=power
233 : anton 1.46 $srcdir/mkinstalldirs arch/power
234 : anton 1.36 AC_CHECK_FUNC(_sync_cache_range,true,LIBOBJS="$LIBOBJS ../arch/power/_sync_cache_range.o")
235 : anton 1.31 ;;
236 : anton 1.1 *)
237 :     echo "No direct threading support for $host_cpu, using indirect threading."
238 : anton 1.20 echo "Using a generic machine description."
239 : anton 1.1 echo "I'll assume that C floats and doubles are represented by IEEE single and"
240 :     echo "double numbers. If this is not so, SF@ etc. will not work correctly."
241 : anton 1.16 echo "FLUSH-ICACHE will do nothing, so END-CODE may not work properly!"
242 : anton 1.34 machine=generic
243 : anton 1.1 esac
244 : anton 1.10 AC_SUBST(host)
245 : pazsan 1.15 AC_SUBST(ENGINE_FLAGS)
246 : anton 1.1
247 : pazsan 1.39 case "$host_os" in
248 :     *win32)
249 :     EXE=".exe"
250 :     ;;
251 :     *)
252 :     EXE=""
253 :     ;;
254 :     esac
255 :     AC_SUBST(EXE)
256 :    
257 : anton 1.1 dnl Now a little support for DOS/DJGCC
258 : pazsan 1.30 AC_SUBST(GFORTH_EXE)
259 :     GFORTH_EXE=""
260 : anton 1.48 AC_SUBST(GFORTHFAST_EXE)
261 :     GFORTHFAST_EXE=""
262 : pazsan 1.30 AC_SUBST(GFORTHDITC_EXE)
263 :     GFORTHDITC_EXE=""
264 : anton 1.1
265 : anton 1.24 PATHSEP=":"
266 :     AC_SUBST(PATHSEP)
267 :     AC_DEFINE_UNQUOTED(PATHSEP,'$PATHSEP')
268 : anton 1.27
269 :     AC_SUBST(FORTHSIZES)
270 : anton 1.24
271 : anton 1.1 dnl copy commands for systems that don't have links
272 : pazsan 1.29 AC_SUBST(LINK_KERNL)
273 :     LINK_KERNL=""
274 : anton 1.1
275 :     #if test $host_os=dos
276 :     #then
277 :     # echo Configuring for DOS!!!
278 :     # MAKE_EXE="coff2exe gforth"
279 : pazsan 1.29 # LINK_KERNL='$(CP) kernl32l.fi kernel.fi'
280 : anton 1.1 #fi
281 :    
282 :     dnl the following macro produces a warning with autoconf-2.1
283 :     AC_C_BIGENDIAN
284 : pazsan 1.23 AC_SUBST(KERNEL)
285 : anton 1.1 dnl ac_cv_c_bigendian is an undocumented variable of autoconf-2.1
286 :     if test $ac_cv_c_bigendian = yes; then
287 :     bytesex=b
288 : pazsan 1.23 KERNEL="kernl16b.fi kernl16l.fi kernl32b.fi kernl32l.fi kernl64b.fi kernl64l.fi"
289 : anton 1.1 else
290 :     bytesex=l
291 : pazsan 1.23 KERNEL="kernl16l.fi kernl16b.fi kernl32l.fi kernl32b.fi kernl64l.fi kernl64b.fi"
292 : anton 1.1 fi
293 :    
294 :     dnl Checks for programs.
295 :     AC_PROG_LN_S
296 : anton 1.34 dnl AM_PROG_INSTALL #performed by AM_INIT_AUTOMAKE
297 : anton 1.1
298 :     dnl Checks for library functions
299 : anton 1.2 dnl This check is just for making later checks link with libm.
300 :     dnl using sin here is no good idea since it is built-into gcc and typechecked
301 :     AC_CHECK_LIB(m,asin)
302 : anton 1.31 AC_CHECK_LIB(dl,dlopen)
303 : pazsan 1.32 if test "$host_os" != "nextstep3"
304 :     then
305 :     AC_FUNC_MEMCMP
306 :     fi
307 : pazsan 1.25 AC_REPLACE_FUNCS(memmove strtoul pow10 strerror strsignal atanh)
308 : anton 1.44 AC_CHECK_FUNCS(dlopen sys_siglist)
309 : anton 1.19 AC_DECL_SYS_SIGLIST
310 : anton 1.34 AC_CHECK_FUNC(getopt_long,true,LIBOBJS="$LIBOBJS getopt.o getopt1.o")
311 : anton 1.11 AC_CHECK_FUNCS(rint expm1 log1p)
312 : anton 1.1 AC_REPLACE_FUNCS(ecvt)
313 :     dnl No check for select, because our replacement is no good under
314 :     dnl anything but DOS
315 : anton 1.28 AC_CHECK_HEADERS(sys/mman.h)
316 :     AC_CHECK_FUNCS(mmap sysconf getpagesize)
317 : anton 1.34 AM_PATH_LISPDIR
318 : anton 1.1
319 : pazsan 1.23 kernel_fi=kernl${wordsize}${bytesex}.fi
320 :     AC_SUBST(kernel_fi)
321 : jwilke 1.50
322 :     dnl replace srource directory by absolute value
323 :     if test $srcdir = "."; then srcdir=`pwd`
324 :     fi
325 : anton 1.8
326 : anton 1.34 AC_SUBST(machine)
327 :     dnl AC_LINK_FILES(arch/$machine,arch/machine) #no longer needed
328 : anton 1.31 AC_OUTPUT([
329 :     Makefile
330 : pazsan 1.45 Makedist
331 : anton 1.43 gforthmi
332 : anton 1.35 engine/Makefile
333 : anton 1.44 doc/version.texi ],
334 :     echo timestamp > stamp-h
335 : anton 1.43 chmod +x gforthmi
336 : anton 1.44 test -d kernel||mkdir kernel)
337 :    

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help