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