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