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