Bit more comments for this:
[bpt/guile.git] / configure.in
CommitLineData
777b022a
JB
1dnl configuration script for Guile
2dnl Process this file with autoconf to produce configure.
50848747 3dnl
a73256d0
KR
4
5define(GUILE_CONFIGURE_COPYRIGHT,[[
6
7Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
8
9This file is part of GUILE
10
11GUILE is free software; you can redistribute it and/or modify it
12under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2, or (at your
14option) any later version.
15
16GUILE is distributed in the hope that it will be useful, but
17WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with GUILE; see the file COPYING. If not, write to the
23Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24Boston, MA 02111-1307, USA.
25
26]])
50848747 27
a44e61ac 28AC_PREREQ(2.53)
237b3247 29
5ae51dad
RB
30AC_INIT(m4_esyscmd(. ./GUILE-VERSION && echo -n ${PACKAGE}),
31 m4_esyscmd(. ./GUILE-VERSION && echo -n ${GUILE_VERSION}))
32AC_CONFIG_SRCDIR(GUILE-VERSION)
33AM_INIT_AUTOMAKE([no-define])
34
a73256d0 35AC_COPYRIGHT(GUILE_CONFIGURE_COPYRIGHT)
8907576f 36AC_CONFIG_SRCDIR([GUILE-VERSION])
5ae51dad 37
2d26def0 38. $srcdir/GUILE-VERSION
5ae51dad 39
15ae1bee 40AM_MAINTAINER_MODE
9a52bc2a 41AM_CONFIG_HEADER([config.h])
a73256d0 42AH_TOP(/*GUILE_CONFIGURE_COPYRIGHT*/)
2d26def0 43
3a629497 44#--------------------------------------------------------------------
0e8a8468
MV
45#
46# Independent Subdirectories
47#
48#--------------------------------------------------------------------
49
50AC_CONFIG_SUBDIRS(guile-readline)
51
a6be66ed
RB
52#--------------------------------------------------------------------
53
54dnl Some more checks for Win32
55AC_CYGWIN
56AC_MINGW32
57AC_LIBTOOL_WIN32_DLL
58
59AC_PROG_INSTALL
60AC_PROG_CC
61AC_PROG_CPP
62AC_PROG_AWK
63
64AC_AIX
65AC_ISC_POSIX
66AC_MINIX
67
68AM_PROG_CC_STDC
69
70AC_LIBTOOL_DLOPEN
c78a96e0 71AC_PROG_LIBTOOL
a6be66ed
RB
72AC_LIB_LTDL
73
74AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
75AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
76
d995da7f
NJ
77AM_PATH_LISPDIR
78
0e8a8468 79#--------------------------------------------------------------------
3a629497 80#
a6be66ed 81# User options (after above tests that may set default CFLAGS etc.)
3a629497
JB
82#
83#--------------------------------------------------------------------
86789f9b 84
bdcccc18
RB
85GUILE_ERROR_ON_WARNING="yes"
86
8afd1a2a
RB
87AC_ARG_ENABLE(error-on-warning,
88 [ --enable-error-on-warning treat compile warnings as errors],
89 [case "${enableval}" in
bdcccc18
RB
90 yes | y) GUILE_ERROR_ON_WARNING="yes" ;;
91 no | n) GUILE_ERROR_ON_WARNING="no" ;;
8afd1a2a
RB
92 *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
93 esac])
94
9a52bc2a 95SCM_I_GSC_GUILE_DEBUG_FREELIST=0
52b3923a 96AC_ARG_ENABLE(debug-freelist,
e73dd549 97 [ --enable-debug-freelist include garbage collector freelist debugging code],
9a52bc2a
RB
98 if test "$enable_debug_freelist" = y \
99 || test "$enable_debug_freelist" = yes; then
100 SCM_I_GSC_GUILE_DEBUG_FREELIST=1
52b3923a
GB
101 fi)
102
cf890744 103AC_ARG_ENABLE(debug-malloc,
e73dd549 104 [ --enable-debug-malloc include malloc debugging code],
cf890744 105 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
eede3dbc
RB
106 AC_DEFINE(GUILE_DEBUG_MALLOC, 1,
107 [Define this if you want to debug scm_must_malloc/realloc/free calls.])
cf890744
MD
108 fi)
109
9a52bc2a 110SCM_I_GSC_GUILE_DEBUG=0
62002dcb 111AC_ARG_ENABLE(guile-debug,
9a52bc2a
RB
112 [AC_HELP_STRING([--enable-guile-debug],
113 [include internal debugging functions])],
62002dcb 114 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
9a52bc2a 115 SCM_I_GSC_GUILE_DEBUG=1
62002dcb
MD
116 fi)
117
afe5177e 118AC_ARG_ENABLE(arrays,
9a52bc2a
RB
119 [AC_HELP_STRING([--disable-arrays],[omit array and uniform array support])],
120 ,
afe5177e
GH
121 enable_arrays=yes)
122
52cfc69b
GH
123AC_ARG_ENABLE(posix,
124 [ --disable-posix omit posix interfaces],,
125 enable_posix=yes)
126
127AC_ARG_ENABLE(networking,
dc914156 128 [ --disable-networking omit networking interfaces],,
52cfc69b
GH
129 enable_networking=yes)
130
131AC_ARG_ENABLE(regex,
132 [ --disable-regex omit regular expression interfaces],,
133 enable_regex=yes)
134
9a52bc2a
RB
135AC_ARG_ENABLE([deprecated],
136 AC_HELP_STRING([--disable-deprecated],[omit deprecated features]))
eede3dbc 137
e73dd549 138if test "$enable_deprecated" = no; then
9a52bc2a 139 SCM_I_GSC_ENABLE_DEPRECATED=0
e73dd549
MV
140else
141 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
94a0d885
MV
142 warn_default=summary
143 elif test "$enable_deprecated" = shutup; then
144 warn_default=no
145 else
146 warn_default=$enable_deprecated
e73dd549 147 fi
9a52bc2a 148 SCM_I_GSC_ENABLE_DEPRECATED=1
eede3dbc
RB
149 AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default",
150 [Define this to control the default warning level for deprecated features.])
e73dd549
MV
151fi
152
3d1a89b9
NJ
153AC_ARG_ENABLE(elisp,
154 [ --disable-elisp omit Emacs Lisp support],,
155 enable_elisp=yes)
156
a44e61ac
MV
157#--------------------------------------------------------------------
158
4f6f9ae3
GH
159dnl Check for dynamic linking
160
161use_modules=yes
162AC_ARG_WITH(modules,
163[ --with-modules[=FILES] Add support for dynamic modules],
164use_modules="$withval")
165test -z "$use_modules" && use_modules=yes
166DLPREOPEN=
167if test "$use_modules" != no; then
4f6f9ae3
GH
168 if test "$use_modules" = yes; then
169 DLPREOPEN="-dlpreopen force"
170 else
171 DLPREOPEN="-export-dynamic"
172 for module in $use_modules; do
173 DLPREOPEN="$DLPREOPEN -dlopen $module"
174 done
175 fi
176fi
177
52cfc69b
GH
178dnl files which are destined for separate modules.
179
4f6f9ae3
GH
180if test "$use_modules" != no; then
181 AC_LIBOBJ([dynl])
182fi
183
9a52bc2a 184SCM_I_GSC_HAVE_ARRAYS=0
afe5177e 185if test "$enable_arrays" = yes; then
eede3dbc
RB
186 AC_LIBOBJ([ramap])
187 AC_LIBOBJ([unif])
9a52bc2a 188 SCM_I_GSC_HAVE_ARRAYS=1
afe5177e
GH
189fi
190
52cfc69b 191if test "$enable_posix" = yes; then
eede3dbc
RB
192 AC_LIBOBJ([filesys])
193 AC_LIBOBJ([posix])
194 AC_DEFINE(HAVE_POSIX, 1,
195 [Define this if you want support for POSIX system calls in Guile.])
52cfc69b
GH
196fi
197
198if test "$enable_networking" = yes; then
eede3dbc
RB
199 AC_LIBOBJ([net_db])
200 AC_LIBOBJ([socket])
201 AC_DEFINE(HAVE_NETWORKING, 1,
202 [Define this if you want support for networking in Guile.])
52cfc69b
GH
203fi
204
cf890744 205if test "$enable_debug_malloc" = yes; then
eede3dbc 206 AC_LIBOBJ([debug-malloc])
cf890744
MD
207fi
208
3d1a89b9 209if test "$enable_elisp" = yes; then
9a52bc2a
RB
210 SCM_I_GSC_ENABLE_ELISP=1
211else
212 SCM_I_GSC_ENABLE_ELISP=0
3d1a89b9
NJ
213fi
214
3a629497 215AC_C_CONST
5b079b46 216
9a52bc2a 217AC_C_INLINE
5bd732c9 218if test "$ac_cv_c_inline" != no; then
9a52bc2a
RB
219 SCM_I_GSC_C_INLINE="\"${ac_cv_c_inline}\""
220else
221 SCM_I_GSC_C_INLINE=NULL
5bd732c9
MV
222fi
223
9a52bc2a
RB
224AC_C_BIGENDIAN
225
226AC_CHECK_SIZEOF(char)
227AC_CHECK_SIZEOF(unsigned char)
813b3dd4 228AC_CHECK_SIZEOF(short)
9a52bc2a 229AC_CHECK_SIZEOF(unsigned short)
9dec9737 230AC_CHECK_SIZEOF(int)
9a52bc2a 231AC_CHECK_SIZEOF(unsigned int)
9dec9737 232AC_CHECK_SIZEOF(long)
9a52bc2a 233AC_CHECK_SIZEOF(unsigned long)
813b3dd4 234AC_CHECK_SIZEOF(size_t)
813b3dd4 235AC_CHECK_SIZEOF(long long)
9a52bc2a 236AC_CHECK_SIZEOF(unsigned long long)
fcc5d734
SJ
237AC_CHECK_SIZEOF(__int64)
238AC_CHECK_SIZEOF(unsigned __int64)
1be6b49c 239AC_CHECK_SIZEOF(void *)
9a52bc2a
RB
240AC_CHECK_SIZEOF(intptr_t)
241AC_CHECK_SIZEOF(uintptr_t)
242AC_CHECK_SIZEOF(ptrdiff_t)
d20008c0 243AC_CHECK_SIZEOF(size_t)
1be6b49c 244
f3f70257
ML
245if test "$ac_cv_sizeof_long" -ne "$ac_cv_sizeof_void_p"; then
246 AC_MSG_ERROR(sizes of long and void* are not identical)
9dec9737 247fi
3a629497 248
c134fe9d 249if test "$ac_cv_sizeof_ptrdiff_t" -ne 0; then
9a52bc2a
RB
250 SCM_I_GSC_T_PTRDIFF='"ptrdiff_t"'
251else
252 SCM_I_GSC_T_PTRDIFF='"long"'
253fi
254AC_SUBST([SCM_I_GSC_T_PTRDIFF])
255
256AC_CHECK_HEADERS([stdint.h])
257AC_CHECK_HEADERS([inttypes.h])
258
d20008c0
MV
259AC_CHECK_SIZEOF(intmax_t)
260
9a52bc2a
RB
261SCM_I_GSC_NEEDS_STDINT_H=0
262SCM_I_GSC_NEEDS_INTTYPES_H=0
263
264### intptr and uintptr (try not to use inttypes if we don't have to)
265if test "$ac_cv_header_inttypes_h" = yes; then
266 if test "$ac_cv_sizeof_intptr_t" -eq 0; then
267 AC_CHECK_SIZEOF([intptr_t],,[#include <inttypes.h>
268#include <stdio.h>])
269 if test "$ac_cv_sizeof_intptr_t" -ne 0; then
270 SCM_I_GSC_NEEDS_INTTYPES_H=1
271 fi
272 fi
273 if test "$ac_cv_sizeof_uintptr_t" -eq 0; then
274 AC_CHECK_SIZEOF([uintptr_t],,[#include <inttypes.h>
275#include <stdio.h>])
276 if test "$ac_cv_sizeof_uintptr_t" -ne 0; then
277 SCM_I_GSC_NEEDS_INTTYPES_H=1
278 fi
279 fi
280fi
281
282### See what's provided by stdint.h
283if test "$ac_cv_header_stdint_h" = yes; then
284 AC_CHECK_TYPE([int8_t],[scm_stdint_has_int8=1],,[#include <stdint.h>])
285 AC_CHECK_TYPE([uint8_t],[scm_stdint_has_uint8=1],,[#include <stdint.h>])
286 AC_CHECK_TYPE([int16_t],[scm_stdint_has_int16=1],,[#include <stdint.h>])
287 AC_CHECK_TYPE([uint16_t],[scm_stdint_has_uint16=1],,[#include <stdint.h>])
288 AC_CHECK_TYPE([int32_t],[scm_stdint_has_int32=1],,[#include <stdint.h>])
289 AC_CHECK_TYPE([uint32_t],[scm_stdint_has_uint32=1],,[#include <stdint.h>])
290 AC_CHECK_TYPE([int64_t],[scm_stdint_has_int64=1],,[#include <stdint.h>])
291 AC_CHECK_TYPE([uint64_t],[scm_stdint_has_uint64=1],,[#include <stdint.h>])
eb1f89f6
MV
292 AC_CHECK_TYPE([intmax_t],[scm_stdint_has_intmax=1],,[#include <stdint.h>])
293 AC_CHECK_TYPE([uintmax_t],[scm_stdint_has_uintmax=1],,[#include <stdint.h>])
9a52bc2a
RB
294fi
295
296# so we don't get confused by the cache (wish there was a better way
297# to check particular headers for the same type...)
298
299unset ac_cv_type_int8_t
300unset ac_cv_type_uint8_t
301unset ac_cv_type_int16_t
302unset ac_cv_type_uint16_t
303unset ac_cv_type_int32_t
304unset ac_cv_type_uint32_t
305unset ac_cv_type_int64_t
306unset ac_cv_type_uint64_t
eb1f89f6
MV
307unset ac_cv_type_intmax_t
308unset ac_cv_type_uintmax_t
9a52bc2a
RB
309
310### See what's provided by inttypes.h
311if test "$ac_cv_header_inttypes_h" = yes; then
312 AC_CHECK_TYPE([int8_t],[scm_inttypes_has_int8=1],,[#include <inttypes.h>])
313 AC_CHECK_TYPE([uint8_t],[scm_inttypes_has_uint8=1],,[#include <inttypes.h>])
314 AC_CHECK_TYPE([int16_t],[scm_inttypes_has_int16=1],,[#include <inttypes.h>])
315 AC_CHECK_TYPE([uint16_t],[scm_inttypes_has_uint16=1],,[#include <inttypes.h>])
316 AC_CHECK_TYPE([int32_t],[scm_inttypes_has_int32=1],,[#include <inttypes.h>])
317 AC_CHECK_TYPE([uint32_t],[scm_inttypes_has_uint32=1],,[#include <inttypes.h>])
318 AC_CHECK_TYPE([int64_t],[scm_inttypes_has_int64=1],,[#include <inttypes.h>])
319 AC_CHECK_TYPE([uint64_t],[scm_inttypes_has_uint64=1],,[#include <inttypes.h>])
eb1f89f6
MV
320 AC_CHECK_TYPE([intmax_t],[scm_inttypes_has_intmax=1],,[#include <inttypes.h>])
321 AC_CHECK_TYPE([uintmax_t],[scm_inttypes_has_uintmax=1],,[#include <inttypes.h>])
9a52bc2a
RB
322fi
323
324# Try hard to find definitions for some required scm_t_*int* types.
325
326### Required type scm_t_int8
6aa84fdd 327if test "$scm_stdint_has_int8"; then
9a52bc2a
RB
328 SCM_I_GSC_T_INT8='"int8_t"'
329 SCM_I_GSC_NEEDS_STDINT_H=1
330elif test "$scm_inttypes_has_int8"; then
331 SCM_I_GSC_T_INT8='"int8_t"'
332 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
333elif test "$ac_cv_sizeof_char" -eq 1; then
334 SCM_I_GSC_T_INT8='"signed char"'
9a52bc2a
RB
335else
336 AC_MSG_ERROR([Can't find appropriate type for scm_t_int8.])
337fi
338AC_SUBST([SCM_I_GSC_T_INT8])
339
340### Required type scm_t_uint8
6aa84fdd 341if test "$scm_stdint_has_uint8"; then
9a52bc2a
RB
342 SCM_I_GSC_T_UINT8='"uint8_t"'
343 SCM_I_GSC_NEEDS_STDINT_H=1
344elif test "$scm_inttypes_has_uint8"; then
345 SCM_I_GSC_T_UINT8='"uint8_t"'
346 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
347elif test "$ac_cv_sizeof_unsigned_char" -eq 1; then
348 SCM_I_GSC_T_UINT8='"unsigned char"'
9a52bc2a
RB
349else
350 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint8.])
351fi
352AC_SUBST([SCM_I_GSC_T_UINT8])
9a52bc2a
RB
353
354### Required type scm_t_int16 (ANSI C says int or short might work)
6aa84fdd 355if test "$scm_stdint_has_int16"; then
9a52bc2a
RB
356 SCM_I_GSC_T_INT16='"int16_t"'
357 SCM_I_GSC_NEEDS_STDINT_H=1
358elif test "$scm_inttypes_has_int16"; then
359 SCM_I_GSC_T_INT16='"int16_t"'
360 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
361elif test "$ac_cv_sizeof_int" -eq 2; then
362 SCM_I_GSC_T_INT16='"int"'
6aa84fdd
MV
363elif test "$ac_cv_sizeof_short" -eq 2; then
364 SCM_I_GSC_T_INT16='"short"'
9a52bc2a
RB
365else
366 AC_MSG_ERROR([Can't find appropriate type for scm_t_int16.])
367fi
368AC_SUBST([SCM_I_GSC_T_INT16])
369
370### Required type scm_t_uint16 (ANSI C says int or short might work)
6aa84fdd 371if test "$scm_stdint_has_uint16"; then
9a52bc2a
RB
372 SCM_I_GSC_T_UINT16='"uint16_t"'
373 SCM_I_GSC_NEEDS_STDINT_H=1
374elif test "$scm_inttypes_has_uint16"; then
375 SCM_I_GSC_T_UINT16='"uint16_t"'
376 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
377elif test "$ac_cv_sizeof_unsigned_int" -eq 2; then
378 SCM_I_GSC_T_UINT16='"unsigned int"'
6aa84fdd
MV
379elif test "$ac_cv_sizeof_unsigned_short" -eq 2; then
380 SCM_I_GSC_T_UINT16='"unsigned short"'
9a52bc2a
RB
381else
382 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint16.])
383fi
384AC_SUBST([SCM_I_GSC_T_UINT16])
385
386
387### Required type scm_t_int32 (ANSI C says int, short, or long might work)
6aa84fdd 388if test "$scm_stdint_has_int32"; then
9a52bc2a
RB
389 SCM_I_GSC_T_INT32='"int32_t"'
390 SCM_I_GSC_NEEDS_STDINT_H=1
391elif test "$scm_inttypes_has_int32"; then
392 SCM_I_GSC_T_INT32='"int32_t"'
393 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
394elif test "$ac_cv_sizeof_int" -eq 4; then
395 SCM_I_GSC_T_INT32='"int"'
6aa84fdd
MV
396elif test "$ac_cv_sizeof_long" -eq 4; then
397 SCM_I_GSC_T_INT32='"long"'
6aa84fdd
MV
398elif test "$ac_cv_sizeof_short" -eq 4; then
399 SCM_I_GSC_T_INT32='"short"'
9a52bc2a
RB
400else
401 AC_MSG_ERROR([Can't find appropriate type for scm_t_int32.])
402fi
403AC_SUBST([SCM_I_GSC_T_INT32])
404
405### Required type scm_t_uint32 (ANSI C says int, short, or long might work)
6aa84fdd 406if test "$scm_stdint_has_uint32"; then
9a52bc2a
RB
407 SCM_I_GSC_T_UINT32='"uint32_t"'
408 SCM_I_GSC_NEEDS_STDINT_H=1
409elif test "$scm_inttypes_has_uint32"; then
410 SCM_I_GSC_T_UINT32='"uint32_t"'
411 SCM_I_GSC_NEEDS_INTTYPES_H=1
6aa84fdd
MV
412elif test "$ac_cv_sizeof_unsigned_int" -eq 4; then
413 SCM_I_GSC_T_UINT32='"unsigned int"'
6aa84fdd
MV
414elif test "$ac_cv_sizeof_unsigned_long" -eq 4; then
415 SCM_I_GSC_T_UINT32='"unsigned long"'
6aa84fdd
MV
416elif test "$ac_cv_sizeof_unsigned_short" -eq 4; then
417 SCM_I_GSC_T_UINT32='"unsigned short"'
9a52bc2a
RB
418else
419 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint32.])
420fi
421AC_SUBST([SCM_I_GSC_T_UINT32])
422
a6be66ed 423### Optional type scm_t_int64 (ANSI C says int, short, or long might work)
fcc5d734 424### Also try 'long long' and '__int64' if we have it.
9a52bc2a 425SCM_I_GSC_T_INT64=0
6aa84fdd
MV
426if test "$scm_stdint_has_int64"; then
427 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
428 SCM_I_GSC_NEEDS_STDINT_H=1
429elif test "$scm_inttypes_has_int64"; then
430 SCM_I_GSC_T_INT64='"int64_t"'
6aa84fdd
MV
431 SCM_I_GSC_NEEDS_INTTYPES_H=1
432elif test "$ac_cv_sizeof_int" -eq 8; then
9a52bc2a
RB
433 SCM_I_GSC_T_INT64='"int"'
434elif test "$ac_cv_sizeof_long" -eq 8; then
435 SCM_I_GSC_T_INT64='"long"'
436elif test "$ac_cv_sizeof_short" -eq 8; then
437 SCM_I_GSC_T_INT64='"short"'
438elif test "$ac_cv_sizeof_long_long" -eq 8; then
439 SCM_I_GSC_T_INT64='"long long"'
fcc5d734
SJ
440elif test "$ac_cv_sizeof___int64" -eq 8; then
441 SCM_I_GSC_T_INT64='"__int64"'
9a52bc2a
RB
442else
443 AC_MSG_ERROR([Can't find appropriate type for scm_t_int64.])
444fi
445AC_SUBST([SCM_I_GSC_T_INT64])
6aa84fdd 446
9a52bc2a 447
a6be66ed 448### Optional type scm_t_uint64 (ANSI C says int, short, or long might work)
fcc5d734 449### Also try 'long long' and '__int64' if we have it.
9a52bc2a 450SCM_I_GSC_T_UINT64=0
6aa84fdd
MV
451if test "$scm_stdint_has_uint64"; then
452 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
453 SCM_I_GSC_NEEDS_STDINT_H=1
454elif test "$scm_inttypes_has_uint64"; then
455 SCM_I_GSC_T_UINT64='"uint64_t"'
6aa84fdd
MV
456 SCM_I_GSC_NEEDS_INTTYPES_H=1
457elif test "$ac_cv_sizeof_unsigned_int" -eq 8; then
9a52bc2a
RB
458 SCM_I_GSC_T_UINT64='"unsigned int"'
459elif test "$ac_cv_sizeof_unsigned_long" -eq 8; then
460 SCM_I_GSC_T_UINT64='"unsigned long"'
461elif test "$ac_cv_sizeof_unsigned_short" -eq 8; then
462 SCM_I_GSC_T_UINT64='"unsigned short"'
463elif test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then
464 SCM_I_GSC_T_UINT64='"unsigned long long"'
fcc5d734
SJ
465elif test "$ac_cv_sizeof_unsigned___int64" -eq 8; then
466 SCM_I_GSC_T_UINT64='"unsigned __int64"'
9a52bc2a
RB
467else
468 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint64.])
469fi
470AC_SUBST([SCM_I_GSC_T_UINT64])
471
eb1f89f6
MV
472### Required type scm_t_intmax
473###
474### We try 'intmax_t', '__int64', 'long long' in this order. When
475### none of them is available, we use 'long'.
476###
477SCM_I_GSC_T_INTMAX=0
478if test "$scm_stdint_has_intmax"; then
479 SCM_I_GSC_T_INTMAX='"intmax_t"'
480 SCM_I_GSC_NEEDS_STDINT_H=1
481elif test "$scm_inttypes_has_intmax"; then
482 SCM_I_GSC_T_INTMAX='"intmax_t"'
483 SCM_I_GSC_NEEDS_INTTYPES_H=1
484elif test "$ac_cv_sizeof___int64" -ne 0; then
485 SCM_I_GSC_T_INTMAX='"__int64"'
486elif test "$ac_cv_sizeof_long_long" -ne 0; then
487 SCM_I_GSC_T_INTMAX='"long long"'
488else
489 SCM_I_GSC_T_INTMAX='"long"'
490fi
491AC_SUBST([SCM_I_GSC_T_INTMAX])
492
493### Required type scm_t_uintmax
494###
495### We try 'uintmax_t', 'unsigned __int64', 'unsigned long long' in
496### this order. When none of them is available, we use 'unsigned long'.
497###
498SCM_I_GSC_T_UINTMAX=0
499if test "$scm_stdint_has_uintmax"; then
500 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
501 SCM_I_GSC_NEEDS_STDINT_H=1
502elif test "$scm_inttypes_has_uintmax"; then
503 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
504 SCM_I_GSC_NEEDS_INTTYPES_H=1
505elif test "$ac_cv_sizeof_unsigned___int64" -ne 0; then
506 SCM_I_GSC_T_UINTMAX='"unsigned __int64"'
507elif test "$ac_cv_sizeof_unsigned_long_long" -ne 0; then
508 SCM_I_GSC_T_UINTMAX='"unsigned long long"'
509else
510 SCM_I_GSC_T_UINTMAX='"unsigned long"'
511fi
512AC_SUBST([SCM_I_GSC_T_UINTMAX])
513
9a52bc2a
RB
514
515AC_SUBST([SCM_I_GSC_NEEDS_STDINT_H])
516AC_SUBST([SCM_I_GSC_NEEDS_INTTYPES_H])
517
3a629497
JB
518AC_HEADER_STDC
519AC_HEADER_DIRENT
520AC_HEADER_TIME
521AC_HEADER_SYS_WAIT
bdcccc18 522
63177e46
KR
523# Reasons for testing:
524# fenv.h - available in C99, but not older systems
525#
526AC_CHECK_HEADERS([fenv.h io.h libc.h limits.h malloc.h memory.h string.h \
bdcccc18
RB
527regex.h rxposix.h rx/rxposix.h sys/dir.h sys/ioctl.h sys/select.h \
528sys/time.h sys/timeb.h sys/times.h sys/stdtypes.h sys/types.h \
529sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h \
530direct.h])
531
3a629497
JB
532GUILE_HEADER_LIBC_WITH_UNISTD
533
534AC_TYPE_GETGROUPS
535AC_TYPE_SIGNAL
536AC_TYPE_MODE_T
537
2e945bcc
SJ
538if test $MINGW32 = no; then
539 AC_CHECK_LIB(m, main)
540fi
4c787b52 541AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
542if test $ac_cv_func_gethostbyname = no; then
543 AC_CHECK_LIB(nsl, gethostbyname)
544fi
39e8f371 545
4c787b52 546AC_CHECK_FUNCS(connect)
5852c051
JB
547if test $ac_cv_func_connect = no; then
548 AC_CHECK_LIB(socket, connect)
549fi
5ee74cec 550
f9e5e096
MV
551dnl
552dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
553dnl
554EXTRA_DEFS=""
f9e5e096 555if test "$MINGW32" = "yes" ; then
6812c28f 556 AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
f9e5e096
MV
557 [Define if you have the <winsock2.h> header file.])])
558 AC_CHECK_LIB(ws2_32, main)
eede3dbc
RB
559 AC_LIBOBJ([win32-uname])
560 AC_LIBOBJ([win32-dirent])
b4e15479 561 if test "$enable_networking" = yes ; then
eede3dbc 562 AC_LIBOBJ([win32-socket])
b4e15479
SJ
563 fi
564 if test "$enable_shared" = yes ; then
8f99e3f3
SJ
565 EXTRA_DEFS="-DSCM_IMPORT"
566 AC_DEFINE(USE_DLL_IMPORT, 1,
567 [Define if you need additional CPP macros on Win32 platforms.])
f9e5e096 568 fi
1fa86ca5
SJ
569 if test x"$enable_ltdl_install" = x"yes" ; then
570 INCLTDL="-DLIBLTDL_DLL_IMPORT $INCLTDL"
571 fi
f9e5e096
MV
572fi
573AC_SUBST(EXTRA_DEFS)
f9e5e096 574
bdcccc18
RB
575# FIXME: check to see if we still need these.
576#AC_SUBST(INCLTDL)
577#AC_SUBST(LIBLTDL)
578
b7f27d64 579AC_SUBST(DLPREOPEN)
5852c051 580
ef73a2a0
KR
581# Reasons for testing:
582# crt_externs.h - Darwin specific
583#
584AC_CHECK_HEADERS([assert.h crt_externs.h])
bdcccc18 585
ef73a2a0 586# Reasons for testing:
1df72834
KR
587# DINFINITY - OSF specific
588# DQNAN - OSF specific
589# (DINFINITY and DQNAN are actually global variables, not functions)
63177e46 590# fesetround - available in C99, but not older systems
c9d1dcc0 591# gmtime_r - recent posix, not on old systems
66ec83c9 592# readdir_r - recent posix, not on old systems
6b01eac9 593# sysconf - not on old systems
ef73a2a0
KR
594# _NSGetEnviron - Darwin specific
595#
63177e46 596AC_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 597
6b01eac9
KR
598# Reasons for testing:
599# netdb.h - not in mingw
600# sys/param.h - not in mingw
601#
602AC_CHECK_HEADERS(crypt.h netdb.h sys/param.h sys/resource.h sys/file.h)
94e6d793 603AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
63271ac5
KR
604
605# crypt() may or may not be available, for instance in some countries there
606# are restrictions on cryptography.
607#
608# crypt() might be in libc (eg. OpenBSD), or it might be in a separate
609# -lcrypt library (eg. Debian GNU/Linux).
610#
611# On HP-UX 11, crypt() is in libc and there's a dummy libcrypt.a. We must
612# be careful to avoid -lcrypt in this case, since libtool will see there's
613# only a static libcrypt and decide to build only a static libguile.
614#
615# AC_SEARCH_LIBS lets us add -lcrypt to LIBS only if crypt() is not in the
616# libraries already in that list.
617#
618AC_SEARCH_LIBS(crypt, crypt,
619 [AC_DEFINE(HAVE_CRYPT,1,
620 [Define to 1 if you have the `crypt' function.])])
94e6d793 621
a6be66ed
RB
622dnl GMP tests
623AC_CHECK_LIB([gmp], [__gmpz_init], ,
624 [AC_MSG_ERROR([GNU MP not found, see http://swox.com/gmp])])
625
9f1555fe
MV
626# mpz_import is a macro so we need to include <gmp.h>
627AC_TRY_LINK([#include <gmp.h>],
628 [mpz_import (0, 0, 0, 0, 0, 0, 0);] , ,
629 [AC_MSG_ERROR([At least GNU MP 4.1 is required, see http://swox.com/gmp])])
630
777b022a
JB
631### Some systems don't declare some functions. On such systems, we
632### need to at least provide our own K&R-style declarations.
633
634### GUILE_FUNC_DECLARED(function, headerfile)
635
636### Check for a declaration of FUNCTION in HEADERFILE; if it is
637### not there, #define MISSING_FUNCTION_DECL.
d70e0619 638AC_DEFUN([GUILE_FUNC_DECLARED], [
fc342a63 639 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 640 AC_EGREP_HEADER($1, $2,
01e5e07e 641 guile_cv_func_$1_declared=yes,
fc342a63
JB
642 guile_cv_func_$1_declared=no))
643 if test [x$guile_cv_func_]$1[_declared] = xno; then
eede3dbc
RB
644 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL], 1,
645 [Define if the operating system supplies $1 without declaring it.])
777b022a
JB
646 fi
647])
648
c31bfb85 649GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 650GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 651
0777022d
KR
652AC_CHECK_DECLS([strptime],,,
653[#define _GNU_SOURCE /* ask glibc to give strptime prototype */
654#include <time.h>])
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#
4d0bfea1
KR
850AC_CHECK_FUNCS(asinh acosh atanh copysign finite sincos trunc)
851
852# C99 specifies isinf and isnan as macros.
853# HP-UX provides only macros, no functions.
c80bab35
KR
854# glibc 2.3.2 provides both macros and functions.
855# IRIX 6.5 and Solaris 8 only provide functions.
4d0bfea1 856#
c80bab35
KR
857# The following tests detect isinf and isnan either as functions or as
858# macros from <math.h>. Plain AC_CHECK_FUNCS is insufficient, it doesn't
859# use <math.h> so doesn't detect on macro-only systems like HP-UX.
4d0bfea1
KR
860#
861AC_MSG_CHECKING([for isinf])
862AC_LINK_IFELSE(
863[#include <math.h>
864int main () { return (isinf(0.0) != 0); }],
865 [AC_MSG_RESULT([yes])
866 AC_DEFINE(HAVE_ISINF, 1,
867 [Define to 1 if you have the `isinf' macro or function.])],
868 [AC_MSG_RESULT([no])])
869AC_MSG_CHECKING([for isnan])
870AC_LINK_IFELSE(
871[#include <math.h>
872int main () { return (isnan(0.0) != 0); }],
873 [AC_MSG_RESULT([yes])
874 AC_DEFINE(HAVE_ISNAN, 1,
875 [Define to 1 if you have the `isnan' macro or function.])],
876 [AC_MSG_RESULT([no])])
594e69b7 877
4a5fa91c
TP
878# When testing for the presence of alloca, we need to add alloca.o
879# explicitly to LIBOBJS to make sure that it is translated to
880# `alloca.lo' for libtool later on. This can and should be done more cleanly.
3a629497 881AC_FUNC_ALLOCA
fb2de91a
RB
882if test "$ALLOCA" = "alloca.o"
883then
884 AC_LIBOBJ([alloca])
885fi
3a629497 886
237b3247
RB
887AC_CHECK_MEMBERS([struct stat.st_rdev])
888AC_CHECK_MEMBERS([struct stat.st_blksize])
889
890AC_STRUCT_ST_BLOCKS
075edbde 891
fd02f2ad
MD
892AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
893 [AC_TRY_CPP([#include <sys/stat.h>
894 #ifndef S_ISLNK
895 #error no S_ISLNK
896 #endif],
897 ac_cv_macro_S_ISLNK=yes,
898 ac_cv_macro_S_ISLNK=no)])
899if test $ac_cv_macro_S_ISLNK = yes; then
eede3dbc
RB
900 AC_DEFINE(HAVE_S_ISLNK, 1,
901 [Define this if your system defines S_ISLNK in sys/stat.h.])
fd02f2ad
MD
902fi
903
3a629497
JB
904AC_STRUCT_TIMEZONE
905GUILE_STRUCT_UTIMBUF
906
3a629497
JB
907#--------------------------------------------------------------------
908#
909# Which way does the stack grow?
910#
911#--------------------------------------------------------------------
912
9a52bc2a 913SCM_I_GSC_STACK_GROWS_UP=0
3a629497
JB
914AC_TRY_RUN(aux (l) unsigned long l;
915 { int x; exit (l >= ((unsigned long)&x)); }
01e5e07e 916 main () { int q; aux((unsigned long)&q); },
d4628c57 917 [SCM_I_GSC_STACK_GROWS_UP=1],
eede3dbc 918 [],
9a52bc2a 919 [AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h)])
eede3dbc 920
a9e0a8af
KR
921AC_CHECK_SIZEOF(float)
922if test "$ac_cv_sizeof_float" -le "$ac_cv_sizeof_long"; then
923 AC_DEFINE(SCM_SINGLES, 1,
924 [Define this if floats are the same size as longs.])
925fi
3a629497
JB
926
927AC_MSG_CHECKING(for struct linger)
928AC_CACHE_VAL(scm_cv_struct_linger,
929 AC_TRY_COMPILE([
930#include <sys/types.h>
931#include <sys/socket.h>],
932 [struct linger lgr; lgr.l_linger = 100],
933 scm_cv_struct_linger="yes",
934 scm_cv_struct_linger="no"))
935AC_MSG_RESULT($scm_cv_struct_linger)
936if test $scm_cv_struct_linger = yes; then
eede3dbc
RB
937 AC_DEFINE(HAVE_STRUCT_LINGER, 1,
938 [Define this if your system defines struct linger, for use with the
939 getsockopt and setsockopt system calls.])
3a629497 940fi
3a629497 941
7534dfdc
MD
942
943AC_MSG_CHECKING(for struct timespec)
944AC_CACHE_VAL(scm_cv_struct_timespec,
945 AC_TRY_COMPILE([
946#include <time.h>],
947 [struct timespec t; t.tv_nsec = 100],
948 scm_cv_struct_timespec="yes",
949 scm_cv_struct_timespec="no"))
950AC_MSG_RESULT($scm_cv_struct_timespec)
951if test $scm_cv_struct_timespec = yes; then
eede3dbc
RB
952 AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
953 [Define this if your system defines struct timespec via <time.h>.])
7534dfdc
MD
954fi
955
3a629497
JB
956#--------------------------------------------------------------------
957#
958# Flags for thread support
959#
960#--------------------------------------------------------------------
961
9a52bc2a
RB
962SCM_I_GSC_USE_PTHREAD_THREADS=0
963SCM_I_GSC_USE_NULL_THREADS=0
964SCM_I_GSC_USE_COOP_THREADS=0
965AC_SUBST([SCM_I_GSC_USE_PTHREAD_THREADS])
966AC_SUBST([SCM_I_GSC_USE_NULL_THREADS])
967AC_SUBST([SCM_I_GSC_USE_COOP_THREADS])
968
539c89a1
JB
969### What thread package has the user asked for?
970AC_ARG_WITH(threads, [ --with-threads thread interface],
18622c4e 971 , with_threads=yes)
539c89a1 972
539c89a1 973case "$with_threads" in
9bc4701c 974 "yes" | "pthread" | "pthreads" | "pthread-threads" | "")
18622c4e
MV
975 AC_CHECK_LIB(pthread, main,
976 LIBS="-lpthread $LIBS"
9a52bc2a 977 SCM_I_GSC_USE_PTHREAD_THREADS=1
9bc4701c 978 with_threads="pthreads",
18622c4e 979 with_threads="null")
09841c77
MD
980
981 if test $GCC = yes; then
982 AC_DEFINE(_THREAD_SAFE, 1,
983 [Use thread safe versions of GNU Libc functions.])
984 fi
985
986 AC_MSG_CHECKING(if pthread_mutexattr_settype is declared)
987 AC_CACHE_VAL(guile_cv_mutexattr_settype_declared,
988 [AC_TRY_COMPILE([#include <pthread.h>],
989 [int pthread_mutexattr_settype (int, int);],
990 guile_cv_mutexattr_settype_declared=no,
991 guile_cv_mutexattr_settype_declared=yes)])
992 AC_MSG_RESULT($guile_cv_mutexattr_settype_declared)
993 if test $guile_cv_mutexattr_settype_declared = yes; then
994 AC_DEFINE(SCM_MUTEXATTR_SETTYPE_DECLARED, 1,
995 [Define if pthread.h declares pthread_mutexattr_settype.])
996 fi
997
998 AC_MSG_CHECKING(how to get a fast mutex)
999 AC_CACHE_VAL(guile_cv_have_mutex_fast,
1000 [AC_TRY_COMPILE([#include <pthread.h>],
1001 [int a = PTHREAD_MUTEX_ADAPTIVE_NP;],
1002 guile_cv_have_mutex_fast=PTHREAD_MUTEX_ADAPTIVE_NP,
1003 guile_cv_have_mutex_fast=none)])
1004 AC_MSG_RESULT($guile_cv_have_mutex_fast)
1005 if test ! $guile_cv_have_mutex_fast = none; then
1006 AC_DEFINE_UNQUOTED(SCM_MUTEX_FAST, $guile_cv_have_mutex_fast,
1007 [The mutex kind enum for fast mutexes.])
1008 fi
1009
1010 AC_MSG_CHECKING(how to get a recursive mutex)
1011 AC_CACHE_VAL(guile_cv_have_mutex_recursive,
1012 [AC_TRY_COMPILE([#include <pthread.h>],
1013 [int a = PTHREAD_MUTEX_RECURSIVE_NP;],
1014 guile_cv_have_mutex_recursive=PTHREAD_MUTEX_RECURSIVE_NP)
1015 if test -z "$guile_cv_have_mutex_recursive"; then
1016 AC_TRY_COMPILE([#include <pthread.h>],
1017 [int a = PTHREAD_MUTEX_RECURSIVE;],
1018 guile_cv_have_mutex_recursive=PTHREAD_MUTEX_RECURSIVE,
1019 guile_cv_have_mutex_recursive=none)
1020 fi])
1021 AC_MSG_RESULT($guile_cv_have_mutex_recursive)
1022 if test ! $guile_cv_have_mutex_recursive = none; then
1023 AC_DEFINE_UNQUOTED(SCM_MUTEX_RECURSIVE, $guile_cv_have_mutex_recursive,
1024 [The mutex kind enum for recursive mutexes.])
1025 fi
d707b9df
MV
1026
1027 # On Solaris, sched_yield lives in -lrt.
1028 AC_SEARCH_LIBS(sched_yield, rt)
1029
539c89a1 1030 ;;
539c89a1 1031esac
3a629497 1032
18622c4e 1033case "$with_threads" in
9bc4701c 1034 "pthreads")
585356dc 1035 ;;
18622c4e 1036 "no" | "null")
9a52bc2a 1037 SCM_I_GSC_USE_NULL_THREADS=1
18622c4e 1038 with_threads="null-threads"
18306183 1039 ;;
585356dc 1040 * )
18622c4e 1041 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
585356dc
MV
1042 ;;
1043esac
539c89a1 1044
18622c4e
MV
1045AC_MSG_CHECKING(what kind of threads to support)
1046AC_MSG_RESULT($with_threads)
933a7411 1047
0db83c04
MV
1048## Cross building
1049if test "$cross_compiling" = "yes"; then
1050 AC_MSG_CHECKING(cc for build)
1051 ## /usr/bin/cc still uses wrong assembler
1052 ## CC_FOR_BUILD="${CC_FOR_BUILD-/usr/bincc}"
1053 CC_FOR_BUILD="${CC_FOR_BUILD-PATH=/usr/bin:$PATH cc}"
1054else
1055 CC_FOR_BUILD="${CC_FOR_BUILD-$CC}"
1056fi
0db83c04
MV
1057
1058## AC_MSG_CHECKING("if we are cross compiling")
1059## AC_MSG_RESULT($cross_compiling)
1060if test "$cross_compiling" = "yes"; then
1061 AC_MSG_RESULT($CC_FOR_BUILD)
1062fi
1063
1064## No need as yet to be more elaborate
1065CCLD_FOR_BUILD="$CC_FOR_BUILD"
1066
1067AC_SUBST(cross_compiling)
457a4e81 1068AC_ARG_VAR(CC_FOR_BUILD,[build system C compiler])
0db83c04
MV
1069AC_SUBST(CCLD_FOR_BUILD)
1070
1071## libtool erroneously calls CC_FOR_BUILD HOST_CC;
1072## --HOST is the platform that PACKAGE is compiled for.
1073HOST_CC="$CC_FOR_BUILD"
1074AC_SUBST(HOST_CC)
1075
1076if test "$cross_compiling" = "yes"; then
1077 AC_MSG_CHECKING(guile for build)
1078 GUILE_FOR_BUILD="${GUILE_FOR_BUILD-guile}"
1079else
1080 GUILE_FOR_BUILD='$(preinstguile)'
1081fi
0db83c04
MV
1082
1083## AC_MSG_CHECKING("if we are cross compiling")
1084## AC_MSG_RESULT($cross_compiling)
1085if test "$cross_compiling" = "yes"; then
1086 AC_MSG_RESULT($GUILE_FOR_BUILD)
1087fi
89f69c52 1088AC_ARG_VAR(GUILE_FOR_BUILD,[guile for build system])
0db83c04
MV
1089AC_SUBST(GUILE_FOR_BUILD)
1090
3a629497
JB
1091## If we're using GCC, ask for aggressive warnings.
1092case "$GCC" in
99be3450 1093 yes )
0a1b8b15
JB
1094 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
1095 ## much stuff with generic function pointers for that to really be
1096 ## less than exasperating.
aee8ca3f
GH
1097 ## -Wpointer-arith was here too, but something changed in gcc/glibc
1098 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
5c07af6e
MV
1099 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes"
1100 # Do this here so we don't screw up any of the tests above that might
1101 # not be "warning free"
1102 if test "${GUILE_ERROR_ON_WARNING}" = yes
1103 then
1104 CFLAGS="${CFLAGS} -Werror"
1105 enable_compile_warnings=no
1106 fi
1107 ;;
3a629497
JB
1108esac
1109
eede3dbc
RB
1110## NOTE the code below sets LIBOBJS directly and so is now forbidden
1111## -- I'm disabling it for now in the hopes that the newer autoconf
1112## will DTRT -- if not, we need to fix up the sed command to match the
1113## others...
1114##
8f99e3f3
SJ
1115## Remove fileblocks.o from the object list. This file gets added by
1116## the Autoconf macro AC_STRUCT_ST_BLOCKS. But there is no need.
eede3dbc 1117#LIBOBJS="`echo ${LIBOBJS} | sed 's/fileblocks\.o//g'`"
8f99e3f3 1118
3a629497
JB
1119## If we're creating a shared library (using libtool!), then we'll
1120## need to generate a list of .lo files corresponding to the .o files
1121## given in LIBOBJS. We'll call it LIBLOBJS.
eede3dbc 1122LIBLOBJS="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`"
3a629497 1123
e9e225e5 1124## We also need to create corresponding .doc and .x files
eede3dbc
RB
1125EXTRA_DOT_DOC_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.doc ,g;s,\.[[^.]]*$,.doc,'`"
1126EXTRA_DOT_X_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.x ,g;s,\.[[^.]]*$,.x,'`"
91411868 1127
7c86ae05
JB
1128AC_SUBST(GUILE_MAJOR_VERSION)
1129AC_SUBST(GUILE_MINOR_VERSION)
df4a8db0 1130AC_SUBST(GUILE_MICRO_VERSION)
9e6e154e 1131AC_SUBST(GUILE_EFFECTIVE_VERSION)
7c86ae05 1132AC_SUBST(GUILE_VERSION)
9e202853 1133
22b7f585
RB
1134#######################################################################
1135# library versioning
1136
1137AC_SUBST(LIBQTHREADS_INTERFACE_CURRENT)
1138AC_SUBST(LIBQTHREADS_INTERFACE_REVISION)
1139AC_SUBST(LIBQTHREADS_INTERFACE_AGE)
1140AC_SUBST(LIBQTHREADS_INTERFACE)
1141
9e202853
RB
1142AC_SUBST(LIBGUILE_INTERFACE_CURRENT)
1143AC_SUBST(LIBGUILE_INTERFACE_REVISION)
1144AC_SUBST(LIBGUILE_INTERFACE_AGE)
1145AC_SUBST(LIBGUILE_INTERFACE)
539c89a1 1146
cfc7c7c0
MD
1147AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_CURRENT)
1148AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION)
1149AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_AGE)
1150AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE)
1151
22b7f585
RB
1152AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_CURRENT)
1153AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION)
1154AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE)
1155AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE)
1156
1157AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_CURRENT)
1158AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION)
1159AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_AGE)
1160AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE)
1161
1162#######################################################################
1163
bcc695e3 1164dnl Tell guile-config what flags guile users should link against.
539c89a1 1165GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
daa4f38c 1166AC_SUBST(GUILE_LIBS)
7c86ae05 1167
3a629497
JB
1168AC_SUBST(AWK)
1169AC_SUBST(LIBLOBJS)
91411868 1170AC_SUBST(EXTRA_DOT_DOC_FILES)
e9e225e5 1171AC_SUBST(EXTRA_DOT_X_FILES)
3a629497 1172
6812c28f
TTN
1173dnl See also top_builddir in info node: (libtool)AC_PROG_LIBTOOL
1174top_builddir_absolute=`pwd`
1175AC_SUBST(top_builddir_absolute)
9e6e154e 1176top_srcdir_absolute=`(cd $srcdir && pwd)`
2f13db9a 1177AC_SUBST(top_srcdir_absolute)
6812c28f 1178
9a52bc2a
RB
1179# Additional SCM_I_GSC definitions are above.
1180AC_SUBST([SCM_I_GSC_GUILE_DEBUG])
1181AC_SUBST([SCM_I_GSC_GUILE_DEBUG_FREELIST])
1182AC_SUBST([SCM_I_GSC_ENABLE_DEPRECATED])
1183AC_SUBST([SCM_I_GSC_ENABLE_ELISP])
1184AC_SUBST([SCM_I_GSC_HAVE_ARRAYS])
1185AC_SUBST([SCM_I_GSC_STACK_GROWS_UP])
1186AC_SUBST([SCM_I_GSC_C_INLINE])
1187AC_CONFIG_FILES([libguile/gen-scmconfig.h])
1188
237b3247
RB
1189AC_CONFIG_FILES([
1190 Makefile
6812c28f 1191 am/Makefile
9e6e154e
RB
1192 benchmark-suite/Makefile
1193 doc/Makefile
1194 doc/goops/Makefile
1195 doc/r5rs/Makefile
1196 doc/ref/Makefile
1197 doc/tutorial/Makefile
d995da7f 1198 emacs/Makefile
9e6e154e
RB
1199 examples/Makefile
1200 examples/box-dynamic-module/Makefile
1201 examples/box-dynamic/Makefile
1202 examples/box-module/Makefile
1203 examples/box/Makefile
1204 examples/modules/Makefile
1205 examples/safe/Makefile
1206 examples/scripts/Makefile
1207 guile-config/Makefile
237b3247 1208 ice-9/Makefile
8ee7506b
NJ
1209 ice-9/debugger/Makefile
1210 ice-9/debugger/breakpoints/Makefile
3d1a89b9
NJ
1211 lang/Makefile
1212 lang/elisp/Makefile
1213 lang/elisp/internals/Makefile
1214 lang/elisp/primitives/Makefile
9e6e154e
RB
1215 libguile-ltdl/Makefile
1216 libguile-ltdl/upstream/Makefile
1217 libguile/Makefile
237b3247
RB
1218 oop/Makefile
1219 oop/goops/Makefile
1220 scripts/Makefile
1221 srfi/Makefile
849f29a4
RB
1222 test-suite/Makefile
1223 test-suite/standalone/Makefile
1224])
9e6e154e
RB
1225
1226AC_CONFIG_FILES([check-guile], [chmod +x check-guile])
1227AC_CONFIG_FILES([benchmark-guile], [chmod +x benchmark-guile])
1228AC_CONFIG_FILES([guile-tools], [chmod +x guile-tools])
1229AC_CONFIG_FILES([pre-inst-guile], [chmod +x pre-inst-guile])
849f29a4 1230AC_CONFIG_FILES([pre-inst-guile-env], [chmod +x pre-inst-guile-env])
9e6e154e
RB
1231AC_CONFIG_FILES([libguile/guile-snarf],
1232 [chmod +x libguile/guile-snarf])
1233AC_CONFIG_FILES([libguile/guile-doc-snarf],
1234 [chmod +x libguile/guile-doc-snarf])
1235AC_CONFIG_FILES([libguile/guile-func-name-check],
1236 [chmod +x libguile/guile-func-name-check])
1237AC_CONFIG_FILES([libguile/guile-snarf-docs],
1238 [chmod +x libguile/guile-snarf-docs])
237b3247
RB
1239
1240AC_OUTPUT
0f2d19dd 1241
3a629497
JB
1242dnl Local Variables:
1243dnl comment-start: "dnl "
1244dnl comment-end: ""
1245dnl comment-start-skip: "\\bdnl\\b\\s *"
d67c13f6 1246dnl End: