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