Do not include PTHREAD_CFLAGS in CFLAGS, CFLAGS is
[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
7Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
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
23Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24Boston, MA 02111-1307, USA.
25
26]])
50848747 27
a44e61ac 28AC_PREREQ(2.53)
237b3247 29
5ae51dad
RB
30AC_INIT(m4_esyscmd(. ./GUILE-VERSION && echo -n ${PACKAGE}),
31 m4_esyscmd(. ./GUILE-VERSION && echo -n ${GUILE_VERSION}))
32AC_CONFIG_SRCDIR(GUILE-VERSION)
33AM_INIT_AUTOMAKE([no-define])
34
a73256d0 35AC_COPYRIGHT(GUILE_CONFIGURE_COPYRIGHT)
8907576f 36AC_CONFIG_SRCDIR([GUILE-VERSION])
5ae51dad 37
2d26def0 38. $srcdir/GUILE-VERSION
5ae51dad 39
15ae1bee 40AM_MAINTAINER_MODE
9a52bc2a 41AM_CONFIG_HEADER([config.h])
a73256d0 42AH_TOP(/*GUILE_CONFIGURE_COPYRIGHT*/)
2d26def0 43
3a629497 44#--------------------------------------------------------------------
0e8a8468
MV
45#
46# Independent Subdirectories
47#
48#--------------------------------------------------------------------
49
50AC_CONFIG_SUBDIRS(guile-readline)
51
a6be66ed
RB
52#--------------------------------------------------------------------
53
54dnl Some more checks for Win32
55AC_CYGWIN
56AC_MINGW32
57AC_LIBTOOL_WIN32_DLL
58
59AC_PROG_INSTALL
60AC_PROG_CC
61AC_PROG_CPP
62AC_PROG_AWK
63
64AC_AIX
65AC_ISC_POSIX
66AC_MINIX
67
68AM_PROG_CC_STDC
69
70AC_LIBTOOL_DLOPEN
c78a96e0 71AC_PROG_LIBTOOL
a6be66ed
RB
72AC_LIB_LTDL
73
74AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
75AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
76
d995da7f
NJ
77AM_PATH_LISPDIR
78
0e8a8468 79#--------------------------------------------------------------------
3a629497 80#
a6be66ed 81# User options (after above tests that may set default CFLAGS etc.)
3a629497
JB
82#
83#--------------------------------------------------------------------
86789f9b 84
bdcccc18
RB
85GUILE_ERROR_ON_WARNING="yes"
86
8afd1a2a
RB
87AC_ARG_ENABLE(error-on-warning,
88 [ --enable-error-on-warning treat compile warnings as errors],
89 [case "${enableval}" in
bdcccc18
RB
90 yes | y) GUILE_ERROR_ON_WARNING="yes" ;;
91 no | n) GUILE_ERROR_ON_WARNING="no" ;;
8afd1a2a
RB
92 *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
93 esac])
94
9a52bc2a 95SCM_I_GSC_GUILE_DEBUG_FREELIST=0
52b3923a 96AC_ARG_ENABLE(debug-freelist,
e73dd549 97 [ --enable-debug-freelist include garbage collector freelist debugging code],
9a52bc2a
RB
98 if test "$enable_debug_freelist" = y \
99 || test "$enable_debug_freelist" = yes; then
100 SCM_I_GSC_GUILE_DEBUG_FREELIST=1
52b3923a
GB
101 fi)
102
cf890744 103AC_ARG_ENABLE(debug-malloc,
e73dd549 104 [ --enable-debug-malloc include malloc debugging code],
cf890744 105 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
eede3dbc
RB
106 AC_DEFINE(GUILE_DEBUG_MALLOC, 1,
107 [Define this if you want to debug scm_must_malloc/realloc/free calls.])
cf890744
MD
108 fi)
109
9a52bc2a 110SCM_I_GSC_GUILE_DEBUG=0
62002dcb 111AC_ARG_ENABLE(guile-debug,
9a52bc2a
RB
112 [AC_HELP_STRING([--enable-guile-debug],
113 [include internal debugging functions])],
62002dcb 114 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
9a52bc2a 115 SCM_I_GSC_GUILE_DEBUG=1
62002dcb
MD
116 fi)
117
afe5177e 118AC_ARG_ENABLE(arrays,
9a52bc2a
RB
119 [AC_HELP_STRING([--disable-arrays],[omit array and uniform array support])],
120 ,
afe5177e
GH
121 enable_arrays=yes)
122
52cfc69b
GH
123AC_ARG_ENABLE(posix,
124 [ --disable-posix omit posix interfaces],,
125 enable_posix=yes)
126
127AC_ARG_ENABLE(networking,
dc914156 128 [ --disable-networking omit networking interfaces],,
52cfc69b
GH
129 enable_networking=yes)
130
131AC_ARG_ENABLE(regex,
132 [ --disable-regex omit regular expression interfaces],,
133 enable_regex=yes)
134
f5922e27
MV
135AC_ARG_ENABLE([discouraged],
136 AC_HELP_STRING([--disable-discouraged],[omit discouraged features]))
137
138if test "$enable_discouraged" = no; then
139 SCM_I_GSC_ENABLE_DISCOURAGED=0
140else
141 SCM_I_GSC_ENABLE_DISCOURAGED=1
142fi
143
9a52bc2a
RB
144AC_ARG_ENABLE([deprecated],
145 AC_HELP_STRING([--disable-deprecated],[omit deprecated features]))
eede3dbc 146
e73dd549 147if test "$enable_deprecated" = no; then
9a52bc2a 148 SCM_I_GSC_ENABLE_DEPRECATED=0
e73dd549
MV
149else
150 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
94a0d885
MV
151 warn_default=summary
152 elif test "$enable_deprecated" = shutup; then
153 warn_default=no
154 else
155 warn_default=$enable_deprecated
e73dd549 156 fi
9a52bc2a 157 SCM_I_GSC_ENABLE_DEPRECATED=1
eede3dbc
RB
158 AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default",
159 [Define this to control the default warning level for deprecated features.])
e73dd549
MV
160fi
161
3d1a89b9
NJ
162AC_ARG_ENABLE(elisp,
163 [ --disable-elisp omit Emacs Lisp support],,
164 enable_elisp=yes)
165
a44e61ac
MV
166#--------------------------------------------------------------------
167
4f6f9ae3
GH
168dnl Check for dynamic linking
169
170use_modules=yes
171AC_ARG_WITH(modules,
172[ --with-modules[=FILES] Add support for dynamic modules],
173use_modules="$withval")
174test -z "$use_modules" && use_modules=yes
175DLPREOPEN=
176if test "$use_modules" != no; then
4f6f9ae3
GH
177 if test "$use_modules" = yes; then
178 DLPREOPEN="-dlpreopen force"
179 else
180 DLPREOPEN="-export-dynamic"
181 for module in $use_modules; do
182 DLPREOPEN="$DLPREOPEN -dlopen $module"
183 done
184 fi
185fi
186
52cfc69b
GH
187dnl files which are destined for separate modules.
188
4f6f9ae3
GH
189if test "$use_modules" != no; then
190 AC_LIBOBJ([dynl])
191fi
192
9a52bc2a 193SCM_I_GSC_HAVE_ARRAYS=0
afe5177e 194if test "$enable_arrays" = yes; then
eede3dbc
RB
195 AC_LIBOBJ([ramap])
196 AC_LIBOBJ([unif])
9a52bc2a 197 SCM_I_GSC_HAVE_ARRAYS=1
afe5177e
GH
198fi
199
52cfc69b 200if test "$enable_posix" = yes; then
eede3dbc
RB
201 AC_LIBOBJ([filesys])
202 AC_LIBOBJ([posix])
203 AC_DEFINE(HAVE_POSIX, 1,
204 [Define this if you want support for POSIX system calls in Guile.])
52cfc69b
GH
205fi
206
207if test "$enable_networking" = yes; then
eede3dbc
RB
208 AC_LIBOBJ([net_db])
209 AC_LIBOBJ([socket])
210 AC_DEFINE(HAVE_NETWORKING, 1,
211 [Define this if you want support for networking in Guile.])
52cfc69b
GH
212fi
213
cf890744 214if test "$enable_debug_malloc" = yes; then
eede3dbc 215 AC_LIBOBJ([debug-malloc])
cf890744
MD
216fi
217
3d1a89b9 218if test "$enable_elisp" = yes; then
9a52bc2a
RB
219 SCM_I_GSC_ENABLE_ELISP=1
220else
221 SCM_I_GSC_ENABLE_ELISP=0
3d1a89b9
NJ
222fi
223
3a629497 224AC_C_CONST
5b079b46 225
9a52bc2a 226AC_C_INLINE
5bd732c9 227if test "$ac_cv_c_inline" != no; then
9a52bc2a
RB
228 SCM_I_GSC_C_INLINE="\"${ac_cv_c_inline}\""
229else
230 SCM_I_GSC_C_INLINE=NULL
5bd732c9
MV
231fi
232
9a52bc2a
RB
233AC_C_BIGENDIAN
234
235AC_CHECK_SIZEOF(char)
236AC_CHECK_SIZEOF(unsigned char)
813b3dd4 237AC_CHECK_SIZEOF(short)
9a52bc2a 238AC_CHECK_SIZEOF(unsigned short)
9dec9737 239AC_CHECK_SIZEOF(int)
9a52bc2a 240AC_CHECK_SIZEOF(unsigned int)
9dec9737 241AC_CHECK_SIZEOF(long)
9a52bc2a 242AC_CHECK_SIZEOF(unsigned long)
813b3dd4 243AC_CHECK_SIZEOF(size_t)
813b3dd4 244AC_CHECK_SIZEOF(long long)
9a52bc2a 245AC_CHECK_SIZEOF(unsigned long long)
fcc5d734
SJ
246AC_CHECK_SIZEOF(__int64)
247AC_CHECK_SIZEOF(unsigned __int64)
1be6b49c 248AC_CHECK_SIZEOF(void *)
9a52bc2a
RB
249AC_CHECK_SIZEOF(intptr_t)
250AC_CHECK_SIZEOF(uintptr_t)
251AC_CHECK_SIZEOF(ptrdiff_t)
d20008c0 252AC_CHECK_SIZEOF(size_t)
1be6b49c 253
f3f70257
ML
254if test "$ac_cv_sizeof_long" -ne "$ac_cv_sizeof_void_p"; then
255 AC_MSG_ERROR(sizes of long and void* are not identical)
9dec9737 256fi
3a629497 257
c134fe9d 258if test "$ac_cv_sizeof_ptrdiff_t" -ne 0; then
9a52bc2a
RB
259 SCM_I_GSC_T_PTRDIFF='"ptrdiff_t"'
260else
261 SCM_I_GSC_T_PTRDIFF='"long"'
262fi
263AC_SUBST([SCM_I_GSC_T_PTRDIFF])
264
265AC_CHECK_HEADERS([stdint.h])
266AC_CHECK_HEADERS([inttypes.h])
267
d20008c0
MV
268AC_CHECK_SIZEOF(intmax_t)
269
9a52bc2a
RB
270SCM_I_GSC_NEEDS_STDINT_H=0
271SCM_I_GSC_NEEDS_INTTYPES_H=0
272
273### intptr and uintptr (try not to use inttypes if we don't have to)
274if test "$ac_cv_header_inttypes_h" = yes; then
275 if test "$ac_cv_sizeof_intptr_t" -eq 0; then
276 AC_CHECK_SIZEOF([intptr_t],,[#include <inttypes.h>
277#include <stdio.h>])
278 if test "$ac_cv_sizeof_intptr_t" -ne 0; then
279 SCM_I_GSC_NEEDS_INTTYPES_H=1
280 fi
281 fi
282 if test "$ac_cv_sizeof_uintptr_t" -eq 0; then
283 AC_CHECK_SIZEOF([uintptr_t],,[#include <inttypes.h>
284#include <stdio.h>])
285 if test "$ac_cv_sizeof_uintptr_t" -ne 0; then
286 SCM_I_GSC_NEEDS_INTTYPES_H=1
287 fi
288 fi
289fi
290
291### See what's provided by stdint.h
292if test "$ac_cv_header_stdint_h" = yes; then
293 AC_CHECK_TYPE([int8_t],[scm_stdint_has_int8=1],,[#include <stdint.h>])
294 AC_CHECK_TYPE([uint8_t],[scm_stdint_has_uint8=1],,[#include <stdint.h>])
295 AC_CHECK_TYPE([int16_t],[scm_stdint_has_int16=1],,[#include <stdint.h>])
296 AC_CHECK_TYPE([uint16_t],[scm_stdint_has_uint16=1],,[#include <stdint.h>])
297 AC_CHECK_TYPE([int32_t],[scm_stdint_has_int32=1],,[#include <stdint.h>])
298 AC_CHECK_TYPE([uint32_t],[scm_stdint_has_uint32=1],,[#include <stdint.h>])
299 AC_CHECK_TYPE([int64_t],[scm_stdint_has_int64=1],,[#include <stdint.h>])
300 AC_CHECK_TYPE([uint64_t],[scm_stdint_has_uint64=1],,[#include <stdint.h>])
eb1f89f6
MV
301 AC_CHECK_TYPE([intmax_t],[scm_stdint_has_intmax=1],,[#include <stdint.h>])
302 AC_CHECK_TYPE([uintmax_t],[scm_stdint_has_uintmax=1],,[#include <stdint.h>])
9a52bc2a
RB
303fi
304
305# so we don't get confused by the cache (wish there was a better way
306# to check particular headers for the same type...)
307
308unset ac_cv_type_int8_t
309unset ac_cv_type_uint8_t
310unset ac_cv_type_int16_t
311unset ac_cv_type_uint16_t
312unset ac_cv_type_int32_t
313unset ac_cv_type_uint32_t
314unset ac_cv_type_int64_t
315unset ac_cv_type_uint64_t
eb1f89f6
MV
316unset ac_cv_type_intmax_t
317unset ac_cv_type_uintmax_t
9a52bc2a
RB
318
319### See what's provided by inttypes.h
320if test "$ac_cv_header_inttypes_h" = yes; then
321 AC_CHECK_TYPE([int8_t],[scm_inttypes_has_int8=1],,[#include <inttypes.h>])
322 AC_CHECK_TYPE([uint8_t],[scm_inttypes_has_uint8=1],,[#include <inttypes.h>])
323 AC_CHECK_TYPE([int16_t],[scm_inttypes_has_int16=1],,[#include <inttypes.h>])
324 AC_CHECK_TYPE([uint16_t],[scm_inttypes_has_uint16=1],,[#include <inttypes.h>])
325 AC_CHECK_TYPE([int32_t],[scm_inttypes_has_int32=1],,[#include <inttypes.h>])
326 AC_CHECK_TYPE([uint32_t],[scm_inttypes_has_uint32=1],,[#include <inttypes.h>])
327 AC_CHECK_TYPE([int64_t],[scm_inttypes_has_int64=1],,[#include <inttypes.h>])
328 AC_CHECK_TYPE([uint64_t],[scm_inttypes_has_uint64=1],,[#include <inttypes.h>])
eb1f89f6
MV
329 AC_CHECK_TYPE([intmax_t],[scm_inttypes_has_intmax=1],,[#include <inttypes.h>])
330 AC_CHECK_TYPE([uintmax_t],[scm_inttypes_has_uintmax=1],,[#include <inttypes.h>])
9a52bc2a
RB
331fi
332
333# Try hard to find definitions for some required scm_t_*int* types.
334
335### Required type scm_t_int8
6aa84fdd 336if test "$scm_stdint_has_int8"; then
9a52bc2a
RB
337 SCM_I_GSC_T_INT8='"int8_t"'
338 SCM_I_GSC_NEEDS_STDINT_H=1
339elif test "$scm_inttypes_has_int8"; then
340 SCM_I_GSC_T_INT8='"int8_t"'
341 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
342elif test "$ac_cv_sizeof_char" -eq 1; then
343 SCM_I_GSC_T_INT8='"signed char"'
9a52bc2a
RB
344else
345 AC_MSG_ERROR([Can't find appropriate type for scm_t_int8.])
346fi
347AC_SUBST([SCM_I_GSC_T_INT8])
348
349### Required type scm_t_uint8
6aa84fdd 350if test "$scm_stdint_has_uint8"; then
9a52bc2a
RB
351 SCM_I_GSC_T_UINT8='"uint8_t"'
352 SCM_I_GSC_NEEDS_STDINT_H=1
353elif test "$scm_inttypes_has_uint8"; then
354 SCM_I_GSC_T_UINT8='"uint8_t"'
355 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
356elif test "$ac_cv_sizeof_unsigned_char" -eq 1; then
357 SCM_I_GSC_T_UINT8='"unsigned char"'
9a52bc2a
RB
358else
359 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint8.])
360fi
361AC_SUBST([SCM_I_GSC_T_UINT8])
9a52bc2a
RB
362
363### Required type scm_t_int16 (ANSI C says int or short might work)
6aa84fdd 364if test "$scm_stdint_has_int16"; then
9a52bc2a
RB
365 SCM_I_GSC_T_INT16='"int16_t"'
366 SCM_I_GSC_NEEDS_STDINT_H=1
367elif test "$scm_inttypes_has_int16"; then
368 SCM_I_GSC_T_INT16='"int16_t"'
369 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
370elif test "$ac_cv_sizeof_int" -eq 2; then
371 SCM_I_GSC_T_INT16='"int"'
6aa84fdd
MV
372elif test "$ac_cv_sizeof_short" -eq 2; then
373 SCM_I_GSC_T_INT16='"short"'
9a52bc2a
RB
374else
375 AC_MSG_ERROR([Can't find appropriate type for scm_t_int16.])
376fi
377AC_SUBST([SCM_I_GSC_T_INT16])
378
379### Required type scm_t_uint16 (ANSI C says int or short might work)
6aa84fdd 380if test "$scm_stdint_has_uint16"; then
9a52bc2a
RB
381 SCM_I_GSC_T_UINT16='"uint16_t"'
382 SCM_I_GSC_NEEDS_STDINT_H=1
383elif test "$scm_inttypes_has_uint16"; then
384 SCM_I_GSC_T_UINT16='"uint16_t"'
385 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
386elif test "$ac_cv_sizeof_unsigned_int" -eq 2; then
387 SCM_I_GSC_T_UINT16='"unsigned int"'
6aa84fdd
MV
388elif test "$ac_cv_sizeof_unsigned_short" -eq 2; then
389 SCM_I_GSC_T_UINT16='"unsigned short"'
9a52bc2a
RB
390else
391 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint16.])
392fi
393AC_SUBST([SCM_I_GSC_T_UINT16])
394
395
396### Required type scm_t_int32 (ANSI C says int, short, or long might work)
6aa84fdd 397if test "$scm_stdint_has_int32"; then
9a52bc2a
RB
398 SCM_I_GSC_T_INT32='"int32_t"'
399 SCM_I_GSC_NEEDS_STDINT_H=1
400elif test "$scm_inttypes_has_int32"; then
401 SCM_I_GSC_T_INT32='"int32_t"'
402 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
403elif test "$ac_cv_sizeof_int" -eq 4; then
404 SCM_I_GSC_T_INT32='"int"'
6aa84fdd
MV
405elif test "$ac_cv_sizeof_long" -eq 4; then
406 SCM_I_GSC_T_INT32='"long"'
6aa84fdd
MV
407elif test "$ac_cv_sizeof_short" -eq 4; then
408 SCM_I_GSC_T_INT32='"short"'
9a52bc2a
RB
409else
410 AC_MSG_ERROR([Can't find appropriate type for scm_t_int32.])
411fi
412AC_SUBST([SCM_I_GSC_T_INT32])
413
414### Required type scm_t_uint32 (ANSI C says int, short, or long might work)
6aa84fdd 415if test "$scm_stdint_has_uint32"; then
9a52bc2a
RB
416 SCM_I_GSC_T_UINT32='"uint32_t"'
417 SCM_I_GSC_NEEDS_STDINT_H=1
418elif test "$scm_inttypes_has_uint32"; then
419 SCM_I_GSC_T_UINT32='"uint32_t"'
420 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
421elif test "$ac_cv_sizeof_unsigned_int" -eq 4; then
422 SCM_I_GSC_T_UINT32='"unsigned int"'
6aa84fdd
MV
423elif test "$ac_cv_sizeof_unsigned_long" -eq 4; then
424 SCM_I_GSC_T_UINT32='"unsigned long"'
6aa84fdd
MV
425elif test "$ac_cv_sizeof_unsigned_short" -eq 4; then
426 SCM_I_GSC_T_UINT32='"unsigned short"'
9a52bc2a
RB
427else
428 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint32.])
429fi
430AC_SUBST([SCM_I_GSC_T_UINT32])
431
a6be66ed 432### Optional type scm_t_int64 (ANSI C says int, short, or long might work)
fcc5d734 433### Also try 'long long' and '__int64' if we have it.
9a52bc2a 434SCM_I_GSC_T_INT64=0
6aa84fdd
MV
435if test "$scm_stdint_has_int64"; then
436 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
437 SCM_I_GSC_NEEDS_STDINT_H=1
438elif test "$scm_inttypes_has_int64"; then
439 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
440 SCM_I_GSC_NEEDS_INTTYPES_H=1
441elif test "$ac_cv_sizeof_int" -eq 8; then
9a52bc2a
RB
442 SCM_I_GSC_T_INT64='"int"'
443elif test "$ac_cv_sizeof_long" -eq 8; then
444 SCM_I_GSC_T_INT64='"long"'
445elif test "$ac_cv_sizeof_short" -eq 8; then
446 SCM_I_GSC_T_INT64='"short"'
447elif test "$ac_cv_sizeof_long_long" -eq 8; then
448 SCM_I_GSC_T_INT64='"long long"'
fcc5d734
SJ
449elif test "$ac_cv_sizeof___int64" -eq 8; then
450 SCM_I_GSC_T_INT64='"__int64"'
9a52bc2a
RB
451else
452 AC_MSG_ERROR([Can't find appropriate type for scm_t_int64.])
453fi
454AC_SUBST([SCM_I_GSC_T_INT64])
6aa84fdd 455
9a52bc2a 456
a6be66ed 457### Optional type scm_t_uint64 (ANSI C says int, short, or long might work)
fcc5d734 458### Also try 'long long' and '__int64' if we have it.
9a52bc2a 459SCM_I_GSC_T_UINT64=0
6aa84fdd
MV
460if test "$scm_stdint_has_uint64"; then
461 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
462 SCM_I_GSC_NEEDS_STDINT_H=1
463elif test "$scm_inttypes_has_uint64"; then
464 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
465 SCM_I_GSC_NEEDS_INTTYPES_H=1
466elif test "$ac_cv_sizeof_unsigned_int" -eq 8; then
9a52bc2a
RB
467 SCM_I_GSC_T_UINT64='"unsigned int"'
468elif test "$ac_cv_sizeof_unsigned_long" -eq 8; then
469 SCM_I_GSC_T_UINT64='"unsigned long"'
470elif test "$ac_cv_sizeof_unsigned_short" -eq 8; then
471 SCM_I_GSC_T_UINT64='"unsigned short"'
472elif test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then
473 SCM_I_GSC_T_UINT64='"unsigned long long"'
fcc5d734
SJ
474elif test "$ac_cv_sizeof_unsigned___int64" -eq 8; then
475 SCM_I_GSC_T_UINT64='"unsigned __int64"'
9a52bc2a
RB
476else
477 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint64.])
478fi
479AC_SUBST([SCM_I_GSC_T_UINT64])
480
eb1f89f6
MV
481### Required type scm_t_intmax
482###
483### We try 'intmax_t', '__int64', 'long long' in this order. When
484### none of them is available, we use 'long'.
485###
486SCM_I_GSC_T_INTMAX=0
487if test "$scm_stdint_has_intmax"; then
488 SCM_I_GSC_T_INTMAX='"intmax_t"'
489 SCM_I_GSC_NEEDS_STDINT_H=1
490elif test "$scm_inttypes_has_intmax"; then
491 SCM_I_GSC_T_INTMAX='"intmax_t"'
492 SCM_I_GSC_NEEDS_INTTYPES_H=1
493elif test "$ac_cv_sizeof___int64" -ne 0; then
494 SCM_I_GSC_T_INTMAX='"__int64"'
495elif test "$ac_cv_sizeof_long_long" -ne 0; then
496 SCM_I_GSC_T_INTMAX='"long long"'
497else
498 SCM_I_GSC_T_INTMAX='"long"'
499fi
500AC_SUBST([SCM_I_GSC_T_INTMAX])
501
502### Required type scm_t_uintmax
503###
504### We try 'uintmax_t', 'unsigned __int64', 'unsigned long long' in
505### this order. When none of them is available, we use 'unsigned long'.
506###
507SCM_I_GSC_T_UINTMAX=0
508if test "$scm_stdint_has_uintmax"; then
509 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
510 SCM_I_GSC_NEEDS_STDINT_H=1
511elif test "$scm_inttypes_has_uintmax"; then
512 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
513 SCM_I_GSC_NEEDS_INTTYPES_H=1
514elif test "$ac_cv_sizeof_unsigned___int64" -ne 0; then
515 SCM_I_GSC_T_UINTMAX='"unsigned __int64"'
516elif test "$ac_cv_sizeof_unsigned_long_long" -ne 0; then
517 SCM_I_GSC_T_UINTMAX='"unsigned long long"'
518else
519 SCM_I_GSC_T_UINTMAX='"unsigned long"'
520fi
521AC_SUBST([SCM_I_GSC_T_UINTMAX])
522
9a52bc2a
RB
523
524AC_SUBST([SCM_I_GSC_NEEDS_STDINT_H])
525AC_SUBST([SCM_I_GSC_NEEDS_INTTYPES_H])
526
3a629497
JB
527AC_HEADER_STDC
528AC_HEADER_DIRENT
529AC_HEADER_TIME
530AC_HEADER_SYS_WAIT
bdcccc18 531
63177e46
KR
532# Reasons for testing:
533# fenv.h - available in C99, but not older systems
534#
535AC_CHECK_HEADERS([fenv.h io.h libc.h limits.h malloc.h memory.h string.h \
bdcccc18
RB
536regex.h rxposix.h rx/rxposix.h sys/dir.h sys/ioctl.h sys/select.h \
537sys/time.h sys/timeb.h sys/times.h sys/stdtypes.h sys/types.h \
538sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h \
539direct.h])
540
3a629497
JB
541GUILE_HEADER_LIBC_WITH_UNISTD
542
543AC_TYPE_GETGROUPS
544AC_TYPE_SIGNAL
545AC_TYPE_MODE_T
546
2e945bcc
SJ
547if test $MINGW32 = no; then
548 AC_CHECK_LIB(m, main)
549fi
4c787b52 550AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
551if test $ac_cv_func_gethostbyname = no; then
552 AC_CHECK_LIB(nsl, gethostbyname)
553fi
39e8f371 554
4c787b52 555AC_CHECK_FUNCS(connect)
5852c051
JB
556if test $ac_cv_func_connect = no; then
557 AC_CHECK_LIB(socket, connect)
558fi
5ee74cec 559
f9e5e096
MV
560dnl
561dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
562dnl
563EXTRA_DEFS=""
f9e5e096 564if test "$MINGW32" = "yes" ; then
6812c28f 565 AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
f9e5e096
MV
566 [Define if you have the <winsock2.h> header file.])])
567 AC_CHECK_LIB(ws2_32, main)
eede3dbc
RB
568 AC_LIBOBJ([win32-uname])
569 AC_LIBOBJ([win32-dirent])
b4e15479 570 if test "$enable_networking" = yes ; then
eede3dbc 571 AC_LIBOBJ([win32-socket])
b4e15479
SJ
572 fi
573 if test "$enable_shared" = yes ; then
8f99e3f3
SJ
574 EXTRA_DEFS="-DSCM_IMPORT"
575 AC_DEFINE(USE_DLL_IMPORT, 1,
576 [Define if you need additional CPP macros on Win32 platforms.])
f9e5e096 577 fi
1fa86ca5
SJ
578 if test x"$enable_ltdl_install" = x"yes" ; then
579 INCLTDL="-DLIBLTDL_DLL_IMPORT $INCLTDL"
580 fi
f9e5e096
MV
581fi
582AC_SUBST(EXTRA_DEFS)
f9e5e096 583
bdcccc18
RB
584# FIXME: check to see if we still need these.
585#AC_SUBST(INCLTDL)
586#AC_SUBST(LIBLTDL)
587
b7f27d64 588AC_SUBST(DLPREOPEN)
5852c051 589
ef73a2a0
KR
590# Reasons for testing:
591# crt_externs.h - Darwin specific
592#
593AC_CHECK_HEADERS([assert.h crt_externs.h])
bdcccc18 594
ef73a2a0 595# Reasons for testing:
1df72834
KR
596# DINFINITY - OSF specific
597# DQNAN - OSF specific
598# (DINFINITY and DQNAN are actually global variables, not functions)
63177e46 599# fesetround - available in C99, but not older systems
c9d1dcc0 600# gmtime_r - recent posix, not on old systems
66ec83c9 601# readdir_r - recent posix, not on old systems
6b01eac9 602# sysconf - not on old systems
ef73a2a0
KR
603# _NSGetEnviron - Darwin specific
604#
63177e46 605AC_CHECK_FUNCS([DINFINITY DQNAN ctermid fesetround ftime fchown getcwd geteuid gettimeofday gmtime_r lstat mkdir mknod nice readdir_r readlink rename rmdir select setegid seteuid setlocale setpgid setsid sigaction siginterrupt 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 unsetenv _NSGetEnviron])
64e121dc 606
6b01eac9
KR
607# Reasons for testing:
608# netdb.h - not in mingw
609# sys/param.h - not in mingw
610#
611AC_CHECK_HEADERS(crypt.h netdb.h sys/param.h sys/resource.h sys/file.h)
94e6d793 612AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
63271ac5
KR
613
614# crypt() may or may not be available, for instance in some countries there
615# are restrictions on cryptography.
616#
617# crypt() might be in libc (eg. OpenBSD), or it might be in a separate
618# -lcrypt library (eg. Debian GNU/Linux).
619#
620# On HP-UX 11, crypt() is in libc and there's a dummy libcrypt.a. We must
621# be careful to avoid -lcrypt in this case, since libtool will see there's
622# only a static libcrypt and decide to build only a static libguile.
623#
624# AC_SEARCH_LIBS lets us add -lcrypt to LIBS only if crypt() is not in the
625# libraries already in that list.
626#
627AC_SEARCH_LIBS(crypt, crypt,
628 [AC_DEFINE(HAVE_CRYPT,1,
629 [Define to 1 if you have the `crypt' function.])])
94e6d793 630
a6be66ed
RB
631dnl GMP tests
632AC_CHECK_LIB([gmp], [__gmpz_init], ,
633 [AC_MSG_ERROR([GNU MP not found, see http://swox.com/gmp])])
634
9f1555fe
MV
635# mpz_import is a macro so we need to include <gmp.h>
636AC_TRY_LINK([#include <gmp.h>],
637 [mpz_import (0, 0, 0, 0, 0, 0, 0);] , ,
638 [AC_MSG_ERROR([At least GNU MP 4.1 is required, see http://swox.com/gmp])])
639
83cd507c
MV
640dnl i18n tests
641AM_GNU_GETTEXT([external], [need-ngettext])
642
777b022a
JB
643### Some systems don't declare some functions. On such systems, we
644### need to at least provide our own K&R-style declarations.
645
646### GUILE_FUNC_DECLARED(function, headerfile)
647
648### Check for a declaration of FUNCTION in HEADERFILE; if it is
649### not there, #define MISSING_FUNCTION_DECL.
d70e0619 650AC_DEFUN([GUILE_FUNC_DECLARED], [
fc342a63 651 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 652 AC_EGREP_HEADER($1, $2,
01e5e07e 653 guile_cv_func_$1_declared=yes,
fc342a63
JB
654 guile_cv_func_$1_declared=no))
655 if test [x$guile_cv_func_]$1[_declared] = xno; then
eede3dbc
RB
656 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL], 1,
657 [Define if the operating system supplies $1 without declaring it.])
777b022a
JB
658 fi
659])
660
c31bfb85 661GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 662GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 663
0777022d
KR
664AC_CHECK_DECLS([strptime],,,
665[#define _GNU_SOURCE /* ask glibc to give strptime prototype */
666#include <time.h>])
667
da753252
JB
668### On some systems usleep has no return value. If it does have one,
669### we'd like to return it; otherwise, we'll fake it.
fc342a63 670AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
c43f86c1 671 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
4874dfc8 672 unistd.h,
fc342a63
JB
673 [guile_cv_func_usleep_return_type=void],
674 [guile_cv_func_usleep_return_type=int])])
675case "$guile_cv_func_usleep_return_type" in
676 "void" )
eede3dbc
RB
677 AC_DEFINE(USLEEP_RETURNS_VOID, 1,
678 [Define if the system headers declare usleep to return void.])
fc342a63
JB
679 ;;
680esac
681
da88f0cb
JB
682AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
683if test -n "$have_sys_un_h" ; then
eede3dbc
RB
684 AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS, 1,
685 [Define if the system supports Unix-domain (file-domain) sockets.])
da88f0cb
JB
686fi
687
d707b9df 688AC_CHECK_FUNCS(socketpair getgroups setgroups setpwent pause tzset)
da88f0cb 689
219a5a5b
JB
690AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
691 setnetent getnetent endnetent dnl
692 setprotoent getprotoent endprotoent dnl
693 setservent getservent endservent dnl
5c11cc9d 694 getnetbyaddr getnetbyname dnl
2a0ef8b7
GH
695 inet_lnaof inet_makeaddr inet_netof hstrerror dnl
696 inet_pton inet_ntop)
da88f0cb 697
feef329e
KR
698# struct sockaddr field sin_len is only present on BSD systems.
699# On 4.4BSD apparently a #define SIN_LEN exists, but on other BSD systems
700# (eg. FreeBSD 4.9) it doesn't and we must use this configure check
701AC_CHECK_MEMBERS([struct sockaddr.sin_len],,,
702[#ifdef HAVE_SYS_TYPES_H
703#include <sys/types.h>
704#endif
705#include <netinet/in.h>])
706
d19c9767 707AC_MSG_CHECKING(for __libc_stack_end)
2e945bcc 708AC_CACHE_VAL(guile_cv_have_libc_stack_end,
c89363e6
MV
709[AC_TRY_LINK([#include <stdio.h>
710extern char *__libc_stack_end;],
711 [printf("%p", (char*) __libc_stack_end);],
2e945bcc
SJ
712 guile_cv_have_libc_stack_end=yes,
713 guile_cv_have_libc_stack_end=no)])
714AC_MSG_RESULT($guile_cv_have_libc_stack_end)
715
716if test $guile_cv_have_libc_stack_end = yes; then
d19c9767
MV
717 AC_DEFINE(HAVE_LIBC_STACK_END, 1,
718 [Define if you have the __libc_stack_end variable.])
719fi
720
08f980a4
GH
721dnl Some systems do not declare this. Some systems do declare it, as a
722dnl macro. With cygwin it may be in a DLL.
723
724AC_MSG_CHECKING(whether netdb.h declares h_errno)
725AC_CACHE_VAL(guile_cv_have_h_errno,
726[AC_TRY_COMPILE([#include <netdb.h>],
727[int a = h_errno;],
728guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])
729AC_MSG_RESULT($guile_cv_have_h_errno)
730if test $guile_cv_have_h_errno = yes; then
eede3dbc 731 AC_DEFINE(HAVE_H_ERRNO, 1, [Define if h_errno is declared in netdb.h.])
08f980a4 732fi
da88f0cb 733
4f522b6f 734AC_MSG_CHECKING(whether uint32_t is defined)
c5316ea3 735AC_CACHE_VAL(guile_cv_have_uint32_t,
4f522b6f 736 [AC_TRY_COMPILE([#include <sys/types.h>
af68e5e5
SJ
737 #if HAVE_STDINT_H
738 #include <stdint.h>
739 #endif
740 #ifndef __MINGW32__
741 #include <netdb.h>
742 #endif],
4f522b6f
GH
743 [uint32_t a;],
744 guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
c5316ea3
GH
745AC_MSG_RESULT($guile_cv_have_uint32_t)
746if test $guile_cv_have_uint32_t = yes; then
eede3dbc
RB
747 AC_DEFINE(HAVE_UINT32_T, 1,
748 [Define if uint32_t typedef is defined when netdb.h is include.])
c5316ea3
GH
749fi
750
018a53a1
GH
751AC_MSG_CHECKING(for working IPv6 support)
752AC_CACHE_VAL(guile_cv_have_ipv6,
8f16fe5a
MV
753[AC_TRY_COMPILE([
754#ifdef HAVE_SYS_TYPES_H
755#include <sys/types.h>
756#endif
757#include <netinet/in.h>
b6f04d92 758#include <sys/socket.h>],
018a53a1
GH
759[struct sockaddr_in6 a; a.sin6_family = AF_INET6;],
760guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])
761AC_MSG_RESULT($guile_cv_have_ipv6)
762if test $guile_cv_have_ipv6 = yes; then
eede3dbc 763 AC_DEFINE(HAVE_IPV6, 1, [Define if you want support for IPv6.])
018a53a1
GH
764fi
765
67641981
GH
766# included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
767AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
768AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
8f16fe5a
MV
769[AC_TRY_COMPILE([
770#ifdef HAVE_SYS_TYPES_H
771#include <sys/types.h>
772#endif
773#include <netinet/in.h>],
67641981
GH
774[struct sockaddr_in6 sok; sok.sin6_scope_id = 0;],
775guile_cv_have_sin6_scope_id=yes, guile_cv_have_sin6_scope_id=no)])
776AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
777if test $guile_cv_have_sin6_scope_id = yes; then
eede3dbc
RB
778 AC_DEFINE(HAVE_SIN6_SCOPE_ID, 1,
779 [Define this if your IPv6 has sin6_scope_id in sockaddr_in6 struct.])
67641981
GH
780fi
781
feef329e
KR
782# struct sockaddr_in6 field sin_len is only present on BSD systems
783AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_len],,,
784[#ifdef HAVE_SYS_TYPES_H
785#include <sys/types.h>
786#endif
787#include <netinet/in.h>])
788
38c1d3c4
GH
789AC_MSG_CHECKING(whether localtime caches TZ)
790AC_CACHE_VAL(guile_cv_localtime_cache,
791[if test x$ac_cv_func_tzset = xyes; then
792AC_TRY_RUN([#include <time.h>
793#if STDC_HEADERS
794# include <stdlib.h>
795#endif
796extern char **environ;
797unset_TZ ()
798{
799 char **from, **to;
800 for (to = from = environ; (*to = *from); from++)
801 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
802 to++;
803}
804char TZ_GMT0[] = "TZ=GMT0";
805char TZ_PST8[] = "TZ=PST8";
806main()
807{
808 time_t now = time ((time_t *) 0);
809 int hour_GMT0, hour_unset;
810 if (putenv (TZ_GMT0) != 0)
811 exit (1);
812 hour_GMT0 = localtime (&now)->tm_hour;
813 unset_TZ ();
814 hour_unset = localtime (&now)->tm_hour;
815 if (putenv (TZ_PST8) != 0)
816 exit (1);
817 if (localtime (&now)->tm_hour == hour_GMT0)
818 exit (1);
819 unset_TZ ();
820 if (localtime (&now)->tm_hour != hour_unset)
821 exit (1);
822 exit (0);
823}], guile_cv_localtime_cache=no, guile_cv_localtime_cache=yes,
824[# If we have tzset, assume the worst when cross-compiling.
825guile_cv_localtime_cache=yes])
826else
827 # If we lack tzset, report that localtime does not cache TZ,
828 # since we can't invalidate the cache if we don't have tzset.
829 guile_cv_localtime_cache=no
830fi])dnl
831AC_MSG_RESULT($guile_cv_localtime_cache)
832if test $guile_cv_localtime_cache = yes; then
eede3dbc 833 AC_DEFINE(LOCALTIME_CACHE, 1, [Define if localtime caches the TZ setting.])
38c1d3c4
GH
834fi
835
7ee92fce
GH
836dnl Test whether system calls are restartable by default on the
837dnl current system. If they are not, we put a loop around every system
838dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
839dnl change from the default behaviour. On the other hand, if signals
840dnl are restartable then the loop is not installed and when libguile
841dnl initialises it also resets the behaviour of each signal to cause a
842dnl restart (in case a different runtime had a different default
843dnl behaviour for some reason: e.g., different versions of linux seem
844dnl to behave differently.)
845
08b8c694 846AC_SYS_RESTARTABLE_SYSCALLS
e1a191a8 847
52cfc69b
GH
848if test "$enable_regex" = yes; then
849 if test "$ac_cv_header_regex_h" = yes ||
850 test "$ac_cv_header_rxposix_h" = yes ||
851 test "$ac_cv_header_rx_rxposix_h" = yes; then
eede3dbc 852 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [AC_LIBOBJ([regex-posix])],
52cfc69b 853 [AC_CHECK_LIB(rx, main)
eede3dbc 854 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [AC_LIBOBJ([regex-posix])],
f9e5e096 855 [AC_CHECK_LIB(regex, main)
eede3dbc 856 GUILE_NAMED_CHECK_FUNC(regcomp, regex, [AC_LIBOBJ([regex-posix])])])]
52cfc69b
GH
857 )
858 dnl The following should not be necessary, but for some reason
859 dnl autoheader misses it if we don't include it!
860 if test "$ac_cv_func_regcomp_norx" = yes ||
f9e5e096 861 test "$ac_cv_func_regcomp_regex" = yes ||
52cfc69b 862 test "$ac_cv_func_regcomp_rx" = yes; then
eede3dbc
RB
863 AC_DEFINE(HAVE_REGCOMP, 1,
864 [This is included as part of a workaround for a autoheader bug.])
52cfc69b
GH
865 fi
866 fi
da88f0cb 867fi
8e1bfcd0 868
5bbfbd1e 869AC_REPLACE_FUNCS(inet_aton putenv strerror memmove mkstemp)
3a629497 870
594e69b7
MV
871AC_CHECK_HEADERS(floatingpoint.h ieeefp.h nan.h)
872
21b860c8
KR
873# Reasons for testing:
874# asinh, acosh, atanh, trunc - C99 standard, generally not available on
875# older systems
876# sincos - GLIBC extension
9af31eed 877#
4d0bfea1
KR
878AC_CHECK_FUNCS(asinh acosh atanh copysign finite sincos trunc)
879
880# C99 specifies isinf and isnan as macros.
881# HP-UX provides only macros, no functions.
c80bab35
KR
882# glibc 2.3.2 provides both macros and functions.
883# IRIX 6.5 and Solaris 8 only provide functions.
4d0bfea1 884#
c80bab35
KR
885# The following tests detect isinf and isnan either as functions or as
886# macros from <math.h>. Plain AC_CHECK_FUNCS is insufficient, it doesn't
887# use <math.h> so doesn't detect on macro-only systems like HP-UX.
4d0bfea1
KR
888#
889AC_MSG_CHECKING([for isinf])
890AC_LINK_IFELSE(
891[#include <math.h>
892int main () { return (isinf(0.0) != 0); }],
893 [AC_MSG_RESULT([yes])
894 AC_DEFINE(HAVE_ISINF, 1,
895 [Define to 1 if you have the `isinf' macro or function.])],
896 [AC_MSG_RESULT([no])])
897AC_MSG_CHECKING([for isnan])
898AC_LINK_IFELSE(
899[#include <math.h>
edea856c
SJ
900#ifdef __MINGW32__
901#define isnan _isnan
902#endif
4d0bfea1
KR
903int main () { return (isnan(0.0) != 0); }],
904 [AC_MSG_RESULT([yes])
905 AC_DEFINE(HAVE_ISNAN, 1,
906 [Define to 1 if you have the `isnan' macro or function.])],
907 [AC_MSG_RESULT([no])])
594e69b7 908
31e4c69e
MV
909# We must have a proper stack-using alloca in order for stack-copying
910# continuations to work properly. If we don't find a native one,
911# abort.
912
3a629497 913AC_FUNC_ALLOCA
fb2de91a
RB
914if test "$ALLOCA" = "alloca.o"
915then
31e4c69e 916 AC_ERROR([No native alloca found.])
fb2de91a 917fi
3a629497 918
237b3247
RB
919AC_CHECK_MEMBERS([struct stat.st_rdev])
920AC_CHECK_MEMBERS([struct stat.st_blksize])
921
922AC_STRUCT_ST_BLOCKS
075edbde 923
fd02f2ad
MD
924AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
925 [AC_TRY_CPP([#include <sys/stat.h>
926 #ifndef S_ISLNK
927 #error no S_ISLNK
928 #endif],
929 ac_cv_macro_S_ISLNK=yes,
930 ac_cv_macro_S_ISLNK=no)])
931if test $ac_cv_macro_S_ISLNK = yes; then
eede3dbc
RB
932 AC_DEFINE(HAVE_S_ISLNK, 1,
933 [Define this if your system defines S_ISLNK in sys/stat.h.])
fd02f2ad
MD
934fi
935
3a629497
JB
936AC_STRUCT_TIMEZONE
937GUILE_STRUCT_UTIMBUF
938
3a629497
JB
939#--------------------------------------------------------------------
940#
941# Which way does the stack grow?
942#
943#--------------------------------------------------------------------
944
9a52bc2a 945SCM_I_GSC_STACK_GROWS_UP=0
3a629497
JB
946AC_TRY_RUN(aux (l) unsigned long l;
947 { int x; exit (l >= ((unsigned long)&x)); }
01e5e07e 948 main () { int q; aux((unsigned long)&q); },
d4628c57 949 [SCM_I_GSC_STACK_GROWS_UP=1],
eede3dbc 950 [],
9a52bc2a 951 [AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h)])
eede3dbc 952
a9e0a8af
KR
953AC_CHECK_SIZEOF(float)
954if test "$ac_cv_sizeof_float" -le "$ac_cv_sizeof_long"; then
955 AC_DEFINE(SCM_SINGLES, 1,
956 [Define this if floats are the same size as longs.])
957fi
3a629497
JB
958
959AC_MSG_CHECKING(for struct linger)
960AC_CACHE_VAL(scm_cv_struct_linger,
961 AC_TRY_COMPILE([
962#include <sys/types.h>
963#include <sys/socket.h>],
964 [struct linger lgr; lgr.l_linger = 100],
965 scm_cv_struct_linger="yes",
966 scm_cv_struct_linger="no"))
967AC_MSG_RESULT($scm_cv_struct_linger)
968if test $scm_cv_struct_linger = yes; then
eede3dbc
RB
969 AC_DEFINE(HAVE_STRUCT_LINGER, 1,
970 [Define this if your system defines struct linger, for use with the
971 getsockopt and setsockopt system calls.])
3a629497 972fi
3a629497 973
7534dfdc
MD
974
975AC_MSG_CHECKING(for struct timespec)
976AC_CACHE_VAL(scm_cv_struct_timespec,
977 AC_TRY_COMPILE([
978#include <time.h>],
979 [struct timespec t; t.tv_nsec = 100],
980 scm_cv_struct_timespec="yes",
981 scm_cv_struct_timespec="no"))
982AC_MSG_RESULT($scm_cv_struct_timespec)
983if test $scm_cv_struct_timespec = yes; then
eede3dbc
RB
984 AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
985 [Define this if your system defines struct timespec via <time.h>.])
7534dfdc
MD
986fi
987
3a629497
JB
988#--------------------------------------------------------------------
989#
990# Flags for thread support
991#
992#--------------------------------------------------------------------
993
9a52bc2a
RB
994SCM_I_GSC_USE_PTHREAD_THREADS=0
995SCM_I_GSC_USE_NULL_THREADS=0
996SCM_I_GSC_USE_COOP_THREADS=0
997AC_SUBST([SCM_I_GSC_USE_PTHREAD_THREADS])
998AC_SUBST([SCM_I_GSC_USE_NULL_THREADS])
999AC_SUBST([SCM_I_GSC_USE_COOP_THREADS])
1000
539c89a1
JB
1001### What thread package has the user asked for?
1002AC_ARG_WITH(threads, [ --with-threads thread interface],
18622c4e 1003 , with_threads=yes)
539c89a1 1004
539c89a1 1005case "$with_threads" in
9bc4701c 1006 "yes" | "pthread" | "pthreads" | "pthread-threads" | "")
75bfae86 1007 ACX_PTHREAD(CC="$PTHREAD_CC"
75bfae86 1008 LIBS="$PTHREAD_LIBS $LIBS"
9a52bc2a 1009 SCM_I_GSC_USE_PTHREAD_THREADS=1
9bc4701c 1010 with_threads="pthreads",
18622c4e 1011 with_threads="null")
09841c77 1012
09841c77
MD
1013 AC_MSG_CHECKING(if pthread_mutexattr_settype is declared)
1014 AC_CACHE_VAL(guile_cv_mutexattr_settype_declared,
1015 [AC_TRY_COMPILE([#include <pthread.h>],
1016 [int pthread_mutexattr_settype (int, int);],
1017 guile_cv_mutexattr_settype_declared=no,
1018 guile_cv_mutexattr_settype_declared=yes)])
1019 AC_MSG_RESULT($guile_cv_mutexattr_settype_declared)
1020 if test $guile_cv_mutexattr_settype_declared = yes; then
1021 AC_DEFINE(SCM_MUTEXATTR_SETTYPE_DECLARED, 1,
1022 [Define if pthread.h declares pthread_mutexattr_settype.])
1023 fi
1024
1025 AC_MSG_CHECKING(how to get a fast mutex)
1026 AC_CACHE_VAL(guile_cv_have_mutex_fast,
1027 [AC_TRY_COMPILE([#include <pthread.h>],
1028 [int a = PTHREAD_MUTEX_ADAPTIVE_NP;],
1029 guile_cv_have_mutex_fast=PTHREAD_MUTEX_ADAPTIVE_NP,
1030 guile_cv_have_mutex_fast=none)])
1031 AC_MSG_RESULT($guile_cv_have_mutex_fast)
1032 if test ! $guile_cv_have_mutex_fast = none; then
1033 AC_DEFINE_UNQUOTED(SCM_MUTEX_FAST, $guile_cv_have_mutex_fast,
1034 [The mutex kind enum for fast mutexes.])
1035 fi
1036
1037 AC_MSG_CHECKING(how to get a recursive mutex)
1038 AC_CACHE_VAL(guile_cv_have_mutex_recursive,
1039 [AC_TRY_COMPILE([#include <pthread.h>],
1040 [int a = PTHREAD_MUTEX_RECURSIVE_NP;],
1041 guile_cv_have_mutex_recursive=PTHREAD_MUTEX_RECURSIVE_NP)
1042 if test -z "$guile_cv_have_mutex_recursive"; then
1043 AC_TRY_COMPILE([#include <pthread.h>],
1044 [int a = PTHREAD_MUTEX_RECURSIVE;],
1045 guile_cv_have_mutex_recursive=PTHREAD_MUTEX_RECURSIVE,
1046 guile_cv_have_mutex_recursive=none)
1047 fi])
1048 AC_MSG_RESULT($guile_cv_have_mutex_recursive)
1049 if test ! $guile_cv_have_mutex_recursive = none; then
1050 AC_DEFINE_UNQUOTED(SCM_MUTEX_RECURSIVE, $guile_cv_have_mutex_recursive,
1051 [The mutex kind enum for recursive mutexes.])
1052 fi
d707b9df
MV
1053
1054 # On Solaris, sched_yield lives in -lrt.
1055 AC_SEARCH_LIBS(sched_yield, rt)
1056
539c89a1 1057 ;;
539c89a1 1058esac
3a629497 1059
18622c4e 1060case "$with_threads" in
9bc4701c 1061 "pthreads")
585356dc 1062 ;;
18622c4e 1063 "no" | "null")
9a52bc2a 1064 SCM_I_GSC_USE_NULL_THREADS=1
18622c4e 1065 with_threads="null-threads"
18306183 1066 ;;
585356dc 1067 * )
18622c4e 1068 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
585356dc
MV
1069 ;;
1070esac
539c89a1 1071
18622c4e
MV
1072AC_MSG_CHECKING(what kind of threads to support)
1073AC_MSG_RESULT($with_threads)
933a7411 1074
0db83c04
MV
1075## Cross building
1076if test "$cross_compiling" = "yes"; then
1077 AC_MSG_CHECKING(cc for build)
1078 ## /usr/bin/cc still uses wrong assembler
1079 ## CC_FOR_BUILD="${CC_FOR_BUILD-/usr/bincc}"
1080 CC_FOR_BUILD="${CC_FOR_BUILD-PATH=/usr/bin:$PATH cc}"
1081else
1082 CC_FOR_BUILD="${CC_FOR_BUILD-$CC}"
1083fi
0db83c04
MV
1084
1085## AC_MSG_CHECKING("if we are cross compiling")
1086## AC_MSG_RESULT($cross_compiling)
1087if test "$cross_compiling" = "yes"; then
1088 AC_MSG_RESULT($CC_FOR_BUILD)
1089fi
1090
1091## No need as yet to be more elaborate
1092CCLD_FOR_BUILD="$CC_FOR_BUILD"
1093
1094AC_SUBST(cross_compiling)
457a4e81 1095AC_ARG_VAR(CC_FOR_BUILD,[build system C compiler])
0db83c04
MV
1096AC_SUBST(CCLD_FOR_BUILD)
1097
1098## libtool erroneously calls CC_FOR_BUILD HOST_CC;
1099## --HOST is the platform that PACKAGE is compiled for.
1100HOST_CC="$CC_FOR_BUILD"
1101AC_SUBST(HOST_CC)
1102
1103if test "$cross_compiling" = "yes"; then
1104 AC_MSG_CHECKING(guile for build)
1105 GUILE_FOR_BUILD="${GUILE_FOR_BUILD-guile}"
1106else
1107 GUILE_FOR_BUILD='$(preinstguile)'
1108fi
0db83c04
MV
1109
1110## AC_MSG_CHECKING("if we are cross compiling")
1111## AC_MSG_RESULT($cross_compiling)
1112if test "$cross_compiling" = "yes"; then
1113 AC_MSG_RESULT($GUILE_FOR_BUILD)
1114fi
89f69c52 1115AC_ARG_VAR(GUILE_FOR_BUILD,[guile for build system])
0db83c04
MV
1116AC_SUBST(GUILE_FOR_BUILD)
1117
3a629497
JB
1118## If we're using GCC, ask for aggressive warnings.
1119case "$GCC" in
99be3450 1120 yes )
0a1b8b15
JB
1121 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
1122 ## much stuff with generic function pointers for that to really be
1123 ## less than exasperating.
aee8ca3f
GH
1124 ## -Wpointer-arith was here too, but something changed in gcc/glibc
1125 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
5c07af6e
MV
1126 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes"
1127 # Do this here so we don't screw up any of the tests above that might
1128 # not be "warning free"
1129 if test "${GUILE_ERROR_ON_WARNING}" = yes
1130 then
1131 CFLAGS="${CFLAGS} -Werror"
1132 enable_compile_warnings=no
1133 fi
1134 ;;
3a629497
JB
1135esac
1136
eede3dbc
RB
1137## NOTE the code below sets LIBOBJS directly and so is now forbidden
1138## -- I'm disabling it for now in the hopes that the newer autoconf
1139## will DTRT -- if not, we need to fix up the sed command to match the
1140## others...
1141##
8f99e3f3
SJ
1142## Remove fileblocks.o from the object list. This file gets added by
1143## the Autoconf macro AC_STRUCT_ST_BLOCKS. But there is no need.
eede3dbc 1144#LIBOBJS="`echo ${LIBOBJS} | sed 's/fileblocks\.o//g'`"
8f99e3f3 1145
3a629497
JB
1146## If we're creating a shared library (using libtool!), then we'll
1147## need to generate a list of .lo files corresponding to the .o files
1148## given in LIBOBJS. We'll call it LIBLOBJS.
eede3dbc 1149LIBLOBJS="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`"
3a629497 1150
e9e225e5 1151## We also need to create corresponding .doc and .x files
eede3dbc
RB
1152EXTRA_DOT_DOC_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.doc ,g;s,\.[[^.]]*$,.doc,'`"
1153EXTRA_DOT_X_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.x ,g;s,\.[[^.]]*$,.x,'`"
91411868 1154
7c86ae05
JB
1155AC_SUBST(GUILE_MAJOR_VERSION)
1156AC_SUBST(GUILE_MINOR_VERSION)
df4a8db0 1157AC_SUBST(GUILE_MICRO_VERSION)
9e6e154e 1158AC_SUBST(GUILE_EFFECTIVE_VERSION)
7c86ae05 1159AC_SUBST(GUILE_VERSION)
9e202853 1160
22b7f585
RB
1161#######################################################################
1162# library versioning
1163
9e202853
RB
1164AC_SUBST(LIBGUILE_INTERFACE_CURRENT)
1165AC_SUBST(LIBGUILE_INTERFACE_REVISION)
1166AC_SUBST(LIBGUILE_INTERFACE_AGE)
1167AC_SUBST(LIBGUILE_INTERFACE)
539c89a1 1168
b8b9ec68 1169AC_SUBST(LIBGUILE_SRFI_SRFI_1_MAJOR)
cfc7c7c0
MD
1170AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_CURRENT)
1171AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION)
1172AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_AGE)
1173AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE)
1174
b8b9ec68 1175AC_SUBST(LIBGUILE_SRFI_SRFI_4_MAJOR)
22b7f585
RB
1176AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_CURRENT)
1177AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION)
1178AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE)
1179AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE)
1180
b8b9ec68 1181AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_MAJOR)
22b7f585
RB
1182AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_CURRENT)
1183AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION)
1184AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_AGE)
1185AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE)
1186
1187#######################################################################
1188
d8b1bb93
MV
1189dnl Tell guile-config what flags guile users should compile and link with.
1190GUILE_LIBS"$LDFLAGS $LIBS"
1191GUILE_CFLAGS="$PTHREAD_CFLAGS"
daa4f38c 1192AC_SUBST(GUILE_LIBS)
d8b1bb93 1193AC_SUBST(GUILE_CFLAGS)
7c86ae05 1194
3a629497
JB
1195AC_SUBST(AWK)
1196AC_SUBST(LIBLOBJS)
91411868 1197AC_SUBST(EXTRA_DOT_DOC_FILES)
e9e225e5 1198AC_SUBST(EXTRA_DOT_X_FILES)
3a629497 1199
6812c28f
TTN
1200dnl See also top_builddir in info node: (libtool)AC_PROG_LIBTOOL
1201top_builddir_absolute=`pwd`
1202AC_SUBST(top_builddir_absolute)
9e6e154e 1203top_srcdir_absolute=`(cd $srcdir && pwd)`
2f13db9a 1204AC_SUBST(top_srcdir_absolute)
6812c28f 1205
9a52bc2a
RB
1206# Additional SCM_I_GSC definitions are above.
1207AC_SUBST([SCM_I_GSC_GUILE_DEBUG])
1208AC_SUBST([SCM_I_GSC_GUILE_DEBUG_FREELIST])
f5922e27 1209AC_SUBST([SCM_I_GSC_ENABLE_DISCOURAGED])
9a52bc2a
RB
1210AC_SUBST([SCM_I_GSC_ENABLE_DEPRECATED])
1211AC_SUBST([SCM_I_GSC_ENABLE_ELISP])
1212AC_SUBST([SCM_I_GSC_HAVE_ARRAYS])
1213AC_SUBST([SCM_I_GSC_STACK_GROWS_UP])
1214AC_SUBST([SCM_I_GSC_C_INLINE])
1215AC_CONFIG_FILES([libguile/gen-scmconfig.h])
1216
237b3247
RB
1217AC_CONFIG_FILES([
1218 Makefile
6812c28f 1219 am/Makefile
9e6e154e
RB
1220 benchmark-suite/Makefile
1221 doc/Makefile
1222 doc/goops/Makefile
1223 doc/r5rs/Makefile
1224 doc/ref/Makefile
1225 doc/tutorial/Makefile
d995da7f 1226 emacs/Makefile
9e6e154e
RB
1227 examples/Makefile
1228 examples/box-dynamic-module/Makefile
1229 examples/box-dynamic/Makefile
1230 examples/box-module/Makefile
1231 examples/box/Makefile
1232 examples/modules/Makefile
1233 examples/safe/Makefile
1234 examples/scripts/Makefile
1235 guile-config/Makefile
237b3247 1236 ice-9/Makefile
8ee7506b
NJ
1237 ice-9/debugger/Makefile
1238 ice-9/debugger/breakpoints/Makefile
3d1a89b9
NJ
1239 lang/Makefile
1240 lang/elisp/Makefile
1241 lang/elisp/internals/Makefile
1242 lang/elisp/primitives/Makefile
9e6e154e
RB
1243 libguile-ltdl/Makefile
1244 libguile-ltdl/upstream/Makefile
1245 libguile/Makefile
237b3247
RB
1246 oop/Makefile
1247 oop/goops/Makefile
1248 scripts/Makefile
1249 srfi/Makefile
849f29a4
RB
1250 test-suite/Makefile
1251 test-suite/standalone/Makefile
1252])
9e6e154e
RB
1253
1254AC_CONFIG_FILES([check-guile], [chmod +x check-guile])
1255AC_CONFIG_FILES([benchmark-guile], [chmod +x benchmark-guile])
1256AC_CONFIG_FILES([guile-tools], [chmod +x guile-tools])
1257AC_CONFIG_FILES([pre-inst-guile], [chmod +x pre-inst-guile])
849f29a4 1258AC_CONFIG_FILES([pre-inst-guile-env], [chmod +x pre-inst-guile-env])
9e6e154e
RB
1259AC_CONFIG_FILES([libguile/guile-snarf],
1260 [chmod +x libguile/guile-snarf])
1261AC_CONFIG_FILES([libguile/guile-doc-snarf],
1262 [chmod +x libguile/guile-doc-snarf])
1263AC_CONFIG_FILES([libguile/guile-func-name-check],
1264 [chmod +x libguile/guile-func-name-check])
1265AC_CONFIG_FILES([libguile/guile-snarf-docs],
1266 [chmod +x libguile/guile-snarf-docs])
237b3247
RB
1267
1268AC_OUTPUT
0f2d19dd 1269
3a629497
JB
1270dnl Local Variables:
1271dnl comment-start: "dnl "
1272dnl comment-end: ""
1273dnl comment-start-skip: "\\bdnl\\b\\s *"
d67c13f6 1274dnl End: