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