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