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