tests: Have `getaddrinfo' test work for Darwin 8.
[bpt/guile.git] / configure.ac
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
2ddf0851
LC
7Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
8 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
a73256d0
KR
9
10This file is part of GUILE
11
53befeb7
NJ
12GUILE is free software; you can redistribute it and/or modify it under
13the terms of the GNU Lesser General Public License as published by the
14Free Software Foundation; either version 3, or (at your option) any
15later version.
a73256d0 16
53befeb7
NJ
17GUILE is distributed in the hope that it will be useful, but WITHOUT
18ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
20License for more details.
a73256d0 21
53befeb7
NJ
22You should have received a copy of the GNU Lesser General Public
23License along with GUILE; see the file COPYING.LESSER. If not, write
24to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
25Floor, Boston, MA 02110-1301, USA.
a73256d0
KR
26
27]])
50848747 28
4bdc8fb5 29AC_PREREQ(2.61)
237b3247 30
0c1eb9b6 31AC_INIT([GNU Guile],
958a28e9 32 m4_esyscmd([build-aux/git-version-gen .tarball-version]),
2039f7be 33 [bug-guile@gnu.org])
f6b4d9b4
LC
34AC_CONFIG_AUX_DIR([build-aux])
35AC_CONFIG_MACRO_DIR([m4])
5ae51dad 36AC_CONFIG_SRCDIR(GUILE-VERSION)
f6b4d9b4 37
0adcd1bd
LC
38dnl `AM_SUBST_NOTMAKE' was introduced in Automake 1.11.
39AM_INIT_AUTOMAKE([1.11 gnu no-define -Wall -Wno-override dist-xz])
233b5d89 40m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AC_SUBST([AM_DEFAULT_VERBOSITY],1)])
5ae51dad 41
a73256d0 42AC_COPYRIGHT(GUILE_CONFIGURE_COPYRIGHT)
8907576f 43AC_CONFIG_SRCDIR([GUILE-VERSION])
5ae51dad 44
2d26def0 45. $srcdir/GUILE-VERSION
db10a69b 46GUILE_VERSION="$PACKAGE_VERSION"
5ae51dad 47
4bdc8fb5 48AC_CONFIG_HEADERS([config.h])
a73256d0 49AH_TOP(/*GUILE_CONFIGURE_COPYRIGHT*/)
2d26def0 50
a6be66ed
RB
51#--------------------------------------------------------------------
52
4bdc8fb5
LC
53AC_LANG([C])
54
a6be66ed 55dnl Some more checks for Win32
4bdc8fb5
LC
56AC_CANONICAL_HOST
57
a6be66ed
RB
58AC_LIBTOOL_WIN32_DLL
59
60AC_PROG_INSTALL
61AC_PROG_CC
6caac03c 62gl_EARLY
a6be66ed 63AC_PROG_CPP
c2be4e89 64AC_PROG_SED
a6be66ed 65AC_PROG_AWK
b8b06598 66AC_PROG_LN_S
a6be66ed 67
6caac03c
LC
68dnl Gnulib.
69gl_INIT
e3b8bce8 70dnl FIXME: remove me and the acinclude.m4 code when clock-gettime is
074f39c7 71dnl fixed for clock_getcpuclockid and can be imported normally from
d1f24171
LC
72dnl gnulib. See
73dnl <http://lists.gnu.org/archive/html/bug-gnulib/2011-06/msg00227.html>
74dnl for details.
e3b8bce8 75gl_CLOCK_TIME
a6be66ed 76
4bdc8fb5
LC
77AC_PROG_CC_C89
78
45c0ff10
KR
79# for per-target cflags in the libguile subdir
80AM_PROG_CC_C_O
a6be66ed
RB
81
82AC_LIBTOOL_DLOPEN
c78a96e0 83AC_PROG_LIBTOOL
18f2d5aa 84
2ddf0851
LC
85AM_CONDITIONAL([HAVE_SHARED_LIBRARIES], [test "x$enable_shared" = "xyes"])
86
e66ff09a
LC
87AC_DEFINE_UNQUOTED([SHARED_LIBRARY_PATH_VARIABLE], ["$shlibpath_var"],
88 [Name of the environment variable that tells the dynamic linker where
89to find shared libraries.])
90
18f2d5aa
LC
91dnl Check for libltdl.
92AC_LIB_HAVE_LINKFLAGS([ltdl], [], [#include <ltdl.h>],
93 [lt_dlopenext ("foo");])
d0110327 94if test "x$HAVE_LIBLTDL" != "xyes"; then
18f2d5aa
LC
95 AC_MSG_ERROR([GNU libltdl (Libtool) not found, see README.])
96fi
a6be66ed
RB
97
98AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
99AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
100
d995da7f
NJ
101AM_PATH_LISPDIR
102
d7a22073
LC
103AC_DEFINE_UNQUOTED([HOST_TYPE], ["$host"],
104 [Define to the host's GNU triplet.])
105
0e8a8468 106#--------------------------------------------------------------------
3a629497 107#
a6be66ed 108# User options (after above tests that may set default CFLAGS etc.)
3a629497
JB
109#
110#--------------------------------------------------------------------
86789f9b 111
13922e3f 112GUILE_ERROR_ON_WARNING="no"
bdcccc18 113
8afd1a2a
RB
114AC_ARG_ENABLE(error-on-warning,
115 [ --enable-error-on-warning treat compile warnings as errors],
116 [case "${enableval}" in
bdcccc18
RB
117 yes | y) GUILE_ERROR_ON_WARNING="yes" ;;
118 no | n) GUILE_ERROR_ON_WARNING="no" ;;
8afd1a2a
RB
119 *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
120 esac])
121
cf890744 122AC_ARG_ENABLE(debug-malloc,
e73dd549 123 [ --enable-debug-malloc include malloc debugging code],
cf890744 124 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
feef98f2 125 AC_DEFINE([GUILE_DEBUG_MALLOC], 1,
eede3dbc 126 [Define this if you want to debug scm_must_malloc/realloc/free calls.])
cf890744
MD
127 fi)
128
9a52bc2a 129SCM_I_GSC_GUILE_DEBUG=0
62002dcb 130AC_ARG_ENABLE(guile-debug,
4bdc8fb5 131 [AS_HELP_STRING([--enable-guile-debug],
9a52bc2a 132 [include internal debugging functions])],
62002dcb 133 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
9a52bc2a 134 SCM_I_GSC_GUILE_DEBUG=1
62002dcb
MD
135 fi)
136
52cfc69b 137AC_ARG_ENABLE(posix,
073167ef 138 [ --disable-posix omit non-essential POSIX interfaces],,
52cfc69b
GH
139 enable_posix=yes)
140
141AC_ARG_ENABLE(networking,
dc914156 142 [ --disable-networking omit networking interfaces],,
52cfc69b
GH
143 enable_networking=yes)
144
145AC_ARG_ENABLE(regex,
146 [ --disable-regex omit regular expression interfaces],,
147 enable_regex=yes)
148
9a52bc2a 149AC_ARG_ENABLE([deprecated],
4bdc8fb5 150 AS_HELP_STRING([--disable-deprecated],[omit deprecated features]))
eede3dbc 151
e73dd549 152if test "$enable_deprecated" = no; then
9a52bc2a 153 SCM_I_GSC_ENABLE_DEPRECATED=0
6ab8238d 154 warn_default=no
e73dd549
MV
155else
156 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
94a0d885
MV
157 warn_default=summary
158 elif test "$enable_deprecated" = shutup; then
159 warn_default=no
160 else
161 warn_default=$enable_deprecated
e73dd549 162 fi
9a52bc2a 163 SCM_I_GSC_ENABLE_DEPRECATED=1
e73dd549 164fi
feef98f2 165AC_DEFINE_UNQUOTED([SCM_WARN_DEPRECATED_DEFAULT], "$warn_default",
6ab8238d 166[Define this to control the default warning level for deprecated features.])
e73dd549 167
d05bcb2e
NJ
168dnl Added the following configure option in January 2008 following
169dnl investigation of problems with "64" system and library calls on
170dnl Darwin (MacOS X). The libguile code (_scm.h) assumes that if a
171dnl system has stat64, it will have all the other 64 APIs too; but on
172dnl Darwin, stat64 is there but other APIs are missing.
173dnl
174dnl It also appears, from the Darwin docs, that most system call APIs
175dnl there (i.e. the traditional ones _without_ "64" in their names) have
176dnl been 64-bit-capable for a long time now, so it isn't necessary to
177dnl use "64" versions anyway. For example, Darwin's off_t is 64-bit.
178dnl
179dnl A similar problem has been reported for HP-UX:
180dnl http://www.nabble.com/Building-guile-1.8.2-on-hpux-td13106681.html
181dnl
182dnl Therefore, and also because a Guile without LARGEFILE64 support is
183dnl better than no Guile at all, we provide this option to suppress
184dnl trying to use "64" calls.
185dnl
186dnl It may be that for some 64-bit function on Darwin/HP-UX we do need
187dnl to use a "64" call, and hence that by using --without-64-calls we're
188dnl missing out on that. If so, someone can work on that in the future.
189dnl For now, --without-64-calls allows Guile to build on OSs where it
190dnl wasn't building before.
4b26c03e 191AC_MSG_CHECKING([whether to use system and library "64" calls])
d05bcb2e 192AC_ARG_WITH([64-calls],
4bdc8fb5 193 AS_HELP_STRING([--without-64-calls],
d05bcb2e
NJ
194 [don't attempt to use system and library calls with "64" in their names]),
195 [use_64_calls=$withval],
196 [use_64_calls=yes
197 case $host in
198 *-apple-darwin* )
199 use_64_calls=no
200 ;;
32b164aa
NJ
201 powerpc-ibm-aix* )
202 use_64_calls=no
203 ;;
d05bcb2e 204 esac])
4b26c03e 205AC_MSG_RESULT($use_64_calls)
d05bcb2e
NJ
206case "$use_64_calls" in
207 y* )
feef98f2 208 AC_DEFINE([GUILE_USE_64_CALLS], 1,
d05bcb2e
NJ
209 [Define to 1 in order to try to use "64" versions of system and library calls.])
210 ;;
211esac
212
a44e61ac
MV
213#--------------------------------------------------------------------
214
4f6f9ae3
GH
215dnl Check for dynamic linking
216
217use_modules=yes
218AC_ARG_WITH(modules,
219[ --with-modules[=FILES] Add support for dynamic modules],
220use_modules="$withval")
221test -z "$use_modules" && use_modules=yes
222DLPREOPEN=
223if test "$use_modules" != no; then
4f6f9ae3
GH
224 if test "$use_modules" = yes; then
225 DLPREOPEN="-dlpreopen force"
226 else
227 DLPREOPEN="-export-dynamic"
228 for module in $use_modules; do
229 DLPREOPEN="$DLPREOPEN -dlopen $module"
230 done
231 fi
232fi
233
52cfc69b
GH
234dnl files which are destined for separate modules.
235
4f6f9ae3
GH
236if test "$use_modules" != no; then
237 AC_LIBOBJ([dynl])
08969a24
AW
238 AC_DEFINE([HAVE_MODULES], 1,
239 [Define this if you want support for dynamically loaded modules in Guile.])
4f6f9ae3
GH
240fi
241
52cfc69b 242if test "$enable_posix" = yes; then
eede3dbc 243 AC_LIBOBJ([posix])
feef98f2 244 AC_DEFINE([HAVE_POSIX], 1,
073167ef 245 [Define this if you want support for non-essential POSIX system calls in Guile.])
52cfc69b
GH
246fi
247
248if test "$enable_networking" = yes; then
eede3dbc
RB
249 AC_LIBOBJ([net_db])
250 AC_LIBOBJ([socket])
feef98f2 251 AC_DEFINE([HAVE_NETWORKING], 1,
eede3dbc 252 [Define this if you want support for networking in Guile.])
52cfc69b
GH
253fi
254
cf890744 255if test "$enable_debug_malloc" = yes; then
eede3dbc 256 AC_LIBOBJ([debug-malloc])
cf890744
MD
257fi
258
9a5fa6e9 259AC_CHECK_LIB(uca, __uc_get_ar_bsp)
3d1a89b9 260
3a629497 261AC_C_CONST
5b079b46 262
b3aa4626
KR
263# "volatile" is used in a couple of tests below.
264AC_C_VOLATILE
265
9a52bc2a 266AC_C_INLINE
5bd732c9 267if test "$ac_cv_c_inline" != no; then
9a52bc2a
RB
268 SCM_I_GSC_C_INLINE="\"${ac_cv_c_inline}\""
269else
270 SCM_I_GSC_C_INLINE=NULL
5bd732c9 271fi
9a5fa6e9 272AC_CHECK_LIB(uca, __uc_get_ar_bsp)
5bd732c9 273
9a52bc2a
RB
274AC_C_BIGENDIAN
275
659b4611
AW
276AC_C_LABELS_AS_VALUES
277
9a52bc2a
RB
278AC_CHECK_SIZEOF(char)
279AC_CHECK_SIZEOF(unsigned char)
813b3dd4 280AC_CHECK_SIZEOF(short)
9a52bc2a 281AC_CHECK_SIZEOF(unsigned short)
9dec9737 282AC_CHECK_SIZEOF(int)
9a52bc2a 283AC_CHECK_SIZEOF(unsigned int)
9dec9737 284AC_CHECK_SIZEOF(long)
9a52bc2a 285AC_CHECK_SIZEOF(unsigned long)
813b3dd4 286AC_CHECK_SIZEOF(size_t)
813b3dd4 287AC_CHECK_SIZEOF(long long)
9a52bc2a 288AC_CHECK_SIZEOF(unsigned long long)
fcc5d734
SJ
289AC_CHECK_SIZEOF(__int64)
290AC_CHECK_SIZEOF(unsigned __int64)
1be6b49c 291AC_CHECK_SIZEOF(void *)
9a52bc2a
RB
292AC_CHECK_SIZEOF(intptr_t)
293AC_CHECK_SIZEOF(uintptr_t)
294AC_CHECK_SIZEOF(ptrdiff_t)
d20008c0 295AC_CHECK_SIZEOF(size_t)
4f416616 296AC_CHECK_SIZEOF(off_t)
1be6b49c 297
8d4f5e8f
AW
298if test "$ac_cv_sizeof_long" -gt "$ac_cv_sizeof_void_p"; then
299 AC_MSG_ERROR(long does not fit into a void*)
9dec9737 300fi
3a629497 301
c134fe9d 302if test "$ac_cv_sizeof_ptrdiff_t" -ne 0; then
9a52bc2a
RB
303 SCM_I_GSC_T_PTRDIFF='"ptrdiff_t"'
304else
305 SCM_I_GSC_T_PTRDIFF='"long"'
306fi
307AC_SUBST([SCM_I_GSC_T_PTRDIFF])
308
309AC_CHECK_HEADERS([stdint.h])
310AC_CHECK_HEADERS([inttypes.h])
311
d20008c0
MV
312AC_CHECK_SIZEOF(intmax_t)
313
9a52bc2a
RB
314SCM_I_GSC_NEEDS_STDINT_H=0
315SCM_I_GSC_NEEDS_INTTYPES_H=0
316
317### intptr and uintptr (try not to use inttypes if we don't have to)
318if test "$ac_cv_header_inttypes_h" = yes; then
319 if test "$ac_cv_sizeof_intptr_t" -eq 0; then
320 AC_CHECK_SIZEOF([intptr_t],,[#include <inttypes.h>
321#include <stdio.h>])
322 if test "$ac_cv_sizeof_intptr_t" -ne 0; then
323 SCM_I_GSC_NEEDS_INTTYPES_H=1
324 fi
325 fi
326 if test "$ac_cv_sizeof_uintptr_t" -eq 0; then
327 AC_CHECK_SIZEOF([uintptr_t],,[#include <inttypes.h>
328#include <stdio.h>])
329 if test "$ac_cv_sizeof_uintptr_t" -ne 0; then
330 SCM_I_GSC_NEEDS_INTTYPES_H=1
331 fi
332 fi
333fi
334
335### See what's provided by stdint.h
336if test "$ac_cv_header_stdint_h" = yes; then
337 AC_CHECK_TYPE([int8_t],[scm_stdint_has_int8=1],,[#include <stdint.h>])
338 AC_CHECK_TYPE([uint8_t],[scm_stdint_has_uint8=1],,[#include <stdint.h>])
339 AC_CHECK_TYPE([int16_t],[scm_stdint_has_int16=1],,[#include <stdint.h>])
340 AC_CHECK_TYPE([uint16_t],[scm_stdint_has_uint16=1],,[#include <stdint.h>])
341 AC_CHECK_TYPE([int32_t],[scm_stdint_has_int32=1],,[#include <stdint.h>])
342 AC_CHECK_TYPE([uint32_t],[scm_stdint_has_uint32=1],,[#include <stdint.h>])
343 AC_CHECK_TYPE([int64_t],[scm_stdint_has_int64=1],,[#include <stdint.h>])
344 AC_CHECK_TYPE([uint64_t],[scm_stdint_has_uint64=1],,[#include <stdint.h>])
eb1f89f6
MV
345 AC_CHECK_TYPE([intmax_t],[scm_stdint_has_intmax=1],,[#include <stdint.h>])
346 AC_CHECK_TYPE([uintmax_t],[scm_stdint_has_uintmax=1],,[#include <stdint.h>])
114bc68a
LC
347 AC_CHECK_TYPE([intptr_t],[scm_stdint_has_intptr=1],,[#include <stdint.h>])
348 AC_CHECK_TYPE([uintptr_t],[scm_stdint_has_uintptr=1],,[#include <stdint.h>])
9a52bc2a
RB
349fi
350
351# so we don't get confused by the cache (wish there was a better way
352# to check particular headers for the same type...)
353
354unset ac_cv_type_int8_t
355unset ac_cv_type_uint8_t
356unset ac_cv_type_int16_t
357unset ac_cv_type_uint16_t
358unset ac_cv_type_int32_t
359unset ac_cv_type_uint32_t
360unset ac_cv_type_int64_t
361unset ac_cv_type_uint64_t
eb1f89f6
MV
362unset ac_cv_type_intmax_t
363unset ac_cv_type_uintmax_t
9a52bc2a
RB
364
365### See what's provided by inttypes.h
366if test "$ac_cv_header_inttypes_h" = yes; then
367 AC_CHECK_TYPE([int8_t],[scm_inttypes_has_int8=1],,[#include <inttypes.h>])
368 AC_CHECK_TYPE([uint8_t],[scm_inttypes_has_uint8=1],,[#include <inttypes.h>])
369 AC_CHECK_TYPE([int16_t],[scm_inttypes_has_int16=1],,[#include <inttypes.h>])
370 AC_CHECK_TYPE([uint16_t],[scm_inttypes_has_uint16=1],,[#include <inttypes.h>])
371 AC_CHECK_TYPE([int32_t],[scm_inttypes_has_int32=1],,[#include <inttypes.h>])
372 AC_CHECK_TYPE([uint32_t],[scm_inttypes_has_uint32=1],,[#include <inttypes.h>])
373 AC_CHECK_TYPE([int64_t],[scm_inttypes_has_int64=1],,[#include <inttypes.h>])
374 AC_CHECK_TYPE([uint64_t],[scm_inttypes_has_uint64=1],,[#include <inttypes.h>])
eb1f89f6
MV
375 AC_CHECK_TYPE([intmax_t],[scm_inttypes_has_intmax=1],,[#include <inttypes.h>])
376 AC_CHECK_TYPE([uintmax_t],[scm_inttypes_has_uintmax=1],,[#include <inttypes.h>])
114bc68a
LC
377 AC_CHECK_TYPE([intptr_t],[scm_inttypes_has_intptr=1],,[#include <inttypes.h>])
378 AC_CHECK_TYPE([uintptr_t],[scm_inttypes_has_uintptr=1],,[#include <inttypes.h>])
9a52bc2a
RB
379fi
380
381# Try hard to find definitions for some required scm_t_*int* types.
382
383### Required type scm_t_int8
6aa84fdd 384if test "$scm_stdint_has_int8"; then
9a52bc2a
RB
385 SCM_I_GSC_T_INT8='"int8_t"'
386 SCM_I_GSC_NEEDS_STDINT_H=1
387elif test "$scm_inttypes_has_int8"; then
388 SCM_I_GSC_T_INT8='"int8_t"'
389 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
390elif test "$ac_cv_sizeof_char" -eq 1; then
391 SCM_I_GSC_T_INT8='"signed char"'
9a52bc2a
RB
392else
393 AC_MSG_ERROR([Can't find appropriate type for scm_t_int8.])
394fi
395AC_SUBST([SCM_I_GSC_T_INT8])
396
397### Required type scm_t_uint8
6aa84fdd 398if test "$scm_stdint_has_uint8"; then
9a52bc2a
RB
399 SCM_I_GSC_T_UINT8='"uint8_t"'
400 SCM_I_GSC_NEEDS_STDINT_H=1
401elif test "$scm_inttypes_has_uint8"; then
402 SCM_I_GSC_T_UINT8='"uint8_t"'
403 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
404elif test "$ac_cv_sizeof_unsigned_char" -eq 1; then
405 SCM_I_GSC_T_UINT8='"unsigned char"'
9a52bc2a
RB
406else
407 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint8.])
408fi
409AC_SUBST([SCM_I_GSC_T_UINT8])
9a52bc2a
RB
410
411### Required type scm_t_int16 (ANSI C says int or short might work)
6aa84fdd 412if test "$scm_stdint_has_int16"; then
9a52bc2a
RB
413 SCM_I_GSC_T_INT16='"int16_t"'
414 SCM_I_GSC_NEEDS_STDINT_H=1
415elif test "$scm_inttypes_has_int16"; then
416 SCM_I_GSC_T_INT16='"int16_t"'
417 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
418elif test "$ac_cv_sizeof_int" -eq 2; then
419 SCM_I_GSC_T_INT16='"int"'
6aa84fdd
MV
420elif test "$ac_cv_sizeof_short" -eq 2; then
421 SCM_I_GSC_T_INT16='"short"'
9a52bc2a
RB
422else
423 AC_MSG_ERROR([Can't find appropriate type for scm_t_int16.])
424fi
425AC_SUBST([SCM_I_GSC_T_INT16])
426
427### Required type scm_t_uint16 (ANSI C says int or short might work)
6aa84fdd 428if test "$scm_stdint_has_uint16"; then
9a52bc2a
RB
429 SCM_I_GSC_T_UINT16='"uint16_t"'
430 SCM_I_GSC_NEEDS_STDINT_H=1
431elif test "$scm_inttypes_has_uint16"; then
432 SCM_I_GSC_T_UINT16='"uint16_t"'
433 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
434elif test "$ac_cv_sizeof_unsigned_int" -eq 2; then
435 SCM_I_GSC_T_UINT16='"unsigned int"'
6aa84fdd
MV
436elif test "$ac_cv_sizeof_unsigned_short" -eq 2; then
437 SCM_I_GSC_T_UINT16='"unsigned short"'
9a52bc2a
RB
438else
439 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint16.])
440fi
441AC_SUBST([SCM_I_GSC_T_UINT16])
442
443
444### Required type scm_t_int32 (ANSI C says int, short, or long might work)
6aa84fdd 445if test "$scm_stdint_has_int32"; then
9a52bc2a
RB
446 SCM_I_GSC_T_INT32='"int32_t"'
447 SCM_I_GSC_NEEDS_STDINT_H=1
448elif test "$scm_inttypes_has_int32"; then
449 SCM_I_GSC_T_INT32='"int32_t"'
450 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
451elif test "$ac_cv_sizeof_int" -eq 4; then
452 SCM_I_GSC_T_INT32='"int"'
6aa84fdd
MV
453elif test "$ac_cv_sizeof_long" -eq 4; then
454 SCM_I_GSC_T_INT32='"long"'
6aa84fdd
MV
455elif test "$ac_cv_sizeof_short" -eq 4; then
456 SCM_I_GSC_T_INT32='"short"'
9a52bc2a
RB
457else
458 AC_MSG_ERROR([Can't find appropriate type for scm_t_int32.])
459fi
460AC_SUBST([SCM_I_GSC_T_INT32])
461
462### Required type scm_t_uint32 (ANSI C says int, short, or long might work)
6aa84fdd 463if test "$scm_stdint_has_uint32"; then
9a52bc2a
RB
464 SCM_I_GSC_T_UINT32='"uint32_t"'
465 SCM_I_GSC_NEEDS_STDINT_H=1
466elif test "$scm_inttypes_has_uint32"; then
467 SCM_I_GSC_T_UINT32='"uint32_t"'
468 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
469elif test "$ac_cv_sizeof_unsigned_int" -eq 4; then
470 SCM_I_GSC_T_UINT32='"unsigned int"'
6aa84fdd
MV
471elif test "$ac_cv_sizeof_unsigned_long" -eq 4; then
472 SCM_I_GSC_T_UINT32='"unsigned long"'
6aa84fdd
MV
473elif test "$ac_cv_sizeof_unsigned_short" -eq 4; then
474 SCM_I_GSC_T_UINT32='"unsigned short"'
9a52bc2a
RB
475else
476 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint32.])
477fi
478AC_SUBST([SCM_I_GSC_T_UINT32])
479
a6be66ed 480### Optional type scm_t_int64 (ANSI C says int, short, or long might work)
fcc5d734 481### Also try 'long long' and '__int64' if we have it.
9a52bc2a 482SCM_I_GSC_T_INT64=0
6aa84fdd
MV
483if test "$scm_stdint_has_int64"; then
484 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
485 SCM_I_GSC_NEEDS_STDINT_H=1
486elif test "$scm_inttypes_has_int64"; then
487 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
488 SCM_I_GSC_NEEDS_INTTYPES_H=1
489elif test "$ac_cv_sizeof_int" -eq 8; then
9a52bc2a
RB
490 SCM_I_GSC_T_INT64='"int"'
491elif test "$ac_cv_sizeof_long" -eq 8; then
492 SCM_I_GSC_T_INT64='"long"'
493elif test "$ac_cv_sizeof_short" -eq 8; then
494 SCM_I_GSC_T_INT64='"short"'
495elif test "$ac_cv_sizeof_long_long" -eq 8; then
496 SCM_I_GSC_T_INT64='"long long"'
fcc5d734
SJ
497elif test "$ac_cv_sizeof___int64" -eq 8; then
498 SCM_I_GSC_T_INT64='"__int64"'
9a52bc2a
RB
499else
500 AC_MSG_ERROR([Can't find appropriate type for scm_t_int64.])
501fi
502AC_SUBST([SCM_I_GSC_T_INT64])
6aa84fdd 503
9a52bc2a 504
a6be66ed 505### Optional type scm_t_uint64 (ANSI C says int, short, or long might work)
fcc5d734 506### Also try 'long long' and '__int64' if we have it.
9a52bc2a 507SCM_I_GSC_T_UINT64=0
6aa84fdd
MV
508if test "$scm_stdint_has_uint64"; then
509 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
510 SCM_I_GSC_NEEDS_STDINT_H=1
511elif test "$scm_inttypes_has_uint64"; then
512 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
513 SCM_I_GSC_NEEDS_INTTYPES_H=1
514elif test "$ac_cv_sizeof_unsigned_int" -eq 8; then
9a52bc2a
RB
515 SCM_I_GSC_T_UINT64='"unsigned int"'
516elif test "$ac_cv_sizeof_unsigned_long" -eq 8; then
517 SCM_I_GSC_T_UINT64='"unsigned long"'
518elif test "$ac_cv_sizeof_unsigned_short" -eq 8; then
519 SCM_I_GSC_T_UINT64='"unsigned short"'
520elif test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then
521 SCM_I_GSC_T_UINT64='"unsigned long long"'
fcc5d734
SJ
522elif test "$ac_cv_sizeof_unsigned___int64" -eq 8; then
523 SCM_I_GSC_T_UINT64='"unsigned __int64"'
9a52bc2a
RB
524else
525 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint64.])
526fi
527AC_SUBST([SCM_I_GSC_T_UINT64])
528
eb1f89f6
MV
529### Required type scm_t_intmax
530###
531### We try 'intmax_t', '__int64', 'long long' in this order. When
532### none of them is available, we use 'long'.
533###
534SCM_I_GSC_T_INTMAX=0
535if test "$scm_stdint_has_intmax"; then
536 SCM_I_GSC_T_INTMAX='"intmax_t"'
537 SCM_I_GSC_NEEDS_STDINT_H=1
538elif test "$scm_inttypes_has_intmax"; then
539 SCM_I_GSC_T_INTMAX='"intmax_t"'
540 SCM_I_GSC_NEEDS_INTTYPES_H=1
541elif test "$ac_cv_sizeof___int64" -ne 0; then
542 SCM_I_GSC_T_INTMAX='"__int64"'
543elif test "$ac_cv_sizeof_long_long" -ne 0; then
544 SCM_I_GSC_T_INTMAX='"long long"'
545else
546 SCM_I_GSC_T_INTMAX='"long"'
547fi
548AC_SUBST([SCM_I_GSC_T_INTMAX])
549
550### Required type scm_t_uintmax
551###
552### We try 'uintmax_t', 'unsigned __int64', 'unsigned long long' in
553### this order. When none of them is available, we use 'unsigned long'.
554###
555SCM_I_GSC_T_UINTMAX=0
556if test "$scm_stdint_has_uintmax"; then
557 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
558 SCM_I_GSC_NEEDS_STDINT_H=1
559elif test "$scm_inttypes_has_uintmax"; then
560 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
561 SCM_I_GSC_NEEDS_INTTYPES_H=1
562elif test "$ac_cv_sizeof_unsigned___int64" -ne 0; then
563 SCM_I_GSC_T_UINTMAX='"unsigned __int64"'
564elif test "$ac_cv_sizeof_unsigned_long_long" -ne 0; then
565 SCM_I_GSC_T_UINTMAX='"unsigned long long"'
566else
567 SCM_I_GSC_T_UINTMAX='"unsigned long"'
568fi
569AC_SUBST([SCM_I_GSC_T_UINTMAX])
570
114bc68a
LC
571### Required type scm_t_intptr
572###
573SCM_I_GSC_T_INTPTR=0
574if test "$scm_stdint_has_intptr"; then
575 SCM_I_GSC_T_INTPTR='"intptr_t"'
576 SCM_I_GSC_NEEDS_STDINT_H=1
577elif test "$scm_inttypes_has_intptr"; then
578 SCM_I_GSC_T_INTPTR='"intptr_t"'
579 SCM_I_GSC_NEEDS_INTTYPES_H=1
580elif test "$ac_cv_sizeof_int" = "$ac_cv_sizeof_void_p"; then
581 SCM_I_GSC_T_INTPTR='"int"'
582elif test "$ac_cv_sizeof_long" = "$ac_cv_sizeof_void_p"; then
583 SCM_I_GSC_T_INTPTR='"long"'
584elif test "$ac_cv_sizeof_long_long" = "$ac_cv_sizeof_void_p"; then
585 SCM_I_GSC_T_INTPTR='"long long"'
586else
587 AC_MSG_ERROR([Can't find appropriate type for `scm_t_intptr'.])
588fi
589AC_SUBST([SCM_I_GSC_T_INTPTR])
590
591### Required type scm_t_uintptr
592###
593SCM_I_GSC_T_UINTPTR=0
594if test "$scm_stdint_has_uintptr"; then
595 SCM_I_GSC_T_UINTPTR='"uintptr_t"'
596 SCM_I_GSC_NEEDS_STDINT_H=1
597elif test "$scm_inttypes_has_uintptr"; then
598 SCM_I_GSC_T_UINTPTR='"uintptr_t"'
599 SCM_I_GSC_NEEDS_INTTYPES_H=1
600elif test "$ac_cv_sizeof_int" = "$ac_cv_sizeof_void_p"; then
601 SCM_I_GSC_T_UINTPTR='"unsigned int"'
602elif test "$ac_cv_sizeof_long" = "$ac_cv_sizeof_void_p"; then
603 SCM_I_GSC_T_UINTPTR='"unsigned long"'
604elif test "$ac_cv_sizeof_long_long" = "$ac_cv_sizeof_void_p"; then
605 SCM_I_GSC_T_UINTPTR='"unsigned long long"'
606else
607 AC_MSG_ERROR([Can't find appropriate type for `scm_t_uintptr'.])
608fi
609AC_SUBST([SCM_I_GSC_T_UINTPTR])
610
9a52bc2a
RB
611
612AC_SUBST([SCM_I_GSC_NEEDS_STDINT_H])
613AC_SUBST([SCM_I_GSC_NEEDS_INTTYPES_H])
614
3a629497 615AC_HEADER_STDC
3a629497
JB
616AC_HEADER_TIME
617AC_HEADER_SYS_WAIT
450be18d
LC
618AC_HEADER_DIRENT
619
620# Reason for checking:
621#
622# HP-UX 11.11 (at least) doesn't provide `struct dirent64', even
623# with `_LARGEFILE64_SOURCE', so check whether it's available.
624#
625AC_CHECK_MEMBER([struct dirent64.d_name],
626 [SCM_I_GSC_HAVE_STRUCT_DIRENT64=1], [SCM_I_GSC_HAVE_STRUCT_DIRENT64=0],
627 [ #ifndef _LARGEFILE64_SOURCE
628 # define _LARGEFILE64_SOURCE
629 #endif
630
631 /* Per Autoconf manual. */
632 #include <sys/types.h>
633 #ifdef HAVE_DIRENT_H
634 # include <dirent.h>
635 #else
636 # define dirent direct
637 # ifdef HAVE_SYS_NDIR_H
638 # include <sys/ndir.h>
639 # endif
640 # ifdef HAVE_SYS_DIR_H
641 # include <sys/dir.h>
642 # endif
643 # ifdef HAVE_NDIR_H
644 # include <ndir.h>
645 # endif
646 #endif ])
647AC_SUBST([SCM_I_GSC_HAVE_STRUCT_DIRENT64])
bdcccc18 648
63177e46 649# Reasons for testing:
8ab3d8a0 650# complex.h - new in C99
63177e46 651# fenv.h - available in C99, but not older systems
66818dbb
LC
652# machine/fpu.h - on Tru64 5.1b, the declaration of fesetround(3) is in
653# this file instead of <fenv.h>
45c0ff10 654# process.h - mingw specific
a2f00b9b 655# langinfo.h, nl_types.h - SuS v2
22072f21 656# sched.h - missing on MinGW
63177e46 657#
34cf38c3 658AC_CHECK_HEADERS([complex.h fenv.h io.h libc.h limits.h memory.h process.h string.h \
bdcccc18
RB
659regex.h rxposix.h rx/rxposix.h sys/dir.h sys/ioctl.h sys/select.h \
660sys/time.h sys/timeb.h sys/times.h sys/stdtypes.h sys/types.h \
661sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h \
22072f21 662direct.h langinfo.h nl_types.h machine/fpu.h poll.h sched.h])
bdcccc18 663
56d288b8
LC
664# Reasons for testing:
665# nl_item - lacking on Cygwin
666AC_CHECK_TYPES([nl_item], [], [],
667 [[#ifdef HAVE_LANGINFO_H
668 # include <langinfo.h>
669 #endif
670 #ifdef HAVE_NL_TYPES_H
671 # include <nl_types.h>
672 #endif]])
673
8ab3d8a0
KR
674# "complex double" is new in C99, and "complex" is only a keyword if
675# <complex.h> is included
676AC_CHECK_TYPES(complex double,,,
677[#if HAVE_COMPLEX_H
678#include <complex.h>
679#endif])
680
4f416616
KR
681# On MacOS X <sys/socklen.h> contains socklen_t, so must include that
682# when testing.
683AC_CHECK_TYPE(socklen_t, ,
feef98f2 684 [AC_DEFINE_UNQUOTED([socklen_t], int,
4f416616
KR
685 [Define to `int' if <sys/socket.h> does not define.])],
686 [#if HAVE_SYS_TYPES_H
687#include <sys/types.h>
688#endif
689#include <sys/socket.h>
690])
705a2b9b
TCM
691
692AC_CHECK_TYPES([struct ip_mreq], , , [#include <netinet/in.h>])
4f416616 693
3a629497
JB
694GUILE_HEADER_LIBC_WITH_UNISTD
695
696AC_TYPE_GETGROUPS
697AC_TYPE_SIGNAL
698AC_TYPE_MODE_T
699
45c0ff10
KR
700# On mingw -lm is empty, so this test is unnecessary, but it's
701# harmless so we don't hard-code to suppress it.
702#
703AC_CHECK_LIB(m, cos)
704
4c787b52 705AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
706if test $ac_cv_func_gethostbyname = no; then
707 AC_CHECK_LIB(nsl, gethostbyname)
708fi
39e8f371 709
4c787b52 710AC_CHECK_FUNCS(connect)
5852c051
JB
711if test $ac_cv_func_connect = no; then
712 AC_CHECK_LIB(socket, connect)
713fi
5ee74cec 714
f9e5e096
MV
715dnl
716dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
717dnl
718EXTRA_DEFS=""
45c0ff10
KR
719case $host in
720 *-*-mingw*)
6812c28f 721 AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
f9e5e096
MV
722 [Define if you have the <winsock2.h> header file.])])
723 AC_CHECK_LIB(ws2_32, main)
eede3dbc 724 AC_LIBOBJ([win32-uname])
b4e15479 725 if test "$enable_networking" = yes ; then
eede3dbc 726 AC_LIBOBJ([win32-socket])
b4e15479
SJ
727 fi
728 if test "$enable_shared" = yes ; then
8f99e3f3 729 EXTRA_DEFS="-DSCM_IMPORT"
feef98f2 730 AC_DEFINE([USE_DLL_IMPORT], 1,
8f99e3f3 731 [Define if you need additional CPP macros on Win32 platforms.])
f9e5e096 732 fi
45c0ff10
KR
733 ;;
734esac
f9e5e096 735AC_SUBST(EXTRA_DEFS)
f9e5e096 736
ef73a2a0
KR
737# Reasons for testing:
738# crt_externs.h - Darwin specific
739#
740AC_CHECK_HEADERS([assert.h crt_externs.h])
bdcccc18 741
ef73a2a0 742# Reasons for testing:
1df72834
KR
743# DINFINITY - OSF specific
744# DQNAN - OSF specific
745# (DINFINITY and DQNAN are actually global variables, not functions)
8ab3d8a0 746# chsize - an MS-DOS-ism, found in mingw
b69471c1
KR
747# cexp, clog - not in various pre-c99 systems, and note that it's possible
748# for gcc to provide the "complex double" type but the system to not
749# have functions like cexp and clog
8ab3d8a0 750# clog10 - not in mingw (though others like clog and csqrt are)
63177e46 751# fesetround - available in C99, but not older systems
8ab3d8a0
KR
752# ftruncate - posix, but probably not older systems (current mingw
753# has it as an inline for chsize)
23f2b9a3 754# ioctl - not in mingw.
c9d1dcc0 755# gmtime_r - recent posix, not on old systems
45c0ff10
KR
756# pipe - not in mingw
757# _pipe - specific to mingw, taking 3 args
6f81b18a 758# poll - since posix 2001
66ec83c9 759# readdir_r - recent posix, not on old systems
450be18d 760# readdir64_r - not available on HP-UX 11.11
4f416616 761# stat64 - SuS largefile stuff, not on old systems
6b01eac9 762# sysconf - not on old systems
8ab3d8a0 763# truncate - not in mingw
a17d2654 764# isblank - available as a GNU extension or in C99
ef73a2a0 765# _NSGetEnviron - Darwin specific
a2f00b9b
LC
766# strcoll_l, newlocale - GNU extensions (glibc), also available on Darwin
767# nl_langinfo - X/Open, not available on Windows.
06bfe276 768# utimensat: posix.1-2008
fe613fe2 769# sched_getaffinity, sched_setaffinity: GNU extensions (glibc)
ef73a2a0 770#
6f81b18a 771AC_CHECK_FUNCS([DINFINITY DQNAN cexp chsize clog clog10 ctermid fesetround ftime ftruncate fchown getcwd geteuid getsid gettimeofday gmtime_r ioctl lstat mkdir mknod nice pipe _pipe poll readdir_r readdir64_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 nl_langinfo utimensat sched_getaffinity sched_setaffinity])
64e121dc 772
6b01eac9
KR
773# Reasons for testing:
774# netdb.h - not in mingw
775# sys/param.h - not in mingw
45c0ff10
KR
776# pthread.h - only available with pthreads. ACX_PTHREAD doesn't
777# check this specifically, we need it for the timespec test below.
c1d5d6d7 778# pthread_np.h - available on FreeBSD
8ab3d8a0
KR
779# sethostname - the function itself check because it's not in mingw,
780# the DECL is checked because Solaris 10 doens't have in any header
ca329120
LC
781# hstrerror - on Tru64 5.1b the symbol is available in libc but the
782# declaration isn't anywhere.
5f380d71
LC
783# cuserid - on Tru64 5.1b the declaration is documented to be available
784# only with `_XOPEN_SOURCE' or some such.
6b01eac9 785#
c1d5d6d7 786AC_CHECK_HEADERS([crypt.h netdb.h pthread.h pthread_np.h sys/param.h sys/resource.h sys/file.h sys/mman.h])
94e6d793 787AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
5f380d71 788AC_CHECK_DECLS([sethostname, hstrerror, cuserid])
63271ac5
KR
789
790# crypt() may or may not be available, for instance in some countries there
791# are restrictions on cryptography.
792#
793# crypt() might be in libc (eg. OpenBSD), or it might be in a separate
794# -lcrypt library (eg. Debian GNU/Linux).
795#
796# On HP-UX 11, crypt() is in libc and there's a dummy libcrypt.a. We must
797# be careful to avoid -lcrypt in this case, since libtool will see there's
798# only a static libcrypt and decide to build only a static libguile.
799#
800# AC_SEARCH_LIBS lets us add -lcrypt to LIBS only if crypt() is not in the
801# libraries already in that list.
802#
803AC_SEARCH_LIBS(crypt, crypt,
feef98f2 804 [AC_DEFINE([HAVE_CRYPT],1,
63271ac5 805 [Define to 1 if you have the `crypt' function.])])
94e6d793 806
8cd5eae9
NJ
807# When compiling with GCC on some OSs (Solaris, AIX), _Complex_I doesn't
808# work; in the reported cases so far, 1.0fi works well instead. According
809# to the C99 spec, the complex.h header must provide a working definition
810# of _Complex_I, so we always try _Complex_I first. The 1.0fi fallback
811# is a workaround for the failure of some systems to conform to C99.
4b26c03e
NJ
812if test "$ac_cv_type_complex_double" = yes; then
813 AC_MSG_CHECKING([for i])
4bdc8fb5 814 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
4b26c03e
NJ
815#if HAVE_COMPLEX_H
816#include <complex.h>
817#endif
818complex double z;
4bdc8fb5 819]], [[
4b26c03e 820z = _Complex_I;
4bdc8fb5 821]])],
feef98f2 822 [AC_DEFINE([GUILE_I],_Complex_I,[The imaginary unit (positive square root of -1).])
4bdc8fb5
LC
823 AC_MSG_RESULT([_Complex_I])],
824 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
4b26c03e
NJ
825#if HAVE_COMPLEX_H
826#include <complex.h>
827#endif
828complex double z;
4bdc8fb5 829]],[[
4b26c03e 830z = 1.0fi;
4bdc8fb5 831]])],
feef98f2 832 [AC_DEFINE([GUILE_I],1.0fi)
4bdc8fb5
LC
833 AC_MSG_RESULT([1.0fi])],
834 [ac_cv_type_complex_double=no
835 AC_MSG_RESULT([not available])])])
4b26c03e
NJ
836fi
837
8ab3d8a0
KR
838# glibc 2.3.6 (circa 2006) and various prior versions had a bug where
839# csqrt(-i) returned a negative real part, when it should be positive
840# for the principal root.
841#
842if test "$ac_cv_type_complex_double" = yes; then
1d8ce4c0 843
8ab3d8a0
KR
844 AC_CACHE_CHECK([whether csqrt is usable],
845 guile_cv_use_csqrt,
4bdc8fb5 846 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
8ab3d8a0
KR
847#include <complex.h>
848/* "volatile" is meant to prevent gcc from calculating the sqrt as a
849 constant, we want to test libc. */
850volatile complex double z = - _Complex_I;
851int
852main (void)
853{
854 z = csqrt (z);
855 if (creal (z) > 0.0)
856 return 0; /* good */
857 else
858 return 1; /* bad */
4bdc8fb5 859}]])],
8ab3d8a0
KR
860 [guile_cv_use_csqrt=yes],
861 [guile_cv_use_csqrt="no, glibc 2.3 bug"],
862 [guile_cv_use_csqrt="yes, hopefully (cross-compiling)"])])
863 case $guile_cv_use_csqrt in
864 yes*)
feef98f2 865 AC_DEFINE([HAVE_USABLE_CSQRT], 1, [Define to 1 if csqrt is bug-free])
8ab3d8a0
KR
866 ;;
867 esac
868fi
869
72678820 870AC_CACHE_SAVE
8ab3d8a0 871
a6be66ed 872dnl GMP tests
db5034ab 873AC_LIB_HAVE_LINKFLAGS([gmp],
4bdc8fb5 874 [],
f4863880 875 [#include <gmp.h>],
db5034ab
LC
876 [mpz_import (0, 0, 0, 0, 0, 0, 0);])
877
878if test "x$HAVE_LIBGMP" != "xyes"; then
879 AC_MSG_ERROR([GNU MP 4.1 or greater not found, see README])
880fi
9f1555fe 881
18c73f8e 882dnl GNU libunistring is checked for by Gnulib's `libunistring' module.
abd7e37a 883if test "x$LTLIBUNISTRING" = "x"; then
b7b93288
LC
884 AC_MSG_ERROR([GNU libunistring is required, please install it.])
885fi
9f1555fe 886
969bb92e
LC
887GUILE_LIBUNISTRING_WITH_ICONV_SUPPORT
888if test "x$ac_cv_libunistring_with_iconv_support" != "xyes"; then
889 AC_MSG_ERROR([No iconv support. Please recompile libunistring with iconv enabled.])
890fi
514ff6ea 891
75c242a2
AW
892dnl Libffi is needed to compile Guile's foreign function interface, but its
893dnl interface isn't exposed in Guile's API.
894PKG_CHECK_MODULES(LIBFFI, libffi)
895AC_SUBST(LIBFFI_CFLAGS)
896AC_SUBST(LIBFFI_LIBS)
897
898dnl figure out approriate ffi type for size_t
899AC_CHECK_SIZEOF(size_t)
900AC_CHECK_SIZEOF(ssize_t)
901ffi_size_type=uint$(($ac_cv_sizeof_size_t*8))
902ffi_ssize_type=sint$(($ac_cv_sizeof_ssize_t*8))
ac7b8e8e 903AC_DEFINE_UNQUOTED([ffi_type_size_t], ffi_type_${ffi_size_type},
75c242a2 904 [ffi type for size_t])
ac7b8e8e 905AC_DEFINE_UNQUOTED([ffi_type_ssize_t], ffi_type_${ffi_ssize_type},
75c242a2
AW
906 [ffi type for ssize_t])
907
83cd507c 908dnl i18n tests
b6540274
MV
909#AC_CHECK_HEADERS([libintl.h])
910#AC_CHECK_FUNCS(gettext)
911#if test $ac_cv_func_gettext = no; then
912# AC_CHECK_LIB(intl, gettext)
913#fi
914#AC_CHECK_FUNCS([bindtextdomain textdomain])
915AM_GNU_GETTEXT([external], [need-ngettext])
83cd507c 916
777b022a
JB
917### Some systems don't declare some functions. On such systems, we
918### need to at least provide our own K&R-style declarations.
919
920### GUILE_FUNC_DECLARED(function, headerfile)
921
922### Check for a declaration of FUNCTION in HEADERFILE; if it is
923### not there, #define MISSING_FUNCTION_DECL.
d70e0619 924AC_DEFUN([GUILE_FUNC_DECLARED], [
fc342a63 925 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 926 AC_EGREP_HEADER($1, $2,
01e5e07e 927 guile_cv_func_$1_declared=yes,
fc342a63
JB
928 guile_cv_func_$1_declared=no))
929 if test [x$guile_cv_func_]$1[_declared] = xno; then
eede3dbc
RB
930 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL], 1,
931 [Define if the operating system supplies $1 without declaring it.])
777b022a
JB
932 fi
933])
934
c31bfb85 935GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 936GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 937
0777022d
KR
938AC_CHECK_DECLS([strptime],,,
939[#define _GNU_SOURCE /* ask glibc to give strptime prototype */
940#include <time.h>])
941
da753252
JB
942### On some systems usleep has no return value. If it does have one,
943### we'd like to return it; otherwise, we'll fake it.
fc342a63 944AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
c43f86c1 945 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
4874dfc8 946 unistd.h,
fc342a63
JB
947 [guile_cv_func_usleep_return_type=void],
948 [guile_cv_func_usleep_return_type=int])])
949case "$guile_cv_func_usleep_return_type" in
950 "void" )
feef98f2 951 AC_DEFINE([USLEEP_RETURNS_VOID], 1,
eede3dbc 952 [Define if the system headers declare usleep to return void.])
fc342a63
JB
953 ;;
954esac
955
da88f0cb
JB
956AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
957if test -n "$have_sys_un_h" ; then
feef98f2 958 AC_DEFINE([HAVE_UNIX_DOMAIN_SOCKETS], 1,
eede3dbc 959 [Define if the system supports Unix-domain (file-domain) sockets.])
da88f0cb
JB
960fi
961
4ea9429e
AW
962AC_CHECK_FUNCS(getrlimit setrlimit)
963
d707b9df 964AC_CHECK_FUNCS(socketpair getgroups setgroups setpwent pause tzset)
da88f0cb 965
219a5a5b
JB
966AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
967 setnetent getnetent endnetent dnl
968 setprotoent getprotoent endprotoent dnl
969 setservent getservent endservent dnl
5c11cc9d 970 getnetbyaddr getnetbyname dnl
8912421c 971 inet_lnaof inet_makeaddr inet_netof hstrerror)
da88f0cb 972
482d311b 973AC_CHECK_MEMBERS([struct sockaddr_in.sin_len],,,
feef329e
KR
974[#ifdef HAVE_SYS_TYPES_H
975#include <sys/types.h>
976#endif
977#include <netinet/in.h>])
978
d19c9767 979AC_MSG_CHECKING(for __libc_stack_end)
2e945bcc 980AC_CACHE_VAL(guile_cv_have_libc_stack_end,
4bdc8fb5
LC
981[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
982extern char *__libc_stack_end;]],
983 [[printf("%p", (char*) __libc_stack_end);]])],
984 [guile_cv_have_libc_stack_end=yes],
985 [guile_cv_have_libc_stack_end=no])])
2e945bcc
SJ
986AC_MSG_RESULT($guile_cv_have_libc_stack_end)
987
988if test $guile_cv_have_libc_stack_end = yes; then
feef98f2 989 AC_DEFINE([HAVE_LIBC_STACK_END], 1,
d19c9767
MV
990 [Define if you have the __libc_stack_end variable.])
991fi
992
08f980a4
GH
993dnl Some systems do not declare this. Some systems do declare it, as a
994dnl macro. With cygwin it may be in a DLL.
995
996AC_MSG_CHECKING(whether netdb.h declares h_errno)
997AC_CACHE_VAL(guile_cv_have_h_errno,
4bdc8fb5
LC
998 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]],
999 [[int a = h_errno;]])],
1000 [guile_cv_have_h_errno=yes],
1001 [guile_cv_have_h_errno=no])])
08f980a4
GH
1002AC_MSG_RESULT($guile_cv_have_h_errno)
1003if test $guile_cv_have_h_errno = yes; then
feef98f2 1004 AC_DEFINE([HAVE_H_ERRNO], 1, [Define if h_errno is declared in netdb.h.])
08f980a4 1005fi
da88f0cb 1006
4f522b6f 1007AC_MSG_CHECKING(whether uint32_t is defined)
c5316ea3 1008AC_CACHE_VAL(guile_cv_have_uint32_t,
4bdc8fb5 1009 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
af68e5e5
SJ
1010 #if HAVE_STDINT_H
1011 #include <stdint.h>
1012 #endif
45c0ff10 1013 #ifndef HAVE_NETDB_H
af68e5e5 1014 #include <netdb.h>
4bdc8fb5
LC
1015 #endif]],
1016 [[uint32_t a;]])],
1017 [guile_cv_have_uint32_t=yes],
1018 [guile_cv_have_uint32_t=no])])
c5316ea3
GH
1019AC_MSG_RESULT($guile_cv_have_uint32_t)
1020if test $guile_cv_have_uint32_t = yes; then
feef98f2 1021 AC_DEFINE([HAVE_UINT32_T], 1,
eede3dbc 1022 [Define if uint32_t typedef is defined when netdb.h is include.])
c5316ea3
GH
1023fi
1024
018a53a1
GH
1025AC_MSG_CHECKING(for working IPv6 support)
1026AC_CACHE_VAL(guile_cv_have_ipv6,
4bdc8fb5 1027[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
8f16fe5a
MV
1028#ifdef HAVE_SYS_TYPES_H
1029#include <sys/types.h>
1030#endif
1031#include <netinet/in.h>
4bdc8fb5
LC
1032#include <sys/socket.h>]],
1033[[struct sockaddr_in6 a; a.sin6_family = AF_INET6;]])],
1034[guile_cv_have_ipv6=yes],
1035[guile_cv_have_ipv6=no])])
018a53a1
GH
1036AC_MSG_RESULT($guile_cv_have_ipv6)
1037if test $guile_cv_have_ipv6 = yes; then
feef98f2 1038 AC_DEFINE([HAVE_IPV6], 1, [Define if you want support for IPv6.])
018a53a1
GH
1039fi
1040
67641981
GH
1041# included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
1042AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
1043AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
4bdc8fb5 1044[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
8f16fe5a
MV
1045#ifdef HAVE_SYS_TYPES_H
1046#include <sys/types.h>
1047#endif
4bdc8fb5
LC
1048#include <netinet/in.h>]],
1049[[struct sockaddr_in6 sok; sok.sin6_scope_id = 0;]])],
1050[guile_cv_have_sin6_scope_id=yes],
1051[guile_cv_have_sin6_scope_id=no])])
67641981
GH
1052AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
1053if test $guile_cv_have_sin6_scope_id = yes; then
feef98f2 1054 AC_DEFINE([HAVE_SIN6_SCOPE_ID], 1,
eede3dbc 1055 [Define this if your IPv6 has sin6_scope_id in sockaddr_in6 struct.])
67641981
GH
1056fi
1057
feef329e
KR
1058# struct sockaddr_in6 field sin_len is only present on BSD systems
1059AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_len],,,
1060[#ifdef HAVE_SYS_TYPES_H
1061#include <sys/types.h>
1062#endif
1063#include <netinet/in.h>])
1064
38c1d3c4
GH
1065AC_MSG_CHECKING(whether localtime caches TZ)
1066AC_CACHE_VAL(guile_cv_localtime_cache,
1067[if test x$ac_cv_func_tzset = xyes; then
4bdc8fb5 1068AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <time.h>
38c1d3c4
GH
1069#if STDC_HEADERS
1070# include <stdlib.h>
1071#endif
1072extern char **environ;
1073unset_TZ ()
1074{
1075 char **from, **to;
1076 for (to = from = environ; (*to = *from); from++)
1077 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
1078 to++;
1079}
1080char TZ_GMT0[] = "TZ=GMT0";
1081char TZ_PST8[] = "TZ=PST8";
1082main()
1083{
1084 time_t now = time ((time_t *) 0);
1085 int hour_GMT0, hour_unset;
1086 if (putenv (TZ_GMT0) != 0)
1087 exit (1);
1088 hour_GMT0 = localtime (&now)->tm_hour;
1089 unset_TZ ();
1090 hour_unset = localtime (&now)->tm_hour;
1091 if (putenv (TZ_PST8) != 0)
1092 exit (1);
1093 if (localtime (&now)->tm_hour == hour_GMT0)
1094 exit (1);
1095 unset_TZ ();
1096 if (localtime (&now)->tm_hour != hour_unset)
1097 exit (1);
1098 exit (0);
4bdc8fb5
LC
1099}]])],
1100[guile_cv_localtime_cache=no],
1101[guile_cv_localtime_cache=yes],
38c1d3c4
GH
1102[# If we have tzset, assume the worst when cross-compiling.
1103guile_cv_localtime_cache=yes])
1104else
1105 # If we lack tzset, report that localtime does not cache TZ,
1106 # since we can't invalidate the cache if we don't have tzset.
1107 guile_cv_localtime_cache=no
1108fi])dnl
1109AC_MSG_RESULT($guile_cv_localtime_cache)
1110if test $guile_cv_localtime_cache = yes; then
feef98f2 1111 AC_DEFINE([LOCALTIME_CACHE], 1, [Define if localtime caches the TZ setting.])
38c1d3c4
GH
1112fi
1113
52cfc69b
GH
1114if test "$enable_regex" = yes; then
1115 if test "$ac_cv_header_regex_h" = yes ||
1116 test "$ac_cv_header_rxposix_h" = yes ||
1117 test "$ac_cv_header_rx_rxposix_h" = yes; then
eede3dbc 1118 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [AC_LIBOBJ([regex-posix])],
52cfc69b 1119 [AC_CHECK_LIB(rx, main)
eede3dbc 1120 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [AC_LIBOBJ([regex-posix])],
f9e5e096 1121 [AC_CHECK_LIB(regex, main)
eede3dbc 1122 GUILE_NAMED_CHECK_FUNC(regcomp, regex, [AC_LIBOBJ([regex-posix])])])]
52cfc69b
GH
1123 )
1124 dnl The following should not be necessary, but for some reason
1125 dnl autoheader misses it if we don't include it!
1126 if test "$ac_cv_func_regcomp_norx" = yes ||
f9e5e096 1127 test "$ac_cv_func_regcomp_regex" = yes ||
52cfc69b 1128 test "$ac_cv_func_regcomp_rx" = yes; then
feef98f2 1129 AC_DEFINE([HAVE_REGCOMP], 1,
eede3dbc 1130 [This is included as part of a workaround for a autoheader bug.])
52cfc69b
GH
1131 fi
1132 fi
da88f0cb 1133fi
8e1bfcd0 1134
1bf291e4 1135AC_REPLACE_FUNCS([strerror memmove mkstemp])
3a629497 1136
21b860c8
KR
1137# Reasons for testing:
1138# asinh, acosh, atanh, trunc - C99 standard, generally not available on
1139# older systems
1140# sincos - GLIBC extension
9af31eed 1141#
8ab3d8a0 1142AC_CHECK_FUNCS(asinh acosh atanh copysign finite sincos trunc)
4d0bfea1
KR
1143
1144# C99 specifies isinf and isnan as macros.
1145# HP-UX provides only macros, no functions.
c80bab35
KR
1146# glibc 2.3.2 provides both macros and functions.
1147# IRIX 6.5 and Solaris 8 only provide functions.
4d0bfea1 1148#
c80bab35
KR
1149# The following tests detect isinf and isnan either as functions or as
1150# macros from <math.h>. Plain AC_CHECK_FUNCS is insufficient, it doesn't
1151# use <math.h> so doesn't detect on macro-only systems like HP-UX.
4d0bfea1
KR
1152#
1153AC_MSG_CHECKING([for isinf])
ad0fedbf 1154AC_LINK_IFELSE([AC_LANG_SOURCE(
b3aa4626
KR
1155[[#include <math.h>
1156volatile double x = 0.0;
ad0fedbf 1157int main () { return (isinf(x) != 0); }]])],
4d0bfea1 1158 [AC_MSG_RESULT([yes])
feef98f2 1159 AC_DEFINE([HAVE_ISINF], 1,
4d0bfea1
KR
1160 [Define to 1 if you have the `isinf' macro or function.])],
1161 [AC_MSG_RESULT([no])])
1162AC_MSG_CHECKING([for isnan])
ad0fedbf
AW
1163AC_LINK_IFELSE([AC_LANG_SOURCE([[
1164#include <math.h>
b3aa4626 1165volatile double x = 0.0;
ad0fedbf 1166int main () { return (isnan(x) != 0); }]])],
4d0bfea1 1167 [AC_MSG_RESULT([yes])
feef98f2 1168 AC_DEFINE([HAVE_ISNAN], 1,
4d0bfea1
KR
1169 [Define to 1 if you have the `isnan' macro or function.])],
1170 [AC_MSG_RESULT([no])])
594e69b7 1171
23f2b9a3
KR
1172# Reasons for checking:
1173#
1174# st_rdev
1175# st_blksize
1176# st_blocks not in mingw
8ab3d8a0 1177# tm_gmtoff BSD+GNU, not in C99
23f2b9a3
KR
1178#
1179# Note AC_STRUCT_ST_BLOCKS is not used here because we don't want the
1180# AC_LIBOBJ(fileblocks) replacement which that macro gives.
1181#
06bfe276
AW
1182AC_CHECK_MEMBERS([struct stat.st_rdev, struct stat.st_blksize, struct stat.st_blocks, struct stat.st_atim, struct stat.st_mtim, struct stat.st_ctim],,,
1183 [#define _GNU_SOURCE
1184AC_INCLUDES_DEFAULT
1185])
fd02f2ad 1186
3a629497 1187AC_STRUCT_TIMEZONE
8ab3d8a0
KR
1188AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,
1189[#include <time.h>
1190#ifdef TIME_WITH_SYS_TIME
1191# include <sys/time.h>
1192# include <time.h>
1193#else
1194# if HAVE_SYS_TIME_H
1195# include <sys/time.h>
1196# else
1197# include <time.h>
1198# endif
1199#endif
1200])
3a629497
JB
1201GUILE_STRUCT_UTIMBUF
1202
8ab3d8a0 1203
ad378da9
AW
1204#--------------------------------------------------------------------
1205#
1206# What values do the iconv error handlers have?
1207#
1208# The only place that we need iconv in our public interfaces is for
1209# the error handlers, which are just ints. So we weaken our
1210# dependency by looking up those values at configure-time.
1211#--------------------------------------------------------------------
10c29ebd 1212GUILE_UNISTRING_ICONVEH_VALUES
ad378da9 1213
3a629497
JB
1214#--------------------------------------------------------------------
1215#
1216# Which way does the stack grow?
1217#
236f901b 1218# Following code comes from Autoconf 2.69's internal _AC_LIBOBJ_ALLOCA
4696a666
NJ
1219# macro (/usr/share/autoconf/autoconf/functions.m4). Gnulib has
1220# very similar code, so in future we could look at using that.
1221#
1222# An important detail is that the code involves find_stack_direction
1223# calling _itself_ - which means that find_stack_direction (or at
1224# least the second find_stack_direction() call) cannot be inlined.
1225# If the code could be inlined, that might cause the test to give
1226# an incorrect answer.
3a629497
JB
1227#--------------------------------------------------------------------
1228
9a52bc2a 1229SCM_I_GSC_STACK_GROWS_UP=0
5ea8e76e 1230AC_RUN_IFELSE([AC_LANG_SOURCE(
4696a666
NJ
1231[AC_INCLUDES_DEFAULT
1232int
236f901b 1233find_stack_direction (int *addr, int depth)
4696a666 1234{
236f901b
AW
1235 int dir, dummy = 0;
1236 if (! addr)
1237 addr = &dummy;
1238 *addr = addr < &dummy ? 1 : addr == &dummy ? 0 : -1;
1239 dir = depth ? find_stack_direction (addr, depth - 1) : 0;
1240 return dir + dummy;
4696a666
NJ
1241}
1242
1243int
236f901b 1244main (int argc, char **argv)
4696a666 1245{
236f901b 1246 return find_stack_direction (0, argc + !argv + 20) < 0;
4696a666
NJ
1247}])],
1248 [SCM_I_GSC_STACK_GROWS_UP=1],
1249 [],
5ea8e76e 1250 [AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h)])
eede3dbc 1251
26224b3f
LC
1252#--------------------------------------------------------------------
1253#
1254# Boehm's GC library
1255#
1256#--------------------------------------------------------------------
1f26b531
LC
1257PKG_CHECK_MODULES([BDW_GC], [bdw-gc])
1258
abd7e37a 1259save_LIBS="$LIBS"
1f26b531 1260LIBS="$BDW_GC_LIBS $LIBS"
abd7e37a 1261CFLAGS="$BDW_GC_CFLAGS $CFLAGS"
26224b3f 1262
4eb28612 1263AC_CHECK_FUNCS([GC_do_blocking GC_call_with_gc_active GC_pthread_exit GC_pthread_cancel GC_allow_register_threads GC_pthread_sigmask GC_set_start_callback GC_get_heap_usage_safe GC_get_free_space_divisor GC_gcollect_and_unmap GC_get_unmapped_bytes])
cde24ce1
AW
1264
1265# Though the `GC_do_blocking ()' symbol is present in GC 7.1, it is not
1266# declared, and has a different type (returning void instead of
1267# void*).
9625c900
LC
1268AC_CHECK_DECL([GC_do_blocking],
1269 [AC_DEFINE([HAVE_DECL_GC_DO_BLOCKING], [1],
1270 [Define this if the `GC_do_blocking ()' function is declared])],
1271 [],
1272 [#include <gc/gc.h>])
1273
3d1af79f
LC
1274# `GC_fn_type' is not available in GC 7.1 and earlier.
1275AC_CHECK_TYPE([GC_fn_type],
1276 [AC_DEFINE([HAVE_GC_FN_TYPE], [1],
1277 [Define this if the `GC_fn_type' type is available.])],
1278 [],
1279 [#include <gc/gc.h>])
1280
5f0d2951
AW
1281# `GC_stack_base' is not available in GC 7.1 and earlier.
1282AC_CHECK_TYPE([struct GC_stack_base],
1283 [AC_DEFINE([HAVE_GC_STACK_BASE], [1],
1284 [Define this if the `GC_stack_base' type is available.])],
1285 [],
1286 [#include <gc/gc.h>])
1287
abd7e37a
LC
1288LIBS="$save_LIBS"
1289
26224b3f 1290
a9e0a8af
KR
1291AC_CHECK_SIZEOF(float)
1292if test "$ac_cv_sizeof_float" -le "$ac_cv_sizeof_long"; then
feef98f2 1293 AC_DEFINE([SCM_SINGLES], 1,
a9e0a8af
KR
1294 [Define this if floats are the same size as longs.])
1295fi
3a629497
JB
1296
1297AC_MSG_CHECKING(for struct linger)
1298AC_CACHE_VAL(scm_cv_struct_linger,
4bdc8fb5 1299 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3a629497 1300#include <sys/types.h>
4bdc8fb5
LC
1301#include <sys/socket.h>]],
1302 [[struct linger lgr; lgr.l_linger = 100]])],
1303 [scm_cv_struct_linger="yes"],
1304 [scm_cv_struct_linger="no"]))
3a629497
JB
1305AC_MSG_RESULT($scm_cv_struct_linger)
1306if test $scm_cv_struct_linger = yes; then
feef98f2 1307 AC_DEFINE([HAVE_STRUCT_LINGER], 1,
eede3dbc
RB
1308 [Define this if your system defines struct linger, for use with the
1309 getsockopt and setsockopt system calls.])
3a629497 1310fi
3a629497 1311
7534dfdc 1312
45c0ff10
KR
1313# On mingw, struct timespec is in <pthread.h>.
1314#
7534dfdc
MD
1315AC_MSG_CHECKING(for struct timespec)
1316AC_CACHE_VAL(scm_cv_struct_timespec,
4bdc8fb5 1317 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
45c0ff10
KR
1318#include <time.h>
1319#if HAVE_PTHREAD_H
1320#include <pthread.h>
4bdc8fb5
LC
1321#endif]], [[struct timespec t; t.tv_nsec = 100]])],
1322 [scm_cv_struct_timespec="yes"],
1323 [scm_cv_struct_timespec="no"]))
7534dfdc
MD
1324AC_MSG_RESULT($scm_cv_struct_timespec)
1325if test $scm_cv_struct_timespec = yes; then
feef98f2 1326 AC_DEFINE([HAVE_STRUCT_TIMESPEC], 1,
45c0ff10 1327 [Define this if your system defines struct timespec via either <time.h> or <pthread.h>.])
7534dfdc
MD
1328fi
1329
3a629497
JB
1330#--------------------------------------------------------------------
1331#
1332# Flags for thread support
1333#
1334#--------------------------------------------------------------------
1335
9a52bc2a
RB
1336SCM_I_GSC_USE_PTHREAD_THREADS=0
1337SCM_I_GSC_USE_NULL_THREADS=0
9a52bc2a
RB
1338AC_SUBST([SCM_I_GSC_USE_PTHREAD_THREADS])
1339AC_SUBST([SCM_I_GSC_USE_NULL_THREADS])
9a52bc2a 1340
539c89a1
JB
1341### What thread package has the user asked for?
1342AC_ARG_WITH(threads, [ --with-threads thread interface],
18622c4e 1343 , with_threads=yes)
539c89a1 1344
8ab3d8a0 1345AC_SUBST(SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT, 0)
66302618 1346AC_SUBST(SCM_I_GSC_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER, 0)
8ab3d8a0 1347
539c89a1 1348case "$with_threads" in
9bc4701c 1349 "yes" | "pthread" | "pthreads" | "pthread-threads" | "")
56ae2148
LC
1350
1351 build_pthread_support="yes"
1352
345b17e9
LC
1353 ACX_PTHREAD([CC="$PTHREAD_CC"
1354 LIBS="$PTHREAD_LIBS $LIBS"
1355 SCM_I_GSC_USE_PTHREAD_THREADS=1
1356 with_threads="pthreads"],
1357 [with_threads="null"
1358 build_pthread_support="no"])
49aaa6d2
MV
1359
1360 old_CFLAGS="$CFLAGS"
1361 CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
8ab3d8a0
KR
1362
1363 # Reasons for testing:
1364 # pthread_getattr_np - "np" meaning "non portable" says it
1365 # all; not present on MacOS X or Solaris 10
45c0ff10
KR
1366 # pthread_get_stackaddr_np - "np" meaning "non portable" says it
1367 # all; specific to MacOS X
c1d5d6d7
AW
1368 # pthread_attr_get_np - "np" meaning "non portable" says it
1369 # all; specific to FreeBSD
45c0ff10 1370 # pthread_sigmask - not available on mingw
8ab3d8a0 1371 #
c1d5d6d7 1372 AC_CHECK_FUNCS(pthread_attr_getstack pthread_getattr_np pthread_get_stackaddr_np pthread_attr_get_np pthread_sigmask)
8ab3d8a0
KR
1373
1374 # On past versions of Solaris, believe 8 through 10 at least, you
1375 # had to write "pthread_once_t foo = { PTHREAD_ONCE_INIT };".
66302618 1376 # This is contrary to POSIX:
8ab3d8a0
KR
1377 # http://www.opengroup.org/onlinepubs/000095399/functions/pthread_once.html
1378 # Check here if this style is required.
1379 #
1380 # glibc (2.3.6 at least) works both with or without braces, so the
1381 # test checks whether it works without.
1382 #
66302618
LC
1383
1384 if test "$GCC" = "yes"; then
1385 # Since GCC only issues a warning for missing braces, so we need
1386 # `-Werror' to catch it.
1387 CFLAGS="-Werror -Wmissing-braces $CFLAGS"
1388 fi
1389
8ab3d8a0
KR
1390 AC_CACHE_CHECK([whether PTHREAD_ONCE_INIT needs braces],
1391 guile_cv_need_braces_on_pthread_once_init,
ad0fedbf
AW
1392 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <pthread.h>
1393 pthread_once_t foo = PTHREAD_ONCE_INIT;]])],
8ab3d8a0
KR
1394 [guile_cv_need_braces_on_pthread_once_init=no],
1395 [guile_cv_need_braces_on_pthread_once_init=yes])])
1396 if test "$guile_cv_need_braces_on_pthread_once_init" = yes; then
1397 SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT=1
1398 fi
1399
66302618
LC
1400 # Same problem with `PTHREAD_MUTEX_INITIALIZER', e.g., on IRIX
1401 # 6.5.30m with GCC 3.3.
1402 AC_CACHE_CHECK([whether PTHREAD_MUTEX_INITIALIZER needs braces],
1403 guile_cv_need_braces_on_pthread_mutex_initializer,
ad0fedbf
AW
1404 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <pthread.h>
1405 pthread_mutex_t foo = PTHREAD_MUTEX_INITIALIZER;]])],
66302618
LC
1406 [guile_cv_need_braces_on_pthread_mutex_initializer=no],
1407 [guile_cv_need_braces_on_pthread_mutex_initializer=yes])])
1408 if test "$guile_cv_need_braces_on_pthread_mutex_initializer" = yes; then
1409 SCM_I_GSC_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER=1
1410 fi
1411
49aaa6d2
MV
1412 CFLAGS="$old_CFLAGS"
1413
d707b9df
MV
1414 # On Solaris, sched_yield lives in -lrt.
1415 AC_SEARCH_LIBS(sched_yield, rt)
1416
539c89a1 1417 ;;
539c89a1 1418esac
3a629497 1419
18622c4e 1420case "$with_threads" in
9bc4701c 1421 "pthreads")
585356dc 1422 ;;
18622c4e 1423 "no" | "null")
9a52bc2a 1424 SCM_I_GSC_USE_NULL_THREADS=1
81adf76a 1425 SCM_I_GSC_HAVE_THREAD_STORAGE_CLASS=0
18622c4e 1426 with_threads="null-threads"
18306183 1427 ;;
585356dc 1428 * )
18622c4e 1429 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
585356dc
MV
1430 ;;
1431esac
539c89a1 1432
18622c4e
MV
1433AC_MSG_CHECKING(what kind of threads to support)
1434AC_MSG_RESULT($with_threads)
933a7411 1435
56ae2148
LC
1436AM_CONDITIONAL([BUILD_PTHREAD_SUPPORT],
1437 [test "x$build_pthread_support" = "xyes"])
1438
1439
4f416616
KR
1440## Check whether pthread_attr_getstack works for the main thread
1441
23f2b9a3
KR
1442if test "$with_threads" = pthreads; then
1443
b016e12e 1444AC_MSG_CHECKING([whether pthread_attr_getstack works for the main thread])
4f416616
KR
1445old_CFLAGS="$CFLAGS"
1446CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
b016e12e
VG
1447if test "$cross_compiling" = "no"; then
1448 AC_RUN_IFELSE([AC_LANG_SOURCE([[
1449 #if HAVE_PTHREAD_ATTR_GETSTACK
1450 #include <pthread.h>
1451
1452 int main ()
1453 {
1454 pthread_attr_t attr;
1455 void *start, *end;
1456 size_t size;
1457
1458 pthread_getattr_np (pthread_self (), &attr);
1459 pthread_attr_getstack (&attr, &start, &size);
1460 end = (char *)start + size;
1461
1462 if ((void *)&attr < start || (void *)&attr >= end)
1463 return 1;
1464 else
1465 return 0;
1466 }
1467 #else
1468 int main ()
1469 {
4f416616 1470 return 1;
b016e12e
VG
1471 }
1472 #endif
1473 ]])],
1474 [works=yes
1475 AC_DEFINE([PTHREAD_ATTR_GETSTACK_WORKS], [1], [Define when pthread_att_get_stack works for the main thread])],
1476 [works=no],
1477 [])
1478else
1479 works="assuming it doesn't"
1480fi
4f416616
KR
1481CFLAGS="$old_CFLAGS"
1482AC_MSG_RESULT($works)
1483
705edb95
LC
1484GUILE_THREAD_LOCAL_STORAGE
1485
23f2b9a3
KR
1486fi # with_threads=pthreads
1487
1488
0db83c04
MV
1489## Cross building
1490if test "$cross_compiling" = "yes"; then
1491 AC_MSG_CHECKING(cc for build)
1492 ## /usr/bin/cc still uses wrong assembler
1493 ## CC_FOR_BUILD="${CC_FOR_BUILD-/usr/bincc}"
1494 CC_FOR_BUILD="${CC_FOR_BUILD-PATH=/usr/bin:$PATH cc}"
1495else
1496 CC_FOR_BUILD="${CC_FOR_BUILD-$CC}"
1497fi
0db83c04
MV
1498
1499## AC_MSG_CHECKING("if we are cross compiling")
1500## AC_MSG_RESULT($cross_compiling)
1501if test "$cross_compiling" = "yes"; then
1502 AC_MSG_RESULT($CC_FOR_BUILD)
1503fi
1504
1505## No need as yet to be more elaborate
1506CCLD_FOR_BUILD="$CC_FOR_BUILD"
1507
1508AC_SUBST(cross_compiling)
457a4e81 1509AC_ARG_VAR(CC_FOR_BUILD,[build system C compiler])
0db83c04
MV
1510AC_SUBST(CCLD_FOR_BUILD)
1511
1512## libtool erroneously calls CC_FOR_BUILD HOST_CC;
1513## --HOST is the platform that PACKAGE is compiled for.
1514HOST_CC="$CC_FOR_BUILD"
1515AC_SUBST(HOST_CC)
1516
1c1f7a32 1517GUILE_CHECK_GUILE_FOR_BUILD
0db83c04 1518
3a629497 1519## If we're using GCC, ask for aggressive warnings.
f29ded4b 1520GCC_CFLAGS=""
3a629497 1521case "$GCC" in
99be3450 1522 yes )
0a1b8b15
JB
1523 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
1524 ## much stuff with generic function pointers for that to really be
1525 ## less than exasperating.
aee8ca3f
GH
1526 ## -Wpointer-arith was here too, but something changed in gcc/glibc
1527 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
dd7d0148
LC
1528 ## -Wundef was removed because Gnulib prevented it (see
1529 ## <http://thread.gmane.org/gmane.lisp.guile.bugs/5329>.)
f5ea0499
LC
1530
1531 ## Build with `-fno-strict-aliasing' to prevent miscompilation on
1532 ## some platforms. See
1533 ## <http://lists.gnu.org/archive/html/guile-devel/2012-01/msg00487.html>.
1534
8bcecbd3 1535 POTENTIAL_GCC_CFLAGS="-Wall -Wmissing-prototypes \
dd7d0148 1536 -Wdeclaration-after-statement \
f5ea0499 1537 -Wswitch-enum -fno-strict-aliasing"
5c07af6e
MV
1538 # Do this here so we don't screw up any of the tests above that might
1539 # not be "warning free"
1540 if test "${GUILE_ERROR_ON_WARNING}" = yes
1541 then
f29ded4b 1542 POTENTIAL_GCC_CFLAGS="${POTENTIAL_GCC_CFLAGS} -Werror"
5c07af6e
MV
1543 enable_compile_warnings=no
1544 fi
f29ded4b
LC
1545
1546 for flag in $POTENTIAL_GCC_CFLAGS
1547 do
1548 gl_WARN_ADD([$flag], [GCC_CFLAGS])
1549 done
5c07af6e 1550 ;;
3a629497
JB
1551esac
1552
582a4997
LC
1553AC_SUBST(GCC_CFLAGS)
1554
9d19a9d6
LC
1555# Check for GNU ld's "-z relro".
1556GUILE_GNU_LD_RELRO
1557
1558
3a629497
JB
1559## If we're creating a shared library (using libtool!), then we'll
1560## need to generate a list of .lo files corresponding to the .o files
1561## given in LIBOBJS. We'll call it LIBLOBJS.
eede3dbc 1562LIBLOBJS="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`"
3a629497 1563
e9e225e5 1564## We also need to create corresponding .doc and .x files
eede3dbc
RB
1565EXTRA_DOT_DOC_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.doc ,g;s,\.[[^.]]*$,.doc,'`"
1566EXTRA_DOT_X_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.x ,g;s,\.[[^.]]*$,.x,'`"
91411868 1567
7a5ab369
LC
1568# GNU Readline bindings.
1569GUILE_READLINE
1570
7c86ae05
JB
1571AC_SUBST(GUILE_MAJOR_VERSION)
1572AC_SUBST(GUILE_MINOR_VERSION)
df4a8db0 1573AC_SUBST(GUILE_MICRO_VERSION)
9e6e154e 1574AC_SUBST(GUILE_EFFECTIVE_VERSION)
7c86ae05 1575AC_SUBST(GUILE_VERSION)
9e202853 1576
22b7f585
RB
1577#######################################################################
1578# library versioning
1579
9e202853
RB
1580AC_SUBST(LIBGUILE_INTERFACE_CURRENT)
1581AC_SUBST(LIBGUILE_INTERFACE_REVISION)
1582AC_SUBST(LIBGUILE_INTERFACE_AGE)
1583AC_SUBST(LIBGUILE_INTERFACE)
539c89a1 1584
b89c4943
LC
1585AC_SUBST(LIBGUILE_I18N_MAJOR)
1586AC_SUBST(LIBGUILE_I18N_INTERFACE_CURRENT)
1587AC_SUBST(LIBGUILE_I18N_INTERFACE_REVISION)
1588AC_SUBST(LIBGUILE_I18N_INTERFACE_AGE)
1589AC_SUBST(LIBGUILE_I18N_INTERFACE)
1590
1591
22b7f585
RB
1592#######################################################################
1593
62cdb4e4
LC
1594dnl Tell guile-config what flags guile users should compile and link
1595dnl with, keeping only `-I' flags from $CPPFLAGS.
1596GUILE_CFLAGS=""
1597next_is_includedir=false
1598for flag in $CPPFLAGS
1599do
1600 if $next_is_includedir; then
1601 GUILE_CFLAGS="$GUILE_CFLAGS -I $flag"
1602 next_is_includedir=false
1603 else
1604 case "$flag" in
1605 -I) next_is_includedir=true;;
1606 -I*) GUILE_CFLAGS="$GUILE_CFLAGS $flag";;
1607 *) ;;
1608 esac
1609 fi
1610done
1611
1612GUILE_CFLAGS="$GUILE_CFLAGS $PTHREAD_CFLAGS"
a8d7ba11 1613GUILE_LIBS="$LDFLAGS $LIBS"
62cdb4e4 1614
daa4f38c 1615AC_SUBST(GUILE_LIBS)
d8b1bb93 1616AC_SUBST(GUILE_CFLAGS)
7c86ae05 1617
3a629497
JB
1618AC_SUBST(AWK)
1619AC_SUBST(LIBLOBJS)
91411868 1620AC_SUBST(EXTRA_DOT_DOC_FILES)
e9e225e5 1621AC_SUBST(EXTRA_DOT_X_FILES)
3a629497 1622
6812c28f
TTN
1623dnl See also top_builddir in info node: (libtool)AC_PROG_LIBTOOL
1624top_builddir_absolute=`pwd`
1625AC_SUBST(top_builddir_absolute)
9e6e154e 1626top_srcdir_absolute=`(cd $srcdir && pwd)`
2f13db9a 1627AC_SUBST(top_srcdir_absolute)
6812c28f 1628
d5a1a8cd 1629dnl `sitedir' goes into libpath.h and the pkg-config file.
0c1eb9b6 1630pkgdatadir="$datadir/$PACKAGE_TARNAME"
d5a1a8cd 1631sitedir="$pkgdatadir/site/$GUILE_EFFECTIVE_VERSION"
92826dd0
LC
1632AC_SUBST([sitedir])
1633
f4b7d918
LC
1634dnl Name of the `guile' program.
1635guile_program_name="`echo guile | "$SED" "$program_transform_name"`"
1636AC_SUBST([guile_program_name])
1637
9a52bc2a
RB
1638# Additional SCM_I_GSC definitions are above.
1639AC_SUBST([SCM_I_GSC_GUILE_DEBUG])
9a52bc2a 1640AC_SUBST([SCM_I_GSC_ENABLE_DEPRECATED])
9a52bc2a
RB
1641AC_SUBST([SCM_I_GSC_STACK_GROWS_UP])
1642AC_SUBST([SCM_I_GSC_C_INLINE])
1643AC_CONFIG_FILES([libguile/gen-scmconfig.h])
1644
237b3247
RB
1645AC_CONFIG_FILES([
1646 Makefile
6812c28f 1647 am/Makefile
6caac03c 1648 lib/Makefile
9e6e154e 1649 benchmark-suite/Makefile
364b6eb7 1650 gc-benchmarks/Makefile
9e6e154e 1651 doc/Makefile
9e6e154e
RB
1652 doc/r5rs/Makefile
1653 doc/ref/Makefile
1e2346ae 1654 emacs/Makefile
9e6e154e 1655 examples/Makefile
9e6e154e 1656 libguile/Makefile
b405cdb4 1657 libguile/version.h
7a5ab369 1658 guile-readline/Makefile
849f29a4
RB
1659 test-suite/Makefile
1660 test-suite/standalone/Makefile
aa592f96 1661 test-suite/vm/Makefile
0b6d8fdc 1662 meta/Makefile
e610dc38 1663 module/Makefile
849f29a4 1664])
9e6e154e 1665
c1a15f3d
LC
1666AC_CONFIG_FILES([meta/guile-2.0.pc])
1667AC_CONFIG_FILES([meta/guile-2.0-uninstalled.pc])
22b5f518 1668AC_CONFIG_FILES([doc/ref/effective-version.texi])
237b3247 1669
225dbf6f
TTN
1670GUILE_CONFIG_SCRIPT([check-guile])
1671GUILE_CONFIG_SCRIPT([benchmark-guile])
1672GUILE_CONFIG_SCRIPT([meta/guile])
1673GUILE_CONFIG_SCRIPT([meta/uninstalled-env])
1674GUILE_CONFIG_SCRIPT([meta/gdb-uninstalled-guile])
b8b06598 1675GUILE_CONFIG_SCRIPT([meta/guild])
225dbf6f 1676GUILE_CONFIG_SCRIPT([libguile/guile-snarf])
225dbf6f
TTN
1677GUILE_CONFIG_SCRIPT([libguile/guile-snarf-docs])
1678GUILE_CONFIG_SCRIPT([test-suite/standalone/test-use-srfi])
1679GUILE_CONFIG_SCRIPT([test-suite/standalone/test-fast-slot-ref])
1680
237b3247 1681AC_OUTPUT
0f2d19dd 1682
3a629497
JB
1683dnl Local Variables:
1684dnl comment-start: "dnl "
1685dnl comment-end: ""
1686dnl comment-start-skip: "\\bdnl\\b\\s *"
d67c13f6 1687dnl End: