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