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