Reverted inappropriate merge in `gc.c'.
[bpt/guile.git] / configure.in
CommitLineData
777b022a
JB
1dnl configuration script for Guile
2dnl Process this file with autoconf to produce configure.
50848747 3dnl
a73256d0
KR
4
5define(GUILE_CONFIGURE_COPYRIGHT,[[
6
4f416616 7Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
a73256d0
KR
8
9This file is part of GUILE
10
11GUILE is free software; you can redistribute it and/or modify it
12under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2, or (at your
14option) any later version.
15
16GUILE is distributed in the hope that it will be useful, but
17WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with GUILE; see the file COPYING. If not, write to the
92205699
MV
23Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24Boston, MA 02110-1301, USA.
a73256d0
KR
25
26]])
50848747 27
a44e61ac 28AC_PREREQ(2.53)
237b3247 29
5ae51dad 30AC_INIT(m4_esyscmd(. ./GUILE-VERSION && echo -n ${PACKAGE}),
d9f71a07
LC
31 m4_esyscmd(. ./GUILE-VERSION && echo -n ${GUILE_VERSION}),
32 [bug-guile@gnu.org])
23f2b9a3 33AC_CONFIG_AUX_DIR([.])
5ae51dad
RB
34AC_CONFIG_SRCDIR(GUILE-VERSION)
35AM_INIT_AUTOMAKE([no-define])
36
a73256d0 37AC_COPYRIGHT(GUILE_CONFIGURE_COPYRIGHT)
8907576f 38AC_CONFIG_SRCDIR([GUILE-VERSION])
5ae51dad 39
2d26def0 40. $srcdir/GUILE-VERSION
5ae51dad 41
15ae1bee 42AM_MAINTAINER_MODE
9a52bc2a 43AM_CONFIG_HEADER([config.h])
a73256d0 44AH_TOP(/*GUILE_CONFIGURE_COPYRIGHT*/)
2d26def0 45
3a629497 46#--------------------------------------------------------------------
0e8a8468
MV
47#
48# Independent Subdirectories
49#
50#--------------------------------------------------------------------
51
52AC_CONFIG_SUBDIRS(guile-readline)
53
a6be66ed
RB
54#--------------------------------------------------------------------
55
56dnl Some more checks for Win32
57AC_CYGWIN
58AC_MINGW32
59AC_LIBTOOL_WIN32_DLL
60
61AC_PROG_INSTALL
62AC_PROG_CC
63AC_PROG_CPP
64AC_PROG_AWK
65
66AC_AIX
67AC_ISC_POSIX
68AC_MINIX
69
70AM_PROG_CC_STDC
71
72AC_LIBTOOL_DLOPEN
c78a96e0 73AC_PROG_LIBTOOL
a98dbc87
MV
74AC_CHECK_LIB([ltdl], [lt_dlinit], ,
75 [AC_MSG_ERROR([libltdl not found. See README.])])
c62a2bb9
MV
76
77AC_SUBST(DLPREOPEN)
a6be66ed
RB
78
79AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
80AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
81
d995da7f
NJ
82AM_PATH_LISPDIR
83
0e8a8468 84#--------------------------------------------------------------------
3a629497 85#
a6be66ed 86# User options (after above tests that may set default CFLAGS etc.)
3a629497
JB
87#
88#--------------------------------------------------------------------
86789f9b 89
bdcccc18
RB
90GUILE_ERROR_ON_WARNING="yes"
91
8afd1a2a
RB
92AC_ARG_ENABLE(error-on-warning,
93 [ --enable-error-on-warning treat compile warnings as errors],
94 [case "${enableval}" in
bdcccc18
RB
95 yes | y) GUILE_ERROR_ON_WARNING="yes" ;;
96 no | n) GUILE_ERROR_ON_WARNING="no" ;;
8afd1a2a
RB
97 *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
98 esac])
99
9a52bc2a 100SCM_I_GSC_GUILE_DEBUG_FREELIST=0
52b3923a 101AC_ARG_ENABLE(debug-freelist,
e73dd549 102 [ --enable-debug-freelist include garbage collector freelist debugging code],
9a52bc2a
RB
103 if test "$enable_debug_freelist" = y \
104 || test "$enable_debug_freelist" = yes; then
105 SCM_I_GSC_GUILE_DEBUG_FREELIST=1
52b3923a
GB
106 fi)
107
cf890744 108AC_ARG_ENABLE(debug-malloc,
e73dd549 109 [ --enable-debug-malloc include malloc debugging code],
cf890744 110 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
eede3dbc
RB
111 AC_DEFINE(GUILE_DEBUG_MALLOC, 1,
112 [Define this if you want to debug scm_must_malloc/realloc/free calls.])
cf890744
MD
113 fi)
114
9a52bc2a 115SCM_I_GSC_GUILE_DEBUG=0
62002dcb 116AC_ARG_ENABLE(guile-debug,
9a52bc2a
RB
117 [AC_HELP_STRING([--enable-guile-debug],
118 [include internal debugging functions])],
62002dcb 119 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
9a52bc2a 120 SCM_I_GSC_GUILE_DEBUG=1
62002dcb
MD
121 fi)
122
52cfc69b
GH
123AC_ARG_ENABLE(posix,
124 [ --disable-posix omit posix interfaces],,
125 enable_posix=yes)
126
127AC_ARG_ENABLE(networking,
dc914156 128 [ --disable-networking omit networking interfaces],,
52cfc69b
GH
129 enable_networking=yes)
130
131AC_ARG_ENABLE(regex,
132 [ --disable-regex omit regular expression interfaces],,
133 enable_regex=yes)
134
f5922e27
MV
135AC_ARG_ENABLE([discouraged],
136 AC_HELP_STRING([--disable-discouraged],[omit discouraged features]))
137
138if test "$enable_discouraged" = no; then
139 SCM_I_GSC_ENABLE_DISCOURAGED=0
140else
141 SCM_I_GSC_ENABLE_DISCOURAGED=1
142fi
143
9a52bc2a
RB
144AC_ARG_ENABLE([deprecated],
145 AC_HELP_STRING([--disable-deprecated],[omit deprecated features]))
eede3dbc 146
e73dd549 147if test "$enable_deprecated" = no; then
9a52bc2a 148 SCM_I_GSC_ENABLE_DEPRECATED=0
e73dd549
MV
149else
150 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
94a0d885
MV
151 warn_default=summary
152 elif test "$enable_deprecated" = shutup; then
153 warn_default=no
154 else
155 warn_default=$enable_deprecated
e73dd549 156 fi
9a52bc2a 157 SCM_I_GSC_ENABLE_DEPRECATED=1
eede3dbc
RB
158 AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default",
159 [Define this to control the default warning level for deprecated features.])
e73dd549
MV
160fi
161
3d1a89b9
NJ
162AC_ARG_ENABLE(elisp,
163 [ --disable-elisp omit Emacs Lisp support],,
164 enable_elisp=yes)
165
a44e61ac
MV
166#--------------------------------------------------------------------
167
4f6f9ae3
GH
168dnl Check for dynamic linking
169
170use_modules=yes
171AC_ARG_WITH(modules,
172[ --with-modules[=FILES] Add support for dynamic modules],
173use_modules="$withval")
174test -z "$use_modules" && use_modules=yes
175DLPREOPEN=
176if test "$use_modules" != no; then
4f6f9ae3
GH
177 if test "$use_modules" = yes; then
178 DLPREOPEN="-dlpreopen force"
179 else
180 DLPREOPEN="-export-dynamic"
181 for module in $use_modules; do
182 DLPREOPEN="$DLPREOPEN -dlopen $module"
183 done
184 fi
185fi
186
52cfc69b
GH
187dnl files which are destined for separate modules.
188
4f6f9ae3
GH
189if test "$use_modules" != no; then
190 AC_LIBOBJ([dynl])
191fi
192
52cfc69b 193if test "$enable_posix" = yes; then
eede3dbc
RB
194 AC_LIBOBJ([filesys])
195 AC_LIBOBJ([posix])
196 AC_DEFINE(HAVE_POSIX, 1,
197 [Define this if you want support for POSIX system calls in Guile.])
52cfc69b
GH
198fi
199
200if test "$enable_networking" = yes; then
eede3dbc
RB
201 AC_LIBOBJ([net_db])
202 AC_LIBOBJ([socket])
203 AC_DEFINE(HAVE_NETWORKING, 1,
204 [Define this if you want support for networking in Guile.])
52cfc69b
GH
205fi
206
cf890744 207if test "$enable_debug_malloc" = yes; then
eede3dbc 208 AC_LIBOBJ([debug-malloc])
cf890744
MD
209fi
210
3d1a89b9 211if test "$enable_elisp" = yes; then
9a52bc2a
RB
212 SCM_I_GSC_ENABLE_ELISP=1
213else
214 SCM_I_GSC_ENABLE_ELISP=0
3d1a89b9 215fi
9a5fa6e9 216AC_CHECK_LIB(uca, __uc_get_ar_bsp)
3d1a89b9 217
3a629497 218AC_C_CONST
5b079b46 219
9a52bc2a 220AC_C_INLINE
5bd732c9 221if test "$ac_cv_c_inline" != no; then
9a52bc2a
RB
222 SCM_I_GSC_C_INLINE="\"${ac_cv_c_inline}\""
223else
224 SCM_I_GSC_C_INLINE=NULL
5bd732c9 225fi
9a5fa6e9 226AC_CHECK_LIB(uca, __uc_get_ar_bsp)
5bd732c9 227
9a52bc2a
RB
228AC_C_BIGENDIAN
229
230AC_CHECK_SIZEOF(char)
231AC_CHECK_SIZEOF(unsigned char)
813b3dd4 232AC_CHECK_SIZEOF(short)
9a52bc2a 233AC_CHECK_SIZEOF(unsigned short)
9dec9737 234AC_CHECK_SIZEOF(int)
9a52bc2a 235AC_CHECK_SIZEOF(unsigned int)
9dec9737 236AC_CHECK_SIZEOF(long)
9a52bc2a 237AC_CHECK_SIZEOF(unsigned long)
813b3dd4 238AC_CHECK_SIZEOF(size_t)
813b3dd4 239AC_CHECK_SIZEOF(long long)
9a52bc2a 240AC_CHECK_SIZEOF(unsigned long long)
fcc5d734
SJ
241AC_CHECK_SIZEOF(__int64)
242AC_CHECK_SIZEOF(unsigned __int64)
1be6b49c 243AC_CHECK_SIZEOF(void *)
9a52bc2a
RB
244AC_CHECK_SIZEOF(intptr_t)
245AC_CHECK_SIZEOF(uintptr_t)
246AC_CHECK_SIZEOF(ptrdiff_t)
d20008c0 247AC_CHECK_SIZEOF(size_t)
4f416616 248AC_CHECK_SIZEOF(off_t)
1be6b49c 249
f3f70257
ML
250if test "$ac_cv_sizeof_long" -ne "$ac_cv_sizeof_void_p"; then
251 AC_MSG_ERROR(sizes of long and void* are not identical)
9dec9737 252fi
3a629497 253
c134fe9d 254if test "$ac_cv_sizeof_ptrdiff_t" -ne 0; then
9a52bc2a
RB
255 SCM_I_GSC_T_PTRDIFF='"ptrdiff_t"'
256else
257 SCM_I_GSC_T_PTRDIFF='"long"'
258fi
259AC_SUBST([SCM_I_GSC_T_PTRDIFF])
260
261AC_CHECK_HEADERS([stdint.h])
262AC_CHECK_HEADERS([inttypes.h])
263
d20008c0
MV
264AC_CHECK_SIZEOF(intmax_t)
265
9a52bc2a
RB
266SCM_I_GSC_NEEDS_STDINT_H=0
267SCM_I_GSC_NEEDS_INTTYPES_H=0
268
269### intptr and uintptr (try not to use inttypes if we don't have to)
270if test "$ac_cv_header_inttypes_h" = yes; then
271 if test "$ac_cv_sizeof_intptr_t" -eq 0; then
272 AC_CHECK_SIZEOF([intptr_t],,[#include <inttypes.h>
273#include <stdio.h>])
274 if test "$ac_cv_sizeof_intptr_t" -ne 0; then
275 SCM_I_GSC_NEEDS_INTTYPES_H=1
276 fi
277 fi
278 if test "$ac_cv_sizeof_uintptr_t" -eq 0; then
279 AC_CHECK_SIZEOF([uintptr_t],,[#include <inttypes.h>
280#include <stdio.h>])
281 if test "$ac_cv_sizeof_uintptr_t" -ne 0; then
282 SCM_I_GSC_NEEDS_INTTYPES_H=1
283 fi
284 fi
285fi
286
287### See what's provided by stdint.h
288if test "$ac_cv_header_stdint_h" = yes; then
289 AC_CHECK_TYPE([int8_t],[scm_stdint_has_int8=1],,[#include <stdint.h>])
290 AC_CHECK_TYPE([uint8_t],[scm_stdint_has_uint8=1],,[#include <stdint.h>])
291 AC_CHECK_TYPE([int16_t],[scm_stdint_has_int16=1],,[#include <stdint.h>])
292 AC_CHECK_TYPE([uint16_t],[scm_stdint_has_uint16=1],,[#include <stdint.h>])
293 AC_CHECK_TYPE([int32_t],[scm_stdint_has_int32=1],,[#include <stdint.h>])
294 AC_CHECK_TYPE([uint32_t],[scm_stdint_has_uint32=1],,[#include <stdint.h>])
295 AC_CHECK_TYPE([int64_t],[scm_stdint_has_int64=1],,[#include <stdint.h>])
296 AC_CHECK_TYPE([uint64_t],[scm_stdint_has_uint64=1],,[#include <stdint.h>])
eb1f89f6
MV
297 AC_CHECK_TYPE([intmax_t],[scm_stdint_has_intmax=1],,[#include <stdint.h>])
298 AC_CHECK_TYPE([uintmax_t],[scm_stdint_has_uintmax=1],,[#include <stdint.h>])
9a52bc2a
RB
299fi
300
301# so we don't get confused by the cache (wish there was a better way
302# to check particular headers for the same type...)
303
304unset ac_cv_type_int8_t
305unset ac_cv_type_uint8_t
306unset ac_cv_type_int16_t
307unset ac_cv_type_uint16_t
308unset ac_cv_type_int32_t
309unset ac_cv_type_uint32_t
310unset ac_cv_type_int64_t
311unset ac_cv_type_uint64_t
eb1f89f6
MV
312unset ac_cv_type_intmax_t
313unset ac_cv_type_uintmax_t
9a52bc2a
RB
314
315### See what's provided by inttypes.h
316if test "$ac_cv_header_inttypes_h" = yes; then
317 AC_CHECK_TYPE([int8_t],[scm_inttypes_has_int8=1],,[#include <inttypes.h>])
318 AC_CHECK_TYPE([uint8_t],[scm_inttypes_has_uint8=1],,[#include <inttypes.h>])
319 AC_CHECK_TYPE([int16_t],[scm_inttypes_has_int16=1],,[#include <inttypes.h>])
320 AC_CHECK_TYPE([uint16_t],[scm_inttypes_has_uint16=1],,[#include <inttypes.h>])
321 AC_CHECK_TYPE([int32_t],[scm_inttypes_has_int32=1],,[#include <inttypes.h>])
322 AC_CHECK_TYPE([uint32_t],[scm_inttypes_has_uint32=1],,[#include <inttypes.h>])
323 AC_CHECK_TYPE([int64_t],[scm_inttypes_has_int64=1],,[#include <inttypes.h>])
324 AC_CHECK_TYPE([uint64_t],[scm_inttypes_has_uint64=1],,[#include <inttypes.h>])
eb1f89f6
MV
325 AC_CHECK_TYPE([intmax_t],[scm_inttypes_has_intmax=1],,[#include <inttypes.h>])
326 AC_CHECK_TYPE([uintmax_t],[scm_inttypes_has_uintmax=1],,[#include <inttypes.h>])
9a52bc2a
RB
327fi
328
329# Try hard to find definitions for some required scm_t_*int* types.
330
331### Required type scm_t_int8
6aa84fdd 332if test "$scm_stdint_has_int8"; then
9a52bc2a
RB
333 SCM_I_GSC_T_INT8='"int8_t"'
334 SCM_I_GSC_NEEDS_STDINT_H=1
335elif test "$scm_inttypes_has_int8"; then
336 SCM_I_GSC_T_INT8='"int8_t"'
337 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
338elif test "$ac_cv_sizeof_char" -eq 1; then
339 SCM_I_GSC_T_INT8='"signed char"'
9a52bc2a
RB
340else
341 AC_MSG_ERROR([Can't find appropriate type for scm_t_int8.])
342fi
343AC_SUBST([SCM_I_GSC_T_INT8])
344
345### Required type scm_t_uint8
6aa84fdd 346if test "$scm_stdint_has_uint8"; then
9a52bc2a
RB
347 SCM_I_GSC_T_UINT8='"uint8_t"'
348 SCM_I_GSC_NEEDS_STDINT_H=1
349elif test "$scm_inttypes_has_uint8"; then
350 SCM_I_GSC_T_UINT8='"uint8_t"'
351 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
352elif test "$ac_cv_sizeof_unsigned_char" -eq 1; then
353 SCM_I_GSC_T_UINT8='"unsigned char"'
9a52bc2a
RB
354else
355 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint8.])
356fi
357AC_SUBST([SCM_I_GSC_T_UINT8])
9a52bc2a
RB
358
359### Required type scm_t_int16 (ANSI C says int or short might work)
6aa84fdd 360if test "$scm_stdint_has_int16"; then
9a52bc2a
RB
361 SCM_I_GSC_T_INT16='"int16_t"'
362 SCM_I_GSC_NEEDS_STDINT_H=1
363elif test "$scm_inttypes_has_int16"; then
364 SCM_I_GSC_T_INT16='"int16_t"'
365 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
366elif test "$ac_cv_sizeof_int" -eq 2; then
367 SCM_I_GSC_T_INT16='"int"'
6aa84fdd
MV
368elif test "$ac_cv_sizeof_short" -eq 2; then
369 SCM_I_GSC_T_INT16='"short"'
9a52bc2a
RB
370else
371 AC_MSG_ERROR([Can't find appropriate type for scm_t_int16.])
372fi
373AC_SUBST([SCM_I_GSC_T_INT16])
374
375### Required type scm_t_uint16 (ANSI C says int or short might work)
6aa84fdd 376if test "$scm_stdint_has_uint16"; then
9a52bc2a
RB
377 SCM_I_GSC_T_UINT16='"uint16_t"'
378 SCM_I_GSC_NEEDS_STDINT_H=1
379elif test "$scm_inttypes_has_uint16"; then
380 SCM_I_GSC_T_UINT16='"uint16_t"'
381 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
382elif test "$ac_cv_sizeof_unsigned_int" -eq 2; then
383 SCM_I_GSC_T_UINT16='"unsigned int"'
6aa84fdd
MV
384elif test "$ac_cv_sizeof_unsigned_short" -eq 2; then
385 SCM_I_GSC_T_UINT16='"unsigned short"'
9a52bc2a
RB
386else
387 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint16.])
388fi
389AC_SUBST([SCM_I_GSC_T_UINT16])
390
391
392### Required type scm_t_int32 (ANSI C says int, short, or long might work)
6aa84fdd 393if test "$scm_stdint_has_int32"; then
9a52bc2a
RB
394 SCM_I_GSC_T_INT32='"int32_t"'
395 SCM_I_GSC_NEEDS_STDINT_H=1
396elif test "$scm_inttypes_has_int32"; then
397 SCM_I_GSC_T_INT32='"int32_t"'
398 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
399elif test "$ac_cv_sizeof_int" -eq 4; then
400 SCM_I_GSC_T_INT32='"int"'
6aa84fdd
MV
401elif test "$ac_cv_sizeof_long" -eq 4; then
402 SCM_I_GSC_T_INT32='"long"'
6aa84fdd
MV
403elif test "$ac_cv_sizeof_short" -eq 4; then
404 SCM_I_GSC_T_INT32='"short"'
9a52bc2a
RB
405else
406 AC_MSG_ERROR([Can't find appropriate type for scm_t_int32.])
407fi
408AC_SUBST([SCM_I_GSC_T_INT32])
409
410### Required type scm_t_uint32 (ANSI C says int, short, or long might work)
6aa84fdd 411if test "$scm_stdint_has_uint32"; then
9a52bc2a
RB
412 SCM_I_GSC_T_UINT32='"uint32_t"'
413 SCM_I_GSC_NEEDS_STDINT_H=1
414elif test "$scm_inttypes_has_uint32"; then
415 SCM_I_GSC_T_UINT32='"uint32_t"'
416 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
417elif test "$ac_cv_sizeof_unsigned_int" -eq 4; then
418 SCM_I_GSC_T_UINT32='"unsigned int"'
6aa84fdd
MV
419elif test "$ac_cv_sizeof_unsigned_long" -eq 4; then
420 SCM_I_GSC_T_UINT32='"unsigned long"'
6aa84fdd
MV
421elif test "$ac_cv_sizeof_unsigned_short" -eq 4; then
422 SCM_I_GSC_T_UINT32='"unsigned short"'
9a52bc2a
RB
423else
424 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint32.])
425fi
426AC_SUBST([SCM_I_GSC_T_UINT32])
427
a6be66ed 428### Optional type scm_t_int64 (ANSI C says int, short, or long might work)
fcc5d734 429### Also try 'long long' and '__int64' if we have it.
9a52bc2a 430SCM_I_GSC_T_INT64=0
6aa84fdd
MV
431if test "$scm_stdint_has_int64"; then
432 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
433 SCM_I_GSC_NEEDS_STDINT_H=1
434elif test "$scm_inttypes_has_int64"; then
435 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
436 SCM_I_GSC_NEEDS_INTTYPES_H=1
437elif test "$ac_cv_sizeof_int" -eq 8; then
9a52bc2a
RB
438 SCM_I_GSC_T_INT64='"int"'
439elif test "$ac_cv_sizeof_long" -eq 8; then
440 SCM_I_GSC_T_INT64='"long"'
441elif test "$ac_cv_sizeof_short" -eq 8; then
442 SCM_I_GSC_T_INT64='"short"'
443elif test "$ac_cv_sizeof_long_long" -eq 8; then
444 SCM_I_GSC_T_INT64='"long long"'
fcc5d734
SJ
445elif test "$ac_cv_sizeof___int64" -eq 8; then
446 SCM_I_GSC_T_INT64='"__int64"'
9a52bc2a
RB
447else
448 AC_MSG_ERROR([Can't find appropriate type for scm_t_int64.])
449fi
450AC_SUBST([SCM_I_GSC_T_INT64])
6aa84fdd 451
9a52bc2a 452
a6be66ed 453### Optional type scm_t_uint64 (ANSI C says int, short, or long might work)
fcc5d734 454### Also try 'long long' and '__int64' if we have it.
9a52bc2a 455SCM_I_GSC_T_UINT64=0
6aa84fdd
MV
456if test "$scm_stdint_has_uint64"; then
457 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
458 SCM_I_GSC_NEEDS_STDINT_H=1
459elif test "$scm_inttypes_has_uint64"; then
460 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
461 SCM_I_GSC_NEEDS_INTTYPES_H=1
462elif test "$ac_cv_sizeof_unsigned_int" -eq 8; then
9a52bc2a
RB
463 SCM_I_GSC_T_UINT64='"unsigned int"'
464elif test "$ac_cv_sizeof_unsigned_long" -eq 8; then
465 SCM_I_GSC_T_UINT64='"unsigned long"'
466elif test "$ac_cv_sizeof_unsigned_short" -eq 8; then
467 SCM_I_GSC_T_UINT64='"unsigned short"'
468elif test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then
469 SCM_I_GSC_T_UINT64='"unsigned long long"'
fcc5d734
SJ
470elif test "$ac_cv_sizeof_unsigned___int64" -eq 8; then
471 SCM_I_GSC_T_UINT64='"unsigned __int64"'
9a52bc2a
RB
472else
473 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint64.])
474fi
475AC_SUBST([SCM_I_GSC_T_UINT64])
476
eb1f89f6
MV
477### Required type scm_t_intmax
478###
479### We try 'intmax_t', '__int64', 'long long' in this order. When
480### none of them is available, we use 'long'.
481###
482SCM_I_GSC_T_INTMAX=0
483if test "$scm_stdint_has_intmax"; then
484 SCM_I_GSC_T_INTMAX='"intmax_t"'
485 SCM_I_GSC_NEEDS_STDINT_H=1
486elif test "$scm_inttypes_has_intmax"; then
487 SCM_I_GSC_T_INTMAX='"intmax_t"'
488 SCM_I_GSC_NEEDS_INTTYPES_H=1
489elif test "$ac_cv_sizeof___int64" -ne 0; then
490 SCM_I_GSC_T_INTMAX='"__int64"'
491elif test "$ac_cv_sizeof_long_long" -ne 0; then
492 SCM_I_GSC_T_INTMAX='"long long"'
493else
494 SCM_I_GSC_T_INTMAX='"long"'
495fi
496AC_SUBST([SCM_I_GSC_T_INTMAX])
497
498### Required type scm_t_uintmax
499###
500### We try 'uintmax_t', 'unsigned __int64', 'unsigned long long' in
501### this order. When none of them is available, we use 'unsigned long'.
502###
503SCM_I_GSC_T_UINTMAX=0
504if test "$scm_stdint_has_uintmax"; then
505 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
506 SCM_I_GSC_NEEDS_STDINT_H=1
507elif test "$scm_inttypes_has_uintmax"; then
508 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
509 SCM_I_GSC_NEEDS_INTTYPES_H=1
510elif test "$ac_cv_sizeof_unsigned___int64" -ne 0; then
511 SCM_I_GSC_T_UINTMAX='"unsigned __int64"'
512elif test "$ac_cv_sizeof_unsigned_long_long" -ne 0; then
513 SCM_I_GSC_T_UINTMAX='"unsigned long long"'
514else
515 SCM_I_GSC_T_UINTMAX='"unsigned long"'
516fi
517AC_SUBST([SCM_I_GSC_T_UINTMAX])
518
9a52bc2a
RB
519
520AC_SUBST([SCM_I_GSC_NEEDS_STDINT_H])
521AC_SUBST([SCM_I_GSC_NEEDS_INTTYPES_H])
522
3a629497
JB
523AC_HEADER_STDC
524AC_HEADER_DIRENT
525AC_HEADER_TIME
526AC_HEADER_SYS_WAIT
bdcccc18 527
63177e46 528# Reasons for testing:
8ab3d8a0 529# complex.h - new in C99
63177e46
KR
530# fenv.h - available in C99, but not older systems
531#
8ab3d8a0 532AC_CHECK_HEADERS([complex.h fenv.h io.h libc.h limits.h malloc.h memory.h string.h \
bdcccc18
RB
533regex.h rxposix.h rx/rxposix.h sys/dir.h sys/ioctl.h sys/select.h \
534sys/time.h sys/timeb.h sys/times.h sys/stdtypes.h sys/types.h \
535sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h \
536direct.h])
537
8ab3d8a0
KR
538# "complex double" is new in C99, and "complex" is only a keyword if
539# <complex.h> is included
540AC_CHECK_TYPES(complex double,,,
541[#if HAVE_COMPLEX_H
542#include <complex.h>
543#endif])
544
4f416616
KR
545# On MacOS X <sys/socklen.h> contains socklen_t, so must include that
546# when testing.
547AC_CHECK_TYPE(socklen_t, ,
548 [AC_DEFINE_UNQUOTED(socklen_t, int,
549 [Define to `int' if <sys/socket.h> does not define.])],
550 [#if HAVE_SYS_TYPES_H
551#include <sys/types.h>
552#endif
553#include <sys/socket.h>
554])
555AC_CHECK_TYPE(struct ip_mreq)
556
3a629497
JB
557GUILE_HEADER_LIBC_WITH_UNISTD
558
559AC_TYPE_GETGROUPS
560AC_TYPE_SIGNAL
561AC_TYPE_MODE_T
562
2e945bcc
SJ
563if test $MINGW32 = no; then
564 AC_CHECK_LIB(m, main)
565fi
4c787b52 566AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
567if test $ac_cv_func_gethostbyname = no; then
568 AC_CHECK_LIB(nsl, gethostbyname)
569fi
39e8f371 570
4c787b52 571AC_CHECK_FUNCS(connect)
5852c051
JB
572if test $ac_cv_func_connect = no; then
573 AC_CHECK_LIB(socket, connect)
574fi
5ee74cec 575
f9e5e096
MV
576dnl
577dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
578dnl
579EXTRA_DEFS=""
f9e5e096 580if test "$MINGW32" = "yes" ; then
6812c28f 581 AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
f9e5e096
MV
582 [Define if you have the <winsock2.h> header file.])])
583 AC_CHECK_LIB(ws2_32, main)
eede3dbc
RB
584 AC_LIBOBJ([win32-uname])
585 AC_LIBOBJ([win32-dirent])
b4e15479 586 if test "$enable_networking" = yes ; then
eede3dbc 587 AC_LIBOBJ([win32-socket])
b4e15479
SJ
588 fi
589 if test "$enable_shared" = yes ; then
8f99e3f3
SJ
590 EXTRA_DEFS="-DSCM_IMPORT"
591 AC_DEFINE(USE_DLL_IMPORT, 1,
592 [Define if you need additional CPP macros on Win32 platforms.])
f9e5e096
MV
593 fi
594fi
595AC_SUBST(EXTRA_DEFS)
f9e5e096 596
ef73a2a0
KR
597# Reasons for testing:
598# crt_externs.h - Darwin specific
599#
600AC_CHECK_HEADERS([assert.h crt_externs.h])
bdcccc18 601
ef73a2a0 602# Reasons for testing:
1df72834
KR
603# DINFINITY - OSF specific
604# DQNAN - OSF specific
605# (DINFINITY and DQNAN are actually global variables, not functions)
8ab3d8a0
KR
606# chsize - an MS-DOS-ism, found in mingw
607# clog10 - not in mingw (though others like clog and csqrt are)
63177e46 608# fesetround - available in C99, but not older systems
8ab3d8a0
KR
609# ftruncate - posix, but probably not older systems (current mingw
610# has it as an inline for chsize)
23f2b9a3 611# ioctl - not in mingw.
c9d1dcc0 612# gmtime_r - recent posix, not on old systems
66ec83c9 613# readdir_r - recent posix, not on old systems
4f416616 614# stat64 - SuS largefile stuff, not on old systems
6b01eac9 615# sysconf - not on old systems
8ab3d8a0 616# truncate - not in mingw
a17d2654 617# isblank - available as a GNU extension or in C99
ef73a2a0 618# _NSGetEnviron - Darwin specific
b89c4943 619# strcoll_l, newlocale - GNU extensions (glibc)
ef73a2a0 620#
b89c4943 621AC_CHECK_FUNCS([DINFINITY DQNAN chsize clog10 ctermid fesetround ftime ftruncate fchown getcwd geteuid gettimeofday gmtime_r ioctl lstat mkdir mknod nice readdir_r readlink rename rmdir select setegid seteuid setlocale setpgid setsid sigaction siginterrupt stat64 strftime strptime symlink sync sysconf tcgetpgrp tcsetpgrp times uname waitpid strdup system usleep atexit on_exit chown link fcntl ttyname getpwent getgrent kill getppid getpgrp fork setitimer getitimer strchr strcmp index bcopy memcpy rindex truncate unsetenv isblank _NSGetEnviron strcoll strcoll_l newlocale])
64e121dc 622
6b01eac9
KR
623# Reasons for testing:
624# netdb.h - not in mingw
625# sys/param.h - not in mingw
8ab3d8a0
KR
626# sethostname - the function itself check because it's not in mingw,
627# the DECL is checked because Solaris 10 doens't have in any header
6b01eac9
KR
628#
629AC_CHECK_HEADERS(crypt.h netdb.h sys/param.h sys/resource.h sys/file.h)
94e6d793 630AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
8ab3d8a0 631AC_CHECK_DECLS([sethostname])
63271ac5
KR
632
633# crypt() may or may not be available, for instance in some countries there
634# are restrictions on cryptography.
635#
636# crypt() might be in libc (eg. OpenBSD), or it might be in a separate
637# -lcrypt library (eg. Debian GNU/Linux).
638#
639# On HP-UX 11, crypt() is in libc and there's a dummy libcrypt.a. We must
640# be careful to avoid -lcrypt in this case, since libtool will see there's
641# only a static libcrypt and decide to build only a static libguile.
642#
643# AC_SEARCH_LIBS lets us add -lcrypt to LIBS only if crypt() is not in the
644# libraries already in that list.
645#
646AC_SEARCH_LIBS(crypt, crypt,
647 [AC_DEFINE(HAVE_CRYPT,1,
648 [Define to 1 if you have the `crypt' function.])])
94e6d793 649
8ab3d8a0
KR
650# glibc 2.3.6 (circa 2006) and various prior versions had a bug where
651# csqrt(-i) returned a negative real part, when it should be positive
652# for the principal root.
653#
654if test "$ac_cv_type_complex_double" = yes; then
655 AC_CACHE_CHECK([whether csqrt is usable],
656 guile_cv_use_csqrt,
657 [AC_TRY_RUN([
658#include <complex.h>
659/* "volatile" is meant to prevent gcc from calculating the sqrt as a
660 constant, we want to test libc. */
661volatile complex double z = - _Complex_I;
662int
663main (void)
664{
665 z = csqrt (z);
666 if (creal (z) > 0.0)
667 return 0; /* good */
668 else
669 return 1; /* bad */
670}],
671 [guile_cv_use_csqrt=yes],
672 [guile_cv_use_csqrt="no, glibc 2.3 bug"],
673 [guile_cv_use_csqrt="yes, hopefully (cross-compiling)"])])
674 case $guile_cv_use_csqrt in
675 yes*)
676 AC_DEFINE(HAVE_USABLE_CSQRT, 1, [Define to 1 if csqrt is bug-free])
677 ;;
678 esac
679fi
680
681
a6be66ed
RB
682dnl GMP tests
683AC_CHECK_LIB([gmp], [__gmpz_init], ,
a98dbc87 684 [AC_MSG_ERROR([GNU MP not found, see README])])
a6be66ed 685
9f1555fe
MV
686# mpz_import is a macro so we need to include <gmp.h>
687AC_TRY_LINK([#include <gmp.h>],
688 [mpz_import (0, 0, 0, 0, 0, 0, 0);] , ,
a98dbc87 689 [AC_MSG_ERROR([At least GNU MP 4.1 is required, see README])])
9f1555fe 690
83cd507c 691dnl i18n tests
b6540274
MV
692#AC_CHECK_HEADERS([libintl.h])
693#AC_CHECK_FUNCS(gettext)
694#if test $ac_cv_func_gettext = no; then
695# AC_CHECK_LIB(intl, gettext)
696#fi
697#AC_CHECK_FUNCS([bindtextdomain textdomain])
698AM_GNU_GETTEXT([external], [need-ngettext])
83cd507c 699
777b022a
JB
700### Some systems don't declare some functions. On such systems, we
701### need to at least provide our own K&R-style declarations.
702
703### GUILE_FUNC_DECLARED(function, headerfile)
704
705### Check for a declaration of FUNCTION in HEADERFILE; if it is
706### not there, #define MISSING_FUNCTION_DECL.
d70e0619 707AC_DEFUN([GUILE_FUNC_DECLARED], [
fc342a63 708 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 709 AC_EGREP_HEADER($1, $2,
01e5e07e 710 guile_cv_func_$1_declared=yes,
fc342a63
JB
711 guile_cv_func_$1_declared=no))
712 if test [x$guile_cv_func_]$1[_declared] = xno; then
eede3dbc
RB
713 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL], 1,
714 [Define if the operating system supplies $1 without declaring it.])
777b022a
JB
715 fi
716])
717
c31bfb85 718GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 719GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 720
0777022d
KR
721AC_CHECK_DECLS([strptime],,,
722[#define _GNU_SOURCE /* ask glibc to give strptime prototype */
723#include <time.h>])
724
da753252
JB
725### On some systems usleep has no return value. If it does have one,
726### we'd like to return it; otherwise, we'll fake it.
fc342a63 727AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
c43f86c1 728 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
4874dfc8 729 unistd.h,
fc342a63
JB
730 [guile_cv_func_usleep_return_type=void],
731 [guile_cv_func_usleep_return_type=int])])
732case "$guile_cv_func_usleep_return_type" in
733 "void" )
eede3dbc
RB
734 AC_DEFINE(USLEEP_RETURNS_VOID, 1,
735 [Define if the system headers declare usleep to return void.])
fc342a63
JB
736 ;;
737esac
738
da88f0cb
JB
739AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
740if test -n "$have_sys_un_h" ; then
eede3dbc
RB
741 AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS, 1,
742 [Define if the system supports Unix-domain (file-domain) sockets.])
da88f0cb
JB
743fi
744
d707b9df 745AC_CHECK_FUNCS(socketpair getgroups setgroups setpwent pause tzset)
da88f0cb 746
219a5a5b
JB
747AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
748 setnetent getnetent endnetent dnl
749 setprotoent getprotoent endprotoent dnl
750 setservent getservent endservent dnl
5c11cc9d 751 getnetbyaddr getnetbyname dnl
2a0ef8b7
GH
752 inet_lnaof inet_makeaddr inet_netof hstrerror dnl
753 inet_pton inet_ntop)
da88f0cb 754
feef329e
KR
755# struct sockaddr field sin_len is only present on BSD systems.
756# On 4.4BSD apparently a #define SIN_LEN exists, but on other BSD systems
757# (eg. FreeBSD 4.9) it doesn't and we must use this configure check
758AC_CHECK_MEMBERS([struct sockaddr.sin_len],,,
759[#ifdef HAVE_SYS_TYPES_H
760#include <sys/types.h>
761#endif
762#include <netinet/in.h>])
763
d19c9767 764AC_MSG_CHECKING(for __libc_stack_end)
2e945bcc 765AC_CACHE_VAL(guile_cv_have_libc_stack_end,
c89363e6
MV
766[AC_TRY_LINK([#include <stdio.h>
767extern char *__libc_stack_end;],
768 [printf("%p", (char*) __libc_stack_end);],
2e945bcc
SJ
769 guile_cv_have_libc_stack_end=yes,
770 guile_cv_have_libc_stack_end=no)])
771AC_MSG_RESULT($guile_cv_have_libc_stack_end)
772
773if test $guile_cv_have_libc_stack_end = yes; then
d19c9767
MV
774 AC_DEFINE(HAVE_LIBC_STACK_END, 1,
775 [Define if you have the __libc_stack_end variable.])
776fi
777
08f980a4
GH
778dnl Some systems do not declare this. Some systems do declare it, as a
779dnl macro. With cygwin it may be in a DLL.
780
781AC_MSG_CHECKING(whether netdb.h declares h_errno)
782AC_CACHE_VAL(guile_cv_have_h_errno,
783[AC_TRY_COMPILE([#include <netdb.h>],
784[int a = h_errno;],
785guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])
786AC_MSG_RESULT($guile_cv_have_h_errno)
787if test $guile_cv_have_h_errno = yes; then
eede3dbc 788 AC_DEFINE(HAVE_H_ERRNO, 1, [Define if h_errno is declared in netdb.h.])
08f980a4 789fi
da88f0cb 790
4f522b6f 791AC_MSG_CHECKING(whether uint32_t is defined)
c5316ea3 792AC_CACHE_VAL(guile_cv_have_uint32_t,
4f522b6f 793 [AC_TRY_COMPILE([#include <sys/types.h>
af68e5e5
SJ
794 #if HAVE_STDINT_H
795 #include <stdint.h>
796 #endif
797 #ifndef __MINGW32__
798 #include <netdb.h>
799 #endif],
4f522b6f
GH
800 [uint32_t a;],
801 guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
c5316ea3
GH
802AC_MSG_RESULT($guile_cv_have_uint32_t)
803if test $guile_cv_have_uint32_t = yes; then
eede3dbc
RB
804 AC_DEFINE(HAVE_UINT32_T, 1,
805 [Define if uint32_t typedef is defined when netdb.h is include.])
c5316ea3
GH
806fi
807
018a53a1
GH
808AC_MSG_CHECKING(for working IPv6 support)
809AC_CACHE_VAL(guile_cv_have_ipv6,
8f16fe5a
MV
810[AC_TRY_COMPILE([
811#ifdef HAVE_SYS_TYPES_H
812#include <sys/types.h>
813#endif
814#include <netinet/in.h>
b6f04d92 815#include <sys/socket.h>],
018a53a1
GH
816[struct sockaddr_in6 a; a.sin6_family = AF_INET6;],
817guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])
818AC_MSG_RESULT($guile_cv_have_ipv6)
819if test $guile_cv_have_ipv6 = yes; then
eede3dbc 820 AC_DEFINE(HAVE_IPV6, 1, [Define if you want support for IPv6.])
018a53a1
GH
821fi
822
67641981
GH
823# included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
824AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
825AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
8f16fe5a
MV
826[AC_TRY_COMPILE([
827#ifdef HAVE_SYS_TYPES_H
828#include <sys/types.h>
829#endif
830#include <netinet/in.h>],
67641981
GH
831[struct sockaddr_in6 sok; sok.sin6_scope_id = 0;],
832guile_cv_have_sin6_scope_id=yes, guile_cv_have_sin6_scope_id=no)])
833AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
834if test $guile_cv_have_sin6_scope_id = yes; then
eede3dbc
RB
835 AC_DEFINE(HAVE_SIN6_SCOPE_ID, 1,
836 [Define this if your IPv6 has sin6_scope_id in sockaddr_in6 struct.])
67641981
GH
837fi
838
feef329e
KR
839# struct sockaddr_in6 field sin_len is only present on BSD systems
840AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_len],,,
841[#ifdef HAVE_SYS_TYPES_H
842#include <sys/types.h>
843#endif
844#include <netinet/in.h>])
845
38c1d3c4
GH
846AC_MSG_CHECKING(whether localtime caches TZ)
847AC_CACHE_VAL(guile_cv_localtime_cache,
848[if test x$ac_cv_func_tzset = xyes; then
849AC_TRY_RUN([#include <time.h>
850#if STDC_HEADERS
851# include <stdlib.h>
852#endif
853extern char **environ;
854unset_TZ ()
855{
856 char **from, **to;
857 for (to = from = environ; (*to = *from); from++)
858 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
859 to++;
860}
861char TZ_GMT0[] = "TZ=GMT0";
862char TZ_PST8[] = "TZ=PST8";
863main()
864{
865 time_t now = time ((time_t *) 0);
866 int hour_GMT0, hour_unset;
867 if (putenv (TZ_GMT0) != 0)
868 exit (1);
869 hour_GMT0 = localtime (&now)->tm_hour;
870 unset_TZ ();
871 hour_unset = localtime (&now)->tm_hour;
872 if (putenv (TZ_PST8) != 0)
873 exit (1);
874 if (localtime (&now)->tm_hour == hour_GMT0)
875 exit (1);
876 unset_TZ ();
877 if (localtime (&now)->tm_hour != hour_unset)
878 exit (1);
879 exit (0);
880}], guile_cv_localtime_cache=no, guile_cv_localtime_cache=yes,
881[# If we have tzset, assume the worst when cross-compiling.
882guile_cv_localtime_cache=yes])
883else
884 # If we lack tzset, report that localtime does not cache TZ,
885 # since we can't invalidate the cache if we don't have tzset.
886 guile_cv_localtime_cache=no
887fi])dnl
888AC_MSG_RESULT($guile_cv_localtime_cache)
889if test $guile_cv_localtime_cache = yes; then
eede3dbc 890 AC_DEFINE(LOCALTIME_CACHE, 1, [Define if localtime caches the TZ setting.])
38c1d3c4
GH
891fi
892
7ee92fce
GH
893dnl Test whether system calls are restartable by default on the
894dnl current system. If they are not, we put a loop around every system
895dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
896dnl change from the default behaviour. On the other hand, if signals
897dnl are restartable then the loop is not installed and when libguile
898dnl initialises it also resets the behaviour of each signal to cause a
899dnl restart (in case a different runtime had a different default
900dnl behaviour for some reason: e.g., different versions of linux seem
901dnl to behave differently.)
902
08b8c694 903AC_SYS_RESTARTABLE_SYSCALLS
e1a191a8 904
52cfc69b
GH
905if test "$enable_regex" = yes; then
906 if test "$ac_cv_header_regex_h" = yes ||
907 test "$ac_cv_header_rxposix_h" = yes ||
908 test "$ac_cv_header_rx_rxposix_h" = yes; then
eede3dbc 909 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [AC_LIBOBJ([regex-posix])],
52cfc69b 910 [AC_CHECK_LIB(rx, main)
eede3dbc 911 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [AC_LIBOBJ([regex-posix])],
f9e5e096 912 [AC_CHECK_LIB(regex, main)
eede3dbc 913 GUILE_NAMED_CHECK_FUNC(regcomp, regex, [AC_LIBOBJ([regex-posix])])])]
52cfc69b
GH
914 )
915 dnl The following should not be necessary, but for some reason
916 dnl autoheader misses it if we don't include it!
917 if test "$ac_cv_func_regcomp_norx" = yes ||
f9e5e096 918 test "$ac_cv_func_regcomp_regex" = yes ||
52cfc69b 919 test "$ac_cv_func_regcomp_rx" = yes; then
eede3dbc
RB
920 AC_DEFINE(HAVE_REGCOMP, 1,
921 [This is included as part of a workaround for a autoheader bug.])
52cfc69b
GH
922 fi
923 fi
da88f0cb 924fi
8e1bfcd0 925
5bbfbd1e 926AC_REPLACE_FUNCS(inet_aton putenv strerror memmove mkstemp)
3a629497 927
594e69b7
MV
928AC_CHECK_HEADERS(floatingpoint.h ieeefp.h nan.h)
929
21b860c8
KR
930# Reasons for testing:
931# asinh, acosh, atanh, trunc - C99 standard, generally not available on
932# older systems
933# sincos - GLIBC extension
9af31eed 934#
8ab3d8a0 935AC_CHECK_FUNCS(asinh acosh atanh copysign finite sincos trunc)
4d0bfea1
KR
936
937# C99 specifies isinf and isnan as macros.
938# HP-UX provides only macros, no functions.
c80bab35
KR
939# glibc 2.3.2 provides both macros and functions.
940# IRIX 6.5 and Solaris 8 only provide functions.
4d0bfea1 941#
c80bab35
KR
942# The following tests detect isinf and isnan either as functions or as
943# macros from <math.h>. Plain AC_CHECK_FUNCS is insufficient, it doesn't
944# use <math.h> so doesn't detect on macro-only systems like HP-UX.
4d0bfea1
KR
945#
946AC_MSG_CHECKING([for isinf])
947AC_LINK_IFELSE(
948[#include <math.h>
949int main () { return (isinf(0.0) != 0); }],
950 [AC_MSG_RESULT([yes])
951 AC_DEFINE(HAVE_ISINF, 1,
952 [Define to 1 if you have the `isinf' macro or function.])],
953 [AC_MSG_RESULT([no])])
954AC_MSG_CHECKING([for isnan])
955AC_LINK_IFELSE(
956[#include <math.h>
957int main () { return (isnan(0.0) != 0); }],
958 [AC_MSG_RESULT([yes])
959 AC_DEFINE(HAVE_ISNAN, 1,
960 [Define to 1 if you have the `isnan' macro or function.])],
961 [AC_MSG_RESULT([no])])
594e69b7 962
31e4c69e
MV
963# We must have a proper stack-using alloca in order for stack-copying
964# continuations to work properly. If we don't find a native one,
965# abort.
966
3a629497 967AC_FUNC_ALLOCA
fb2de91a
RB
968if test "$ALLOCA" = "alloca.o"
969then
31e4c69e 970 AC_ERROR([No native alloca found.])
fb2de91a 971fi
3a629497 972
23f2b9a3
KR
973# Reasons for checking:
974#
975# st_rdev
976# st_blksize
977# st_blocks not in mingw
8ab3d8a0 978# tm_gmtoff BSD+GNU, not in C99
23f2b9a3
KR
979#
980# Note AC_STRUCT_ST_BLOCKS is not used here because we don't want the
981# AC_LIBOBJ(fileblocks) replacement which that macro gives.
982#
983AC_CHECK_MEMBERS([struct stat.st_rdev, struct stat.st_blksize, struct stat.st_blocks])
fd02f2ad 984
3a629497 985AC_STRUCT_TIMEZONE
8ab3d8a0
KR
986AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,
987[#include <time.h>
988#ifdef TIME_WITH_SYS_TIME
989# include <sys/time.h>
990# include <time.h>
991#else
992# if HAVE_SYS_TIME_H
993# include <sys/time.h>
994# else
995# include <time.h>
996# endif
997#endif
998])
3a629497
JB
999GUILE_STRUCT_UTIMBUF
1000
8ab3d8a0 1001
3a629497
JB
1002#--------------------------------------------------------------------
1003#
1004# Which way does the stack grow?
1005#
1006#--------------------------------------------------------------------
1007
9a52bc2a 1008SCM_I_GSC_STACK_GROWS_UP=0
3a629497
JB
1009AC_TRY_RUN(aux (l) unsigned long l;
1010 { int x; exit (l >= ((unsigned long)&x)); }
01e5e07e 1011 main () { int q; aux((unsigned long)&q); },
d4628c57 1012 [SCM_I_GSC_STACK_GROWS_UP=1],
eede3dbc 1013 [],
9a52bc2a 1014 [AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h)])
eede3dbc 1015
26224b3f
LC
1016#--------------------------------------------------------------------
1017#
1018# Boehm's GC library
1019#
1020#--------------------------------------------------------------------
1021AC_CHECK_LIB([gc], [GC_collect_a_little],
1022 [LIBS="-lgc $LIBS"],
1023 [AC_MSG_ERROR([`libgc' (Boehm's GC library) not found.])])
1024AC_CHECK_HEADER([gc/gc.h], [],
1025 [AC_MSG_ERROR([`libgc' (Boehm's GC library) header files not found.])])
1026
1027
a9e0a8af
KR
1028AC_CHECK_SIZEOF(float)
1029if test "$ac_cv_sizeof_float" -le "$ac_cv_sizeof_long"; then
1030 AC_DEFINE(SCM_SINGLES, 1,
1031 [Define this if floats are the same size as longs.])
1032fi
3a629497
JB
1033
1034AC_MSG_CHECKING(for struct linger)
1035AC_CACHE_VAL(scm_cv_struct_linger,
1036 AC_TRY_COMPILE([
1037#include <sys/types.h>
1038#include <sys/socket.h>],
1039 [struct linger lgr; lgr.l_linger = 100],
1040 scm_cv_struct_linger="yes",
1041 scm_cv_struct_linger="no"))
1042AC_MSG_RESULT($scm_cv_struct_linger)
1043if test $scm_cv_struct_linger = yes; then
eede3dbc
RB
1044 AC_DEFINE(HAVE_STRUCT_LINGER, 1,
1045 [Define this if your system defines struct linger, for use with the
1046 getsockopt and setsockopt system calls.])
3a629497 1047fi
3a629497 1048
7534dfdc
MD
1049
1050AC_MSG_CHECKING(for struct timespec)
1051AC_CACHE_VAL(scm_cv_struct_timespec,
1052 AC_TRY_COMPILE([
1053#include <time.h>],
1054 [struct timespec t; t.tv_nsec = 100],
1055 scm_cv_struct_timespec="yes",
1056 scm_cv_struct_timespec="no"))
1057AC_MSG_RESULT($scm_cv_struct_timespec)
1058if test $scm_cv_struct_timespec = yes; then
eede3dbc
RB
1059 AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
1060 [Define this if your system defines struct timespec via <time.h>.])
7534dfdc
MD
1061fi
1062
3a629497
JB
1063#--------------------------------------------------------------------
1064#
1065# Flags for thread support
1066#
1067#--------------------------------------------------------------------
1068
9a52bc2a
RB
1069SCM_I_GSC_USE_PTHREAD_THREADS=0
1070SCM_I_GSC_USE_NULL_THREADS=0
9a52bc2a
RB
1071AC_SUBST([SCM_I_GSC_USE_PTHREAD_THREADS])
1072AC_SUBST([SCM_I_GSC_USE_NULL_THREADS])
9a52bc2a 1073
539c89a1
JB
1074### What thread package has the user asked for?
1075AC_ARG_WITH(threads, [ --with-threads thread interface],
18622c4e 1076 , with_threads=yes)
539c89a1 1077
8ab3d8a0
KR
1078AC_SUBST(SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT, 0)
1079
539c89a1 1080case "$with_threads" in
9bc4701c 1081 "yes" | "pthread" | "pthreads" | "pthread-threads" | "")
75bfae86 1082 ACX_PTHREAD(CC="$PTHREAD_CC"
75bfae86 1083 LIBS="$PTHREAD_LIBS $LIBS"
9a52bc2a 1084 SCM_I_GSC_USE_PTHREAD_THREADS=1
9bc4701c 1085 with_threads="pthreads",
18622c4e 1086 with_threads="null")
49aaa6d2
MV
1087
1088 old_CFLAGS="$CFLAGS"
1089 CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
8ab3d8a0
KR
1090
1091 # Reasons for testing:
1092 # pthread_getattr_np - "np" meaning "non portable" says it
1093 # all; not present on MacOS X or Solaris 10
1094 #
1095 AC_CHECK_FUNCS(pthread_attr_getstack pthread_getattr_np)
1096
1097 # On past versions of Solaris, believe 8 through 10 at least, you
1098 # had to write "pthread_once_t foo = { PTHREAD_ONCE_INIT };".
1099 # This is contrary to posix:
1100 # http://www.opengroup.org/onlinepubs/000095399/functions/pthread_once.html
1101 # Check here if this style is required.
1102 #
1103 # glibc (2.3.6 at least) works both with or without braces, so the
1104 # test checks whether it works without.
1105 #
1106 AC_CACHE_CHECK([whether PTHREAD_ONCE_INIT needs braces],
1107 guile_cv_need_braces_on_pthread_once_init,
1108 [AC_TRY_COMPILE([#include <pthread.h>],
1109 [pthread_once_t foo = PTHREAD_ONCE_INIT;],
1110 [guile_cv_need_braces_on_pthread_once_init=no],
1111 [guile_cv_need_braces_on_pthread_once_init=yes])])
1112 if test "$guile_cv_need_braces_on_pthread_once_init" = yes; then
1113 SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT=1
1114 fi
1115
49aaa6d2
MV
1116 CFLAGS="$old_CFLAGS"
1117
d707b9df
MV
1118 # On Solaris, sched_yield lives in -lrt.
1119 AC_SEARCH_LIBS(sched_yield, rt)
1120
539c89a1 1121 ;;
539c89a1 1122esac
3a629497 1123
18622c4e 1124case "$with_threads" in
9bc4701c 1125 "pthreads")
585356dc 1126 ;;
18622c4e 1127 "no" | "null")
9a52bc2a 1128 SCM_I_GSC_USE_NULL_THREADS=1
18622c4e 1129 with_threads="null-threads"
18306183 1130 ;;
585356dc 1131 * )
18622c4e 1132 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
585356dc
MV
1133 ;;
1134esac
539c89a1 1135
18622c4e
MV
1136AC_MSG_CHECKING(what kind of threads to support)
1137AC_MSG_RESULT($with_threads)
933a7411 1138
4f416616
KR
1139## Check whether pthread_attr_getstack works for the main thread
1140
23f2b9a3
KR
1141if test "$with_threads" = pthreads; then
1142
4f416616
KR
1143AC_MSG_CHECKING(whether pthread_attr_getstack works for the main thread)
1144old_CFLAGS="$CFLAGS"
1145CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
1146AC_TRY_RUN(
1147[
1148#if HAVE_PTHREAD_ATTR_GETSTACK
1149#include <pthread.h>
1150
1151int main ()
1152{
1153 pthread_attr_t attr;
1154 void *start, *end;
1155 size_t size;
1156
1157 pthread_getattr_np (pthread_self (), &attr);
1158 pthread_attr_getstack (&attr, &start, &size);
1159 end = (char *)start + size;
1160
1161 if ((void *)&attr < start || (void *)&attr >= end)
1162 return 1;
1163 else
1164 return 0;
1165}
1166#else
1167int main ()
1168{
1169 return 1;
1170}
1171#endif
1172],
1173[works=yes
1174AC_DEFINE(PTHREAD_ATTR_GETSTACK_WORKS, [1], [Define when pthread_att_get_stack works for the main thread])],
1175[works=no])
1176CFLAGS="$old_CFLAGS"
1177AC_MSG_RESULT($works)
1178
23f2b9a3
KR
1179fi # with_threads=pthreads
1180
1181
0db83c04
MV
1182## Cross building
1183if test "$cross_compiling" = "yes"; then
1184 AC_MSG_CHECKING(cc for build)
1185 ## /usr/bin/cc still uses wrong assembler
1186 ## CC_FOR_BUILD="${CC_FOR_BUILD-/usr/bincc}"
1187 CC_FOR_BUILD="${CC_FOR_BUILD-PATH=/usr/bin:$PATH cc}"
1188else
1189 CC_FOR_BUILD="${CC_FOR_BUILD-$CC}"
1190fi
0db83c04
MV
1191
1192## AC_MSG_CHECKING("if we are cross compiling")
1193## AC_MSG_RESULT($cross_compiling)
1194if test "$cross_compiling" = "yes"; then
1195 AC_MSG_RESULT($CC_FOR_BUILD)
1196fi
1197
1198## No need as yet to be more elaborate
1199CCLD_FOR_BUILD="$CC_FOR_BUILD"
1200
1201AC_SUBST(cross_compiling)
457a4e81 1202AC_ARG_VAR(CC_FOR_BUILD,[build system C compiler])
0db83c04
MV
1203AC_SUBST(CCLD_FOR_BUILD)
1204
1205## libtool erroneously calls CC_FOR_BUILD HOST_CC;
1206## --HOST is the platform that PACKAGE is compiled for.
1207HOST_CC="$CC_FOR_BUILD"
1208AC_SUBST(HOST_CC)
1209
1210if test "$cross_compiling" = "yes"; then
1211 AC_MSG_CHECKING(guile for build)
1212 GUILE_FOR_BUILD="${GUILE_FOR_BUILD-guile}"
1213else
1214 GUILE_FOR_BUILD='$(preinstguile)'
1215fi
0db83c04
MV
1216
1217## AC_MSG_CHECKING("if we are cross compiling")
1218## AC_MSG_RESULT($cross_compiling)
1219if test "$cross_compiling" = "yes"; then
1220 AC_MSG_RESULT($GUILE_FOR_BUILD)
1221fi
89f69c52 1222AC_ARG_VAR(GUILE_FOR_BUILD,[guile for build system])
0db83c04
MV
1223AC_SUBST(GUILE_FOR_BUILD)
1224
3a629497
JB
1225## If we're using GCC, ask for aggressive warnings.
1226case "$GCC" in
99be3450 1227 yes )
0a1b8b15
JB
1228 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
1229 ## much stuff with generic function pointers for that to really be
1230 ## less than exasperating.
aee8ca3f
GH
1231 ## -Wpointer-arith was here too, but something changed in gcc/glibc
1232 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
5c07af6e
MV
1233 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes"
1234 # Do this here so we don't screw up any of the tests above that might
1235 # not be "warning free"
1236 if test "${GUILE_ERROR_ON_WARNING}" = yes
1237 then
1238 CFLAGS="${CFLAGS} -Werror"
1239 enable_compile_warnings=no
1240 fi
1241 ;;
3a629497
JB
1242esac
1243
3a629497
JB
1244## If we're creating a shared library (using libtool!), then we'll
1245## need to generate a list of .lo files corresponding to the .o files
1246## given in LIBOBJS. We'll call it LIBLOBJS.
eede3dbc 1247LIBLOBJS="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`"
3a629497 1248
e9e225e5 1249## We also need to create corresponding .doc and .x files
eede3dbc
RB
1250EXTRA_DOT_DOC_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.doc ,g;s,\.[[^.]]*$,.doc,'`"
1251EXTRA_DOT_X_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.x ,g;s,\.[[^.]]*$,.x,'`"
91411868 1252
7c86ae05
JB
1253AC_SUBST(GUILE_MAJOR_VERSION)
1254AC_SUBST(GUILE_MINOR_VERSION)
df4a8db0 1255AC_SUBST(GUILE_MICRO_VERSION)
9e6e154e 1256AC_SUBST(GUILE_EFFECTIVE_VERSION)
7c86ae05 1257AC_SUBST(GUILE_VERSION)
9e202853 1258
22b7f585
RB
1259#######################################################################
1260# library versioning
1261
9e202853
RB
1262AC_SUBST(LIBGUILE_INTERFACE_CURRENT)
1263AC_SUBST(LIBGUILE_INTERFACE_REVISION)
1264AC_SUBST(LIBGUILE_INTERFACE_AGE)
1265AC_SUBST(LIBGUILE_INTERFACE)
539c89a1 1266
b8b9ec68 1267AC_SUBST(LIBGUILE_SRFI_SRFI_1_MAJOR)
cfc7c7c0
MD
1268AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_CURRENT)
1269AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION)
1270AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_AGE)
1271AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE)
1272
b8b9ec68 1273AC_SUBST(LIBGUILE_SRFI_SRFI_4_MAJOR)
22b7f585
RB
1274AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_CURRENT)
1275AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION)
1276AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE)
1277AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE)
1278
b8b9ec68 1279AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_MAJOR)
22b7f585
RB
1280AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_CURRENT)
1281AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION)
1282AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_AGE)
1283AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE)
1284
6bba4fad
KR
1285AC_SUBST(LIBGUILE_SRFI_SRFI_60_MAJOR)
1286AC_SUBST(LIBGUILE_SRFI_SRFI_60_INTERFACE_CURRENT)
1287AC_SUBST(LIBGUILE_SRFI_SRFI_60_INTERFACE_REVISION)
1288AC_SUBST(LIBGUILE_SRFI_SRFI_60_INTERFACE_AGE)
1289AC_SUBST(LIBGUILE_SRFI_SRFI_60_INTERFACE)
1290
b89c4943
LC
1291AC_SUBST(LIBGUILE_I18N_MAJOR)
1292AC_SUBST(LIBGUILE_I18N_INTERFACE_CURRENT)
1293AC_SUBST(LIBGUILE_I18N_INTERFACE_REVISION)
1294AC_SUBST(LIBGUILE_I18N_INTERFACE_AGE)
1295AC_SUBST(LIBGUILE_I18N_INTERFACE)
1296
1297
22b7f585
RB
1298#######################################################################
1299
d8b1bb93 1300dnl Tell guile-config what flags guile users should compile and link with.
a8d7ba11 1301GUILE_LIBS="$LDFLAGS $LIBS"
d8b1bb93 1302GUILE_CFLAGS="$PTHREAD_CFLAGS"
daa4f38c 1303AC_SUBST(GUILE_LIBS)
d8b1bb93 1304AC_SUBST(GUILE_CFLAGS)
7c86ae05 1305
3a629497
JB
1306AC_SUBST(AWK)
1307AC_SUBST(LIBLOBJS)
91411868 1308AC_SUBST(EXTRA_DOT_DOC_FILES)
e9e225e5 1309AC_SUBST(EXTRA_DOT_X_FILES)
3a629497 1310
6812c28f
TTN
1311dnl See also top_builddir in info node: (libtool)AC_PROG_LIBTOOL
1312top_builddir_absolute=`pwd`
1313AC_SUBST(top_builddir_absolute)
9e6e154e 1314top_srcdir_absolute=`(cd $srcdir && pwd)`
2f13db9a 1315AC_SUBST(top_srcdir_absolute)
6812c28f 1316
9a52bc2a
RB
1317# Additional SCM_I_GSC definitions are above.
1318AC_SUBST([SCM_I_GSC_GUILE_DEBUG])
1319AC_SUBST([SCM_I_GSC_GUILE_DEBUG_FREELIST])
f5922e27 1320AC_SUBST([SCM_I_GSC_ENABLE_DISCOURAGED])
9a52bc2a
RB
1321AC_SUBST([SCM_I_GSC_ENABLE_DEPRECATED])
1322AC_SUBST([SCM_I_GSC_ENABLE_ELISP])
9a52bc2a
RB
1323AC_SUBST([SCM_I_GSC_STACK_GROWS_UP])
1324AC_SUBST([SCM_I_GSC_C_INLINE])
1325AC_CONFIG_FILES([libguile/gen-scmconfig.h])
1326
237b3247
RB
1327AC_CONFIG_FILES([
1328 Makefile
6812c28f 1329 am/Makefile
9e6e154e
RB
1330 benchmark-suite/Makefile
1331 doc/Makefile
1332 doc/goops/Makefile
1333 doc/r5rs/Makefile
1334 doc/ref/Makefile
1335 doc/tutorial/Makefile
1e2346ae 1336 emacs/Makefile
9e6e154e
RB
1337 examples/Makefile
1338 examples/box-dynamic-module/Makefile
1339 examples/box-dynamic/Makefile
1340 examples/box-module/Makefile
1341 examples/box/Makefile
1342 examples/modules/Makefile
1343 examples/safe/Makefile
1344 examples/scripts/Makefile
1345 guile-config/Makefile
237b3247 1346 ice-9/Makefile
8ee7506b 1347 ice-9/debugger/Makefile
8746959c 1348 ice-9/debugging/Makefile
3d1a89b9
NJ
1349 lang/Makefile
1350 lang/elisp/Makefile
1351 lang/elisp/internals/Makefile
1352 lang/elisp/primitives/Makefile
9e6e154e 1353 libguile/Makefile
237b3247
RB
1354 oop/Makefile
1355 oop/goops/Makefile
1356 scripts/Makefile
1357 srfi/Makefile
849f29a4
RB
1358 test-suite/Makefile
1359 test-suite/standalone/Makefile
1360])
9e6e154e
RB
1361
1362AC_CONFIG_FILES([check-guile], [chmod +x check-guile])
1363AC_CONFIG_FILES([benchmark-guile], [chmod +x benchmark-guile])
1364AC_CONFIG_FILES([guile-tools], [chmod +x guile-tools])
1365AC_CONFIG_FILES([pre-inst-guile], [chmod +x pre-inst-guile])
849f29a4 1366AC_CONFIG_FILES([pre-inst-guile-env], [chmod +x pre-inst-guile-env])
9e6e154e
RB
1367AC_CONFIG_FILES([libguile/guile-snarf],
1368 [chmod +x libguile/guile-snarf])
1369AC_CONFIG_FILES([libguile/guile-doc-snarf],
1370 [chmod +x libguile/guile-doc-snarf])
1371AC_CONFIG_FILES([libguile/guile-func-name-check],
1372 [chmod +x libguile/guile-func-name-check])
1373AC_CONFIG_FILES([libguile/guile-snarf-docs],
1374 [chmod +x libguile/guile-snarf-docs])
237b3247
RB
1375
1376AC_OUTPUT
0f2d19dd 1377
3a629497
JB
1378dnl Local Variables:
1379dnl comment-start: "dnl "
1380dnl comment-end: ""
1381dnl comment-start-skip: "\\bdnl\\b\\s *"
d67c13f6 1382dnl End: