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