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