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