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