Fix call-with-input-file & relatives for multiple values
[bpt/guile.git] / configure.ac
... / ...
CommitLineData
1dnl configuration script for Guile
2dnl Process this file with autoconf to produce configure.
3dnl
4
5define(GUILE_CONFIGURE_COPYRIGHT,[[
6
7Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
8 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
9
10This file is part of GUILE
11
12GUILE is free software; you can redistribute it and/or modify it under
13the terms of the GNU Lesser General Public License as published by the
14Free Software Foundation; either version 3, or (at your option) any
15later version.
16
17GUILE is distributed in the hope that it will be useful, but WITHOUT
18ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
20License for more details.
21
22You should have received a copy of the GNU Lesser General Public
23License along with GUILE; see the file COPYING.LESSER. If not, write
24to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
25Floor, Boston, MA 02110-1301, USA.
26
27]])
28
29AC_PREREQ(2.61)
30
31AC_INIT([GNU Guile],
32 m4_esyscmd([build-aux/git-version-gen .tarball-version]),
33 [bug-guile@gnu.org])
34AC_CONFIG_AUX_DIR([build-aux])
35AC_CONFIG_MACRO_DIR([m4])
36AC_CONFIG_SRCDIR(GUILE-VERSION)
37
38AM_INIT_AUTOMAKE([gnu no-define -Wall -Wno-override])
39m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AC_SUBST([AM_DEFAULT_VERBOSITY],1)])
40
41AC_COPYRIGHT(GUILE_CONFIGURE_COPYRIGHT)
42AC_CONFIG_SRCDIR([GUILE-VERSION])
43
44. $srcdir/GUILE-VERSION
45GUILE_VERSION="$PACKAGE_VERSION"
46
47AC_CONFIG_HEADERS([config.h])
48AH_TOP(/*GUILE_CONFIGURE_COPYRIGHT*/)
49
50#--------------------------------------------------------------------
51
52AC_LANG([C])
53
54dnl Some more checks for Win32
55AC_CANONICAL_HOST
56
57AC_LIBTOOL_WIN32_DLL
58
59AC_PROG_INSTALL
60AC_PROG_CC
61gl_EARLY
62AC_PROG_CPP
63AC_PROG_SED
64AC_PROG_AWK
65
66dnl Gnulib.
67gl_INIT
68
69AC_PROG_CC_C89
70
71# for per-target cflags in the libguile subdir
72AM_PROG_CC_C_O
73
74AC_LIBTOOL_DLOPEN
75AC_PROG_LIBTOOL
76
77AM_CONDITIONAL([HAVE_SHARED_LIBRARIES], [test "x$enable_shared" = "xyes"])
78
79AC_DEFINE_UNQUOTED([SHARED_LIBRARY_PATH_VARIABLE], ["$shlibpath_var"],
80 [Name of the environment variable that tells the dynamic linker where
81to find shared libraries.])
82
83dnl Check for libltdl.
84AC_LIB_HAVE_LINKFLAGS([ltdl], [], [#include <ltdl.h>],
85 [lt_dlopenext ("foo");])
86if test "x$HAVE_LIBLTDL" != "xyes"; then
87 AC_MSG_ERROR([GNU libltdl (Libtool) not found, see README.])
88fi
89
90AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
91AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
92
93AM_PATH_LISPDIR
94
95AC_DEFINE_UNQUOTED([HOST_TYPE], ["$host"],
96 [Define to the host's GNU triplet.])
97
98#--------------------------------------------------------------------
99#
100# User options (after above tests that may set default CFLAGS etc.)
101#
102#--------------------------------------------------------------------
103
104GUILE_ERROR_ON_WARNING="no"
105
106AC_ARG_ENABLE(error-on-warning,
107 [ --enable-error-on-warning treat compile warnings as errors],
108 [case "${enableval}" in
109 yes | y) GUILE_ERROR_ON_WARNING="yes" ;;
110 no | n) GUILE_ERROR_ON_WARNING="no" ;;
111 *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
112 esac])
113
114AC_ARG_ENABLE(debug-malloc,
115 [ --enable-debug-malloc include malloc debugging code],
116 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
117 AC_DEFINE([GUILE_DEBUG_MALLOC], 1,
118 [Define this if you want to debug scm_must_malloc/realloc/free calls.])
119 fi)
120
121SCM_I_GSC_GUILE_DEBUG=0
122AC_ARG_ENABLE(guile-debug,
123 [AS_HELP_STRING([--enable-guile-debug],
124 [include internal debugging functions])],
125 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
126 SCM_I_GSC_GUILE_DEBUG=1
127 fi)
128
129AC_ARG_ENABLE(posix,
130 [ --disable-posix omit non-essential POSIX interfaces],,
131 enable_posix=yes)
132
133AC_ARG_ENABLE(networking,
134 [ --disable-networking omit networking interfaces],,
135 enable_networking=yes)
136
137AC_ARG_ENABLE(regex,
138 [ --disable-regex omit regular expression interfaces],,
139 enable_regex=yes)
140
141AC_ARG_ENABLE([deprecated],
142 AS_HELP_STRING([--disable-deprecated],[omit deprecated features]))
143
144if test "$enable_deprecated" = no; then
145 SCM_I_GSC_ENABLE_DEPRECATED=0
146 warn_default=no
147else
148 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
149 warn_default=summary
150 elif test "$enable_deprecated" = shutup; then
151 warn_default=no
152 else
153 warn_default=$enable_deprecated
154 fi
155 SCM_I_GSC_ENABLE_DEPRECATED=1
156fi
157AC_DEFINE_UNQUOTED([SCM_WARN_DEPRECATED_DEFAULT], "$warn_default",
158[Define this to control the default warning level for deprecated features.])
159
160dnl Added the following configure option in January 2008 following
161dnl investigation of problems with "64" system and library calls on
162dnl Darwin (MacOS X). The libguile code (_scm.h) assumes that if a
163dnl system has stat64, it will have all the other 64 APIs too; but on
164dnl Darwin, stat64 is there but other APIs are missing.
165dnl
166dnl It also appears, from the Darwin docs, that most system call APIs
167dnl there (i.e. the traditional ones _without_ "64" in their names) have
168dnl been 64-bit-capable for a long time now, so it isn't necessary to
169dnl use "64" versions anyway. For example, Darwin's off_t is 64-bit.
170dnl
171dnl A similar problem has been reported for HP-UX:
172dnl http://www.nabble.com/Building-guile-1.8.2-on-hpux-td13106681.html
173dnl
174dnl Therefore, and also because a Guile without LARGEFILE64 support is
175dnl better than no Guile at all, we provide this option to suppress
176dnl trying to use "64" calls.
177dnl
178dnl It may be that for some 64-bit function on Darwin/HP-UX we do need
179dnl to use a "64" call, and hence that by using --without-64-calls we're
180dnl missing out on that. If so, someone can work on that in the future.
181dnl For now, --without-64-calls allows Guile to build on OSs where it
182dnl wasn't building before.
183AC_MSG_CHECKING([whether to use system and library "64" calls])
184AC_ARG_WITH([64-calls],
185 AS_HELP_STRING([--without-64-calls],
186 [don't attempt to use system and library calls with "64" in their names]),
187 [use_64_calls=$withval],
188 [use_64_calls=yes
189 case $host in
190 *-apple-darwin* )
191 use_64_calls=no
192 ;;
193 powerpc-ibm-aix* )
194 use_64_calls=no
195 ;;
196 esac])
197AC_MSG_RESULT($use_64_calls)
198case "$use_64_calls" in
199 y* )
200 AC_DEFINE([GUILE_USE_64_CALLS], 1,
201 [Define to 1 in order to try to use "64" versions of system and library calls.])
202 ;;
203esac
204
205#--------------------------------------------------------------------
206
207dnl Check for dynamic linking
208
209use_modules=yes
210AC_ARG_WITH(modules,
211[ --with-modules[=FILES] Add support for dynamic modules],
212use_modules="$withval")
213test -z "$use_modules" && use_modules=yes
214DLPREOPEN=
215if test "$use_modules" != no; then
216 if test "$use_modules" = yes; then
217 DLPREOPEN="-dlpreopen force"
218 else
219 DLPREOPEN="-export-dynamic"
220 for module in $use_modules; do
221 DLPREOPEN="$DLPREOPEN -dlopen $module"
222 done
223 fi
224fi
225
226dnl files which are destined for separate modules.
227
228if test "$use_modules" != no; then
229 AC_LIBOBJ([dynl])
230fi
231
232if test "$enable_posix" = yes; then
233 AC_LIBOBJ([posix])
234 AC_DEFINE([HAVE_POSIX], 1,
235 [Define this if you want support for non-essential POSIX system calls in Guile.])
236fi
237
238if test "$enable_networking" = yes; then
239 AC_LIBOBJ([net_db])
240 AC_LIBOBJ([socket])
241 AC_DEFINE([HAVE_NETWORKING], 1,
242 [Define this if you want support for networking in Guile.])
243fi
244
245if test "$enable_debug_malloc" = yes; then
246 AC_LIBOBJ([debug-malloc])
247fi
248
249AC_CHECK_LIB(uca, __uc_get_ar_bsp)
250
251AC_C_CONST
252
253# "volatile" is used in a couple of tests below.
254AC_C_VOLATILE
255
256AC_C_INLINE
257if test "$ac_cv_c_inline" != no; then
258 SCM_I_GSC_C_INLINE="\"${ac_cv_c_inline}\""
259else
260 SCM_I_GSC_C_INLINE=NULL
261fi
262AC_CHECK_LIB(uca, __uc_get_ar_bsp)
263
264AC_C_BIGENDIAN
265
266AC_C_LABELS_AS_VALUES
267
268AC_CHECK_SIZEOF(char)
269AC_CHECK_SIZEOF(unsigned char)
270AC_CHECK_SIZEOF(short)
271AC_CHECK_SIZEOF(unsigned short)
272AC_CHECK_SIZEOF(int)
273AC_CHECK_SIZEOF(unsigned int)
274AC_CHECK_SIZEOF(long)
275AC_CHECK_SIZEOF(unsigned long)
276AC_CHECK_SIZEOF(size_t)
277AC_CHECK_SIZEOF(long long)
278AC_CHECK_SIZEOF(unsigned long long)
279AC_CHECK_SIZEOF(__int64)
280AC_CHECK_SIZEOF(unsigned __int64)
281AC_CHECK_SIZEOF(void *)
282AC_CHECK_SIZEOF(intptr_t)
283AC_CHECK_SIZEOF(uintptr_t)
284AC_CHECK_SIZEOF(ptrdiff_t)
285AC_CHECK_SIZEOF(size_t)
286AC_CHECK_SIZEOF(off_t)
287
288if test "$ac_cv_sizeof_long" -gt "$ac_cv_sizeof_void_p"; then
289 AC_MSG_ERROR(long does not fit into a void*)
290fi
291
292if test "$ac_cv_sizeof_ptrdiff_t" -ne 0; then
293 SCM_I_GSC_T_PTRDIFF='"ptrdiff_t"'
294else
295 SCM_I_GSC_T_PTRDIFF='"long"'
296fi
297AC_SUBST([SCM_I_GSC_T_PTRDIFF])
298
299AC_CHECK_HEADERS([stdint.h])
300AC_CHECK_HEADERS([inttypes.h])
301
302AC_CHECK_SIZEOF(intmax_t)
303
304SCM_I_GSC_NEEDS_STDINT_H=0
305SCM_I_GSC_NEEDS_INTTYPES_H=0
306
307### intptr and uintptr (try not to use inttypes if we don't have to)
308if test "$ac_cv_header_inttypes_h" = yes; then
309 if test "$ac_cv_sizeof_intptr_t" -eq 0; then
310 AC_CHECK_SIZEOF([intptr_t],,[#include <inttypes.h>
311#include <stdio.h>])
312 if test "$ac_cv_sizeof_intptr_t" -ne 0; then
313 SCM_I_GSC_NEEDS_INTTYPES_H=1
314 fi
315 fi
316 if test "$ac_cv_sizeof_uintptr_t" -eq 0; then
317 AC_CHECK_SIZEOF([uintptr_t],,[#include <inttypes.h>
318#include <stdio.h>])
319 if test "$ac_cv_sizeof_uintptr_t" -ne 0; then
320 SCM_I_GSC_NEEDS_INTTYPES_H=1
321 fi
322 fi
323fi
324
325### See what's provided by stdint.h
326if test "$ac_cv_header_stdint_h" = yes; then
327 AC_CHECK_TYPE([int8_t],[scm_stdint_has_int8=1],,[#include <stdint.h>])
328 AC_CHECK_TYPE([uint8_t],[scm_stdint_has_uint8=1],,[#include <stdint.h>])
329 AC_CHECK_TYPE([int16_t],[scm_stdint_has_int16=1],,[#include <stdint.h>])
330 AC_CHECK_TYPE([uint16_t],[scm_stdint_has_uint16=1],,[#include <stdint.h>])
331 AC_CHECK_TYPE([int32_t],[scm_stdint_has_int32=1],,[#include <stdint.h>])
332 AC_CHECK_TYPE([uint32_t],[scm_stdint_has_uint32=1],,[#include <stdint.h>])
333 AC_CHECK_TYPE([int64_t],[scm_stdint_has_int64=1],,[#include <stdint.h>])
334 AC_CHECK_TYPE([uint64_t],[scm_stdint_has_uint64=1],,[#include <stdint.h>])
335 AC_CHECK_TYPE([intmax_t],[scm_stdint_has_intmax=1],,[#include <stdint.h>])
336 AC_CHECK_TYPE([uintmax_t],[scm_stdint_has_uintmax=1],,[#include <stdint.h>])
337 AC_CHECK_TYPE([intptr_t],[scm_stdint_has_intptr=1],,[#include <stdint.h>])
338 AC_CHECK_TYPE([uintptr_t],[scm_stdint_has_uintptr=1],,[#include <stdint.h>])
339fi
340
341# so we don't get confused by the cache (wish there was a better way
342# to check particular headers for the same type...)
343
344unset ac_cv_type_int8_t
345unset ac_cv_type_uint8_t
346unset ac_cv_type_int16_t
347unset ac_cv_type_uint16_t
348unset ac_cv_type_int32_t
349unset ac_cv_type_uint32_t
350unset ac_cv_type_int64_t
351unset ac_cv_type_uint64_t
352unset ac_cv_type_intmax_t
353unset ac_cv_type_uintmax_t
354
355### See what's provided by inttypes.h
356if test "$ac_cv_header_inttypes_h" = yes; then
357 AC_CHECK_TYPE([int8_t],[scm_inttypes_has_int8=1],,[#include <inttypes.h>])
358 AC_CHECK_TYPE([uint8_t],[scm_inttypes_has_uint8=1],,[#include <inttypes.h>])
359 AC_CHECK_TYPE([int16_t],[scm_inttypes_has_int16=1],,[#include <inttypes.h>])
360 AC_CHECK_TYPE([uint16_t],[scm_inttypes_has_uint16=1],,[#include <inttypes.h>])
361 AC_CHECK_TYPE([int32_t],[scm_inttypes_has_int32=1],,[#include <inttypes.h>])
362 AC_CHECK_TYPE([uint32_t],[scm_inttypes_has_uint32=1],,[#include <inttypes.h>])
363 AC_CHECK_TYPE([int64_t],[scm_inttypes_has_int64=1],,[#include <inttypes.h>])
364 AC_CHECK_TYPE([uint64_t],[scm_inttypes_has_uint64=1],,[#include <inttypes.h>])
365 AC_CHECK_TYPE([intmax_t],[scm_inttypes_has_intmax=1],,[#include <inttypes.h>])
366 AC_CHECK_TYPE([uintmax_t],[scm_inttypes_has_uintmax=1],,[#include <inttypes.h>])
367 AC_CHECK_TYPE([intptr_t],[scm_inttypes_has_intptr=1],,[#include <inttypes.h>])
368 AC_CHECK_TYPE([uintptr_t],[scm_inttypes_has_uintptr=1],,[#include <inttypes.h>])
369fi
370
371# Try hard to find definitions for some required scm_t_*int* types.
372
373### Required type scm_t_int8
374if test "$scm_stdint_has_int8"; then
375 SCM_I_GSC_T_INT8='"int8_t"'
376 SCM_I_GSC_NEEDS_STDINT_H=1
377elif test "$scm_inttypes_has_int8"; then
378 SCM_I_GSC_T_INT8='"int8_t"'
379 SCM_I_GSC_NEEDS_INTTYPES_H=1
380elif test "$ac_cv_sizeof_char" -eq 1; then
381 SCM_I_GSC_T_INT8='"signed char"'
382else
383 AC_MSG_ERROR([Can't find appropriate type for scm_t_int8.])
384fi
385AC_SUBST([SCM_I_GSC_T_INT8])
386
387### Required type scm_t_uint8
388if test "$scm_stdint_has_uint8"; then
389 SCM_I_GSC_T_UINT8='"uint8_t"'
390 SCM_I_GSC_NEEDS_STDINT_H=1
391elif test "$scm_inttypes_has_uint8"; then
392 SCM_I_GSC_T_UINT8='"uint8_t"'
393 SCM_I_GSC_NEEDS_INTTYPES_H=1
394elif test "$ac_cv_sizeof_unsigned_char" -eq 1; then
395 SCM_I_GSC_T_UINT8='"unsigned char"'
396else
397 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint8.])
398fi
399AC_SUBST([SCM_I_GSC_T_UINT8])
400
401### Required type scm_t_int16 (ANSI C says int or short might work)
402if test "$scm_stdint_has_int16"; then
403 SCM_I_GSC_T_INT16='"int16_t"'
404 SCM_I_GSC_NEEDS_STDINT_H=1
405elif test "$scm_inttypes_has_int16"; then
406 SCM_I_GSC_T_INT16='"int16_t"'
407 SCM_I_GSC_NEEDS_INTTYPES_H=1
408elif test "$ac_cv_sizeof_int" -eq 2; then
409 SCM_I_GSC_T_INT16='"int"'
410elif test "$ac_cv_sizeof_short" -eq 2; then
411 SCM_I_GSC_T_INT16='"short"'
412else
413 AC_MSG_ERROR([Can't find appropriate type for scm_t_int16.])
414fi
415AC_SUBST([SCM_I_GSC_T_INT16])
416
417### Required type scm_t_uint16 (ANSI C says int or short might work)
418if test "$scm_stdint_has_uint16"; then
419 SCM_I_GSC_T_UINT16='"uint16_t"'
420 SCM_I_GSC_NEEDS_STDINT_H=1
421elif test "$scm_inttypes_has_uint16"; then
422 SCM_I_GSC_T_UINT16='"uint16_t"'
423 SCM_I_GSC_NEEDS_INTTYPES_H=1
424elif test "$ac_cv_sizeof_unsigned_int" -eq 2; then
425 SCM_I_GSC_T_UINT16='"unsigned int"'
426elif test "$ac_cv_sizeof_unsigned_short" -eq 2; then
427 SCM_I_GSC_T_UINT16='"unsigned short"'
428else
429 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint16.])
430fi
431AC_SUBST([SCM_I_GSC_T_UINT16])
432
433
434### Required type scm_t_int32 (ANSI C says int, short, or long might work)
435if test "$scm_stdint_has_int32"; then
436 SCM_I_GSC_T_INT32='"int32_t"'
437 SCM_I_GSC_NEEDS_STDINT_H=1
438elif test "$scm_inttypes_has_int32"; then
439 SCM_I_GSC_T_INT32='"int32_t"'
440 SCM_I_GSC_NEEDS_INTTYPES_H=1
441elif test "$ac_cv_sizeof_int" -eq 4; then
442 SCM_I_GSC_T_INT32='"int"'
443elif test "$ac_cv_sizeof_long" -eq 4; then
444 SCM_I_GSC_T_INT32='"long"'
445elif test "$ac_cv_sizeof_short" -eq 4; then
446 SCM_I_GSC_T_INT32='"short"'
447else
448 AC_MSG_ERROR([Can't find appropriate type for scm_t_int32.])
449fi
450AC_SUBST([SCM_I_GSC_T_INT32])
451
452### Required type scm_t_uint32 (ANSI C says int, short, or long might work)
453if test "$scm_stdint_has_uint32"; then
454 SCM_I_GSC_T_UINT32='"uint32_t"'
455 SCM_I_GSC_NEEDS_STDINT_H=1
456elif test "$scm_inttypes_has_uint32"; then
457 SCM_I_GSC_T_UINT32='"uint32_t"'
458 SCM_I_GSC_NEEDS_INTTYPES_H=1
459elif test "$ac_cv_sizeof_unsigned_int" -eq 4; then
460 SCM_I_GSC_T_UINT32='"unsigned int"'
461elif test "$ac_cv_sizeof_unsigned_long" -eq 4; then
462 SCM_I_GSC_T_UINT32='"unsigned long"'
463elif test "$ac_cv_sizeof_unsigned_short" -eq 4; then
464 SCM_I_GSC_T_UINT32='"unsigned short"'
465else
466 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint32.])
467fi
468AC_SUBST([SCM_I_GSC_T_UINT32])
469
470### Optional type scm_t_int64 (ANSI C says int, short, or long might work)
471### Also try 'long long' and '__int64' if we have it.
472SCM_I_GSC_T_INT64=0
473if test "$scm_stdint_has_int64"; then
474 SCM_I_GSC_T_INT64='"int64_t"'
475 SCM_I_GSC_NEEDS_STDINT_H=1
476elif test "$scm_inttypes_has_int64"; then
477 SCM_I_GSC_T_INT64='"int64_t"'
478 SCM_I_GSC_NEEDS_INTTYPES_H=1
479elif test "$ac_cv_sizeof_int" -eq 8; then
480 SCM_I_GSC_T_INT64='"int"'
481elif test "$ac_cv_sizeof_long" -eq 8; then
482 SCM_I_GSC_T_INT64='"long"'
483elif test "$ac_cv_sizeof_short" -eq 8; then
484 SCM_I_GSC_T_INT64='"short"'
485elif test "$ac_cv_sizeof_long_long" -eq 8; then
486 SCM_I_GSC_T_INT64='"long long"'
487elif test "$ac_cv_sizeof___int64" -eq 8; then
488 SCM_I_GSC_T_INT64='"__int64"'
489else
490 AC_MSG_ERROR([Can't find appropriate type for scm_t_int64.])
491fi
492AC_SUBST([SCM_I_GSC_T_INT64])
493
494
495### Optional type scm_t_uint64 (ANSI C says int, short, or long might work)
496### Also try 'long long' and '__int64' if we have it.
497SCM_I_GSC_T_UINT64=0
498if test "$scm_stdint_has_uint64"; then
499 SCM_I_GSC_T_UINT64='"uint64_t"'
500 SCM_I_GSC_NEEDS_STDINT_H=1
501elif test "$scm_inttypes_has_uint64"; then
502 SCM_I_GSC_T_UINT64='"uint64_t"'
503 SCM_I_GSC_NEEDS_INTTYPES_H=1
504elif test "$ac_cv_sizeof_unsigned_int" -eq 8; then
505 SCM_I_GSC_T_UINT64='"unsigned int"'
506elif test "$ac_cv_sizeof_unsigned_long" -eq 8; then
507 SCM_I_GSC_T_UINT64='"unsigned long"'
508elif test "$ac_cv_sizeof_unsigned_short" -eq 8; then
509 SCM_I_GSC_T_UINT64='"unsigned short"'
510elif test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then
511 SCM_I_GSC_T_UINT64='"unsigned long long"'
512elif test "$ac_cv_sizeof_unsigned___int64" -eq 8; then
513 SCM_I_GSC_T_UINT64='"unsigned __int64"'
514else
515 AC_MSG_ERROR([Can't find appropriate type for scm_t_uint64.])
516fi
517AC_SUBST([SCM_I_GSC_T_UINT64])
518
519### Required type scm_t_intmax
520###
521### We try 'intmax_t', '__int64', 'long long' in this order. When
522### none of them is available, we use 'long'.
523###
524SCM_I_GSC_T_INTMAX=0
525if test "$scm_stdint_has_intmax"; then
526 SCM_I_GSC_T_INTMAX='"intmax_t"'
527 SCM_I_GSC_NEEDS_STDINT_H=1
528elif test "$scm_inttypes_has_intmax"; then
529 SCM_I_GSC_T_INTMAX='"intmax_t"'
530 SCM_I_GSC_NEEDS_INTTYPES_H=1
531elif test "$ac_cv_sizeof___int64" -ne 0; then
532 SCM_I_GSC_T_INTMAX='"__int64"'
533elif test "$ac_cv_sizeof_long_long" -ne 0; then
534 SCM_I_GSC_T_INTMAX='"long long"'
535else
536 SCM_I_GSC_T_INTMAX='"long"'
537fi
538AC_SUBST([SCM_I_GSC_T_INTMAX])
539
540### Required type scm_t_uintmax
541###
542### We try 'uintmax_t', 'unsigned __int64', 'unsigned long long' in
543### this order. When none of them is available, we use 'unsigned long'.
544###
545SCM_I_GSC_T_UINTMAX=0
546if test "$scm_stdint_has_uintmax"; then
547 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
548 SCM_I_GSC_NEEDS_STDINT_H=1
549elif test "$scm_inttypes_has_uintmax"; then
550 SCM_I_GSC_T_UINTMAX='"uintmax_t"'
551 SCM_I_GSC_NEEDS_INTTYPES_H=1
552elif test "$ac_cv_sizeof_unsigned___int64" -ne 0; then
553 SCM_I_GSC_T_UINTMAX='"unsigned __int64"'
554elif test "$ac_cv_sizeof_unsigned_long_long" -ne 0; then
555 SCM_I_GSC_T_UINTMAX='"unsigned long long"'
556else
557 SCM_I_GSC_T_UINTMAX='"unsigned long"'
558fi
559AC_SUBST([SCM_I_GSC_T_UINTMAX])
560
561### Required type scm_t_intptr
562###
563SCM_I_GSC_T_INTPTR=0
564if test "$scm_stdint_has_intptr"; then
565 SCM_I_GSC_T_INTPTR='"intptr_t"'
566 SCM_I_GSC_NEEDS_STDINT_H=1
567elif test "$scm_inttypes_has_intptr"; then
568 SCM_I_GSC_T_INTPTR='"intptr_t"'
569 SCM_I_GSC_NEEDS_INTTYPES_H=1
570elif test "$ac_cv_sizeof_int" = "$ac_cv_sizeof_void_p"; then
571 SCM_I_GSC_T_INTPTR='"int"'
572elif test "$ac_cv_sizeof_long" = "$ac_cv_sizeof_void_p"; then
573 SCM_I_GSC_T_INTPTR='"long"'
574elif test "$ac_cv_sizeof_long_long" = "$ac_cv_sizeof_void_p"; then
575 SCM_I_GSC_T_INTPTR='"long long"'
576else
577 AC_MSG_ERROR([Can't find appropriate type for `scm_t_intptr'.])
578fi
579AC_SUBST([SCM_I_GSC_T_INTPTR])
580
581### Required type scm_t_uintptr
582###
583SCM_I_GSC_T_UINTPTR=0
584if test "$scm_stdint_has_uintptr"; then
585 SCM_I_GSC_T_UINTPTR='"uintptr_t"'
586 SCM_I_GSC_NEEDS_STDINT_H=1
587elif test "$scm_inttypes_has_uintptr"; then
588 SCM_I_GSC_T_UINTPTR='"uintptr_t"'
589 SCM_I_GSC_NEEDS_INTTYPES_H=1
590elif test "$ac_cv_sizeof_int" = "$ac_cv_sizeof_void_p"; then
591 SCM_I_GSC_T_UINTPTR='"unsigned int"'
592elif test "$ac_cv_sizeof_long" = "$ac_cv_sizeof_void_p"; then
593 SCM_I_GSC_T_UINTPTR='"unsigned long"'
594elif test "$ac_cv_sizeof_long_long" = "$ac_cv_sizeof_void_p"; then
595 SCM_I_GSC_T_UINTPTR='"unsigned long long"'
596else
597 AC_MSG_ERROR([Can't find appropriate type for `scm_t_uintptr'.])
598fi
599AC_SUBST([SCM_I_GSC_T_UINTPTR])
600
601
602AC_SUBST([SCM_I_GSC_NEEDS_STDINT_H])
603AC_SUBST([SCM_I_GSC_NEEDS_INTTYPES_H])
604
605AC_HEADER_STDC
606AC_HEADER_TIME
607AC_HEADER_SYS_WAIT
608AC_HEADER_DIRENT
609
610# Reason for checking:
611#
612# HP-UX 11.11 (at least) doesn't provide `struct dirent64', even
613# with `_LARGEFILE64_SOURCE', so check whether it's available.
614#
615AC_CHECK_MEMBER([struct dirent64.d_name],
616 [SCM_I_GSC_HAVE_STRUCT_DIRENT64=1], [SCM_I_GSC_HAVE_STRUCT_DIRENT64=0],
617 [ #ifndef _LARGEFILE64_SOURCE
618 # define _LARGEFILE64_SOURCE
619 #endif
620
621 /* Per Autoconf manual. */
622 #include <sys/types.h>
623 #ifdef HAVE_DIRENT_H
624 # include <dirent.h>
625 #else
626 # define dirent direct
627 # ifdef HAVE_SYS_NDIR_H
628 # include <sys/ndir.h>
629 # endif
630 # ifdef HAVE_SYS_DIR_H
631 # include <sys/dir.h>
632 # endif
633 # ifdef HAVE_NDIR_H
634 # include <ndir.h>
635 # endif
636 #endif ])
637AC_SUBST([SCM_I_GSC_HAVE_STRUCT_DIRENT64])
638
639# Reasons for testing:
640# complex.h - new in C99
641# fenv.h - available in C99, but not older systems
642# machine/fpu.h - on Tru64 5.1b, the declaration of fesetround(3) is in
643# this file instead of <fenv.h>
644# process.h - mingw specific
645# langinfo.h, nl_types.h - SuS v2
646# sched.h - missing on MinGW
647#
648AC_CHECK_HEADERS([complex.h fenv.h io.h libc.h limits.h malloc.h memory.h process.h string.h \
649regex.h rxposix.h rx/rxposix.h sys/dir.h sys/ioctl.h sys/select.h \
650sys/time.h sys/timeb.h sys/times.h sys/stdtypes.h sys/types.h \
651sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h \
652direct.h langinfo.h nl_types.h machine/fpu.h poll.h sched.h])
653
654# Reasons for testing:
655# nl_item - lacking on Cygwin
656AC_CHECK_TYPES([nl_item], [], [],
657 [[#ifdef HAVE_LANGINFO_H
658 # include <langinfo.h>
659 #endif
660 #ifdef HAVE_NL_TYPES_H
661 # include <nl_types.h>
662 #endif]])
663
664# "complex double" is new in C99, and "complex" is only a keyword if
665# <complex.h> is included
666AC_CHECK_TYPES(complex double,,,
667[#if HAVE_COMPLEX_H
668#include <complex.h>
669#endif])
670
671# On MacOS X <sys/socklen.h> contains socklen_t, so must include that
672# when testing.
673AC_CHECK_TYPE(socklen_t, ,
674 [AC_DEFINE_UNQUOTED([socklen_t], int,
675 [Define to `int' if <sys/socket.h> does not define.])],
676 [#if HAVE_SYS_TYPES_H
677#include <sys/types.h>
678#endif
679#include <sys/socket.h>
680])
681
682AC_CHECK_TYPES([struct ip_mreq], , , [#include <netinet/in.h>])
683
684GUILE_HEADER_LIBC_WITH_UNISTD
685
686AC_TYPE_GETGROUPS
687AC_TYPE_SIGNAL
688AC_TYPE_MODE_T
689
690# On mingw -lm is empty, so this test is unnecessary, but it's
691# harmless so we don't hard-code to suppress it.
692#
693AC_CHECK_LIB(m, cos)
694
695AC_CHECK_FUNCS(gethostbyname)
696if test $ac_cv_func_gethostbyname = no; then
697 AC_CHECK_LIB(nsl, gethostbyname)
698fi
699
700AC_CHECK_FUNCS(connect)
701if test $ac_cv_func_connect = no; then
702 AC_CHECK_LIB(socket, connect)
703fi
704
705dnl
706dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
707dnl
708EXTRA_DEFS=""
709case $host in
710 *-*-mingw*)
711 AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
712 [Define if you have the <winsock2.h> header file.])])
713 AC_CHECK_LIB(ws2_32, main)
714 AC_LIBOBJ([win32-uname])
715 AC_LIBOBJ([win32-dirent])
716 if test "$enable_networking" = yes ; then
717 AC_LIBOBJ([win32-socket])
718 fi
719 if test "$enable_shared" = yes ; then
720 EXTRA_DEFS="-DSCM_IMPORT"
721 AC_DEFINE([USE_DLL_IMPORT], 1,
722 [Define if you need additional CPP macros on Win32 platforms.])
723 fi
724 ;;
725esac
726AC_SUBST(EXTRA_DEFS)
727
728# Reasons for testing:
729# crt_externs.h - Darwin specific
730#
731AC_CHECK_HEADERS([assert.h crt_externs.h])
732
733# Reasons for testing:
734# DINFINITY - OSF specific
735# DQNAN - OSF specific
736# (DINFINITY and DQNAN are actually global variables, not functions)
737# chsize - an MS-DOS-ism, found in mingw
738# cexp, clog - not in various pre-c99 systems, and note that it's possible
739# for gcc to provide the "complex double" type but the system to not
740# have functions like cexp and clog
741# clog10 - not in mingw (though others like clog and csqrt are)
742# fesetround - available in C99, but not older systems
743# ftruncate - posix, but probably not older systems (current mingw
744# has it as an inline for chsize)
745# ioctl - not in mingw.
746# gmtime_r - recent posix, not on old systems
747# pipe - not in mingw
748# _pipe - specific to mingw, taking 3 args
749# poll - since posix 2001
750# readdir_r - recent posix, not on old systems
751# readdir64_r - not available on HP-UX 11.11
752# stat64 - SuS largefile stuff, not on old systems
753# sysconf - not on old systems
754# truncate - not in mingw
755# isblank - available as a GNU extension or in C99
756# _NSGetEnviron - Darwin specific
757# strcoll_l, newlocale - GNU extensions (glibc), also available on Darwin
758# nl_langinfo - X/Open, not available on Windows.
759# utimensat: posix.1-2008
760# sched_getaffinity, sched_setaffinity: GNU extensions (glibc)
761#
762AC_CHECK_FUNCS([DINFINITY DQNAN cexp chsize clog clog10 ctermid fesetround ftime ftruncate fchown getcwd geteuid getsid gettimeofday gmtime_r ioctl lstat mkdir mknod nice pipe _pipe poll readdir_r readdir64_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 utimensat sched_getaffinity sched_setaffinity])
763
764# Reasons for testing:
765# netdb.h - not in mingw
766# sys/param.h - not in mingw
767# pthread.h - only available with pthreads. ACX_PTHREAD doesn't
768# check this specifically, we need it for the timespec test below.
769# sethostname - the function itself check because it's not in mingw,
770# the DECL is checked because Solaris 10 doens't have in any header
771# hstrerror - on Tru64 5.1b the symbol is available in libc but the
772# declaration isn't anywhere.
773# cuserid - on Tru64 5.1b the declaration is documented to be available
774# only with `_XOPEN_SOURCE' or some such.
775#
776AC_CHECK_HEADERS([crypt.h netdb.h pthread.h sys/param.h sys/resource.h sys/file.h sys/mman.h])
777AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
778AC_CHECK_DECLS([sethostname, hstrerror, cuserid])
779
780# crypt() may or may not be available, for instance in some countries there
781# are restrictions on cryptography.
782#
783# crypt() might be in libc (eg. OpenBSD), or it might be in a separate
784# -lcrypt library (eg. Debian GNU/Linux).
785#
786# On HP-UX 11, crypt() is in libc and there's a dummy libcrypt.a. We must
787# be careful to avoid -lcrypt in this case, since libtool will see there's
788# only a static libcrypt and decide to build only a static libguile.
789#
790# AC_SEARCH_LIBS lets us add -lcrypt to LIBS only if crypt() is not in the
791# libraries already in that list.
792#
793AC_SEARCH_LIBS(crypt, crypt,
794 [AC_DEFINE([HAVE_CRYPT],1,
795 [Define to 1 if you have the `crypt' function.])])
796
797# When compiling with GCC on some OSs (Solaris, AIX), _Complex_I doesn't
798# work; in the reported cases so far, 1.0fi works well instead. According
799# to the C99 spec, the complex.h header must provide a working definition
800# of _Complex_I, so we always try _Complex_I first. The 1.0fi fallback
801# is a workaround for the failure of some systems to conform to C99.
802if test "$ac_cv_type_complex_double" = yes; then
803 AC_MSG_CHECKING([for i])
804 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
805#if HAVE_COMPLEX_H
806#include <complex.h>
807#endif
808complex double z;
809]], [[
810z = _Complex_I;
811]])],
812 [AC_DEFINE([GUILE_I],_Complex_I,[The imaginary unit (positive square root of -1).])
813 AC_MSG_RESULT([_Complex_I])],
814 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
815#if HAVE_COMPLEX_H
816#include <complex.h>
817#endif
818complex double z;
819]],[[
820z = 1.0fi;
821]])],
822 [AC_DEFINE([GUILE_I],1.0fi)
823 AC_MSG_RESULT([1.0fi])],
824 [ac_cv_type_complex_double=no
825 AC_MSG_RESULT([not available])])])
826fi
827
828# glibc 2.3.6 (circa 2006) and various prior versions had a bug where
829# csqrt(-i) returned a negative real part, when it should be positive
830# for the principal root.
831#
832if test "$ac_cv_type_complex_double" = yes; then
833
834 AC_CACHE_CHECK([whether csqrt is usable],
835 guile_cv_use_csqrt,
836 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
837#include <complex.h>
838/* "volatile" is meant to prevent gcc from calculating the sqrt as a
839 constant, we want to test libc. */
840volatile complex double z = - _Complex_I;
841int
842main (void)
843{
844 z = csqrt (z);
845 if (creal (z) > 0.0)
846 return 0; /* good */
847 else
848 return 1; /* bad */
849}]])],
850 [guile_cv_use_csqrt=yes],
851 [guile_cv_use_csqrt="no, glibc 2.3 bug"],
852 [guile_cv_use_csqrt="yes, hopefully (cross-compiling)"])])
853 case $guile_cv_use_csqrt in
854 yes*)
855 AC_DEFINE([HAVE_USABLE_CSQRT], 1, [Define to 1 if csqrt is bug-free])
856 ;;
857 esac
858fi
859
860AC_CACHE_SAVE
861
862dnl GMP tests
863AC_LIB_HAVE_LINKFLAGS([gmp],
864 [],
865 [#include <gmp.h>],
866 [mpz_import (0, 0, 0, 0, 0, 0, 0);])
867
868if test "x$HAVE_LIBGMP" != "xyes"; then
869 AC_MSG_ERROR([GNU MP 4.1 or greater not found, see README])
870fi
871
872dnl GNU libunistring is checked for by Gnulib's `libunistring' module.
873if test "x$LTLIBUNISTRING" = "x"; then
874 AC_MSG_ERROR([GNU libunistring is required, please install it.])
875fi
876
877GUILE_LIBUNISTRING_WITH_ICONV_SUPPORT
878if test "x$ac_cv_libunistring_with_iconv_support" != "xyes"; then
879 AC_MSG_ERROR([No iconv support. Please recompile libunistring with iconv enabled.])
880fi
881
882dnl Libffi is needed to compile Guile's foreign function interface, but its
883dnl interface isn't exposed in Guile's API.
884PKG_CHECK_MODULES(LIBFFI, libffi)
885AC_SUBST(LIBFFI_CFLAGS)
886AC_SUBST(LIBFFI_LIBS)
887
888dnl figure out approriate ffi type for size_t
889AC_CHECK_SIZEOF(size_t)
890AC_CHECK_SIZEOF(ssize_t)
891ffi_size_type=uint$(($ac_cv_sizeof_size_t*8))
892ffi_ssize_type=sint$(($ac_cv_sizeof_ssize_t*8))
893AC_DEFINE_UNQUOTED([ffi_type_size_t], ffi_type_${ffi_size_type},
894 [ffi type for size_t])
895AC_DEFINE_UNQUOTED([ffi_type_ssize_t], ffi_type_${ffi_ssize_type},
896 [ffi type for ssize_t])
897
898dnl i18n tests
899#AC_CHECK_HEADERS([libintl.h])
900#AC_CHECK_FUNCS(gettext)
901#if test $ac_cv_func_gettext = no; then
902# AC_CHECK_LIB(intl, gettext)
903#fi
904#AC_CHECK_FUNCS([bindtextdomain textdomain])
905AM_GNU_GETTEXT([external], [need-ngettext])
906
907### Some systems don't declare some functions. On such systems, we
908### need to at least provide our own K&R-style declarations.
909
910### GUILE_FUNC_DECLARED(function, headerfile)
911
912### Check for a declaration of FUNCTION in HEADERFILE; if it is
913### not there, #define MISSING_FUNCTION_DECL.
914AC_DEFUN([GUILE_FUNC_DECLARED], [
915 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
916 AC_EGREP_HEADER($1, $2,
917 guile_cv_func_$1_declared=yes,
918 guile_cv_func_$1_declared=no))
919 if test [x$guile_cv_func_]$1[_declared] = xno; then
920 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL], 1,
921 [Define if the operating system supplies $1 without declaring it.])
922 fi
923])
924
925GUILE_FUNC_DECLARED(sleep, unistd.h)
926GUILE_FUNC_DECLARED(usleep, unistd.h)
927
928AC_CHECK_DECLS([strptime],,,
929[#define _GNU_SOURCE /* ask glibc to give strptime prototype */
930#include <time.h>])
931
932### On some systems usleep has no return value. If it does have one,
933### we'd like to return it; otherwise, we'll fake it.
934AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
935 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
936 unistd.h,
937 [guile_cv_func_usleep_return_type=void],
938 [guile_cv_func_usleep_return_type=int])])
939case "$guile_cv_func_usleep_return_type" in
940 "void" )
941 AC_DEFINE([USLEEP_RETURNS_VOID], 1,
942 [Define if the system headers declare usleep to return void.])
943 ;;
944esac
945
946AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
947if test -n "$have_sys_un_h" ; then
948 AC_DEFINE([HAVE_UNIX_DOMAIN_SOCKETS], 1,
949 [Define if the system supports Unix-domain (file-domain) sockets.])
950fi
951
952AC_CHECK_FUNCS(getrlimit setrlimit)
953
954AC_CHECK_FUNCS(socketpair getgroups setgroups setpwent pause tzset)
955
956AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
957 setnetent getnetent endnetent dnl
958 setprotoent getprotoent endprotoent dnl
959 setservent getservent endservent dnl
960 getnetbyaddr getnetbyname dnl
961 inet_lnaof inet_makeaddr inet_netof hstrerror)
962
963AC_CHECK_MEMBERS([struct sockaddr_in.sin_len],,,
964[#ifdef HAVE_SYS_TYPES_H
965#include <sys/types.h>
966#endif
967#include <netinet/in.h>])
968
969AC_MSG_CHECKING(for __libc_stack_end)
970AC_CACHE_VAL(guile_cv_have_libc_stack_end,
971[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
972extern char *__libc_stack_end;]],
973 [[printf("%p", (char*) __libc_stack_end);]])],
974 [guile_cv_have_libc_stack_end=yes],
975 [guile_cv_have_libc_stack_end=no])])
976AC_MSG_RESULT($guile_cv_have_libc_stack_end)
977
978if test $guile_cv_have_libc_stack_end = yes; then
979 AC_DEFINE([HAVE_LIBC_STACK_END], 1,
980 [Define if you have the __libc_stack_end variable.])
981fi
982
983dnl Some systems do not declare this. Some systems do declare it, as a
984dnl macro. With cygwin it may be in a DLL.
985
986AC_MSG_CHECKING(whether netdb.h declares h_errno)
987AC_CACHE_VAL(guile_cv_have_h_errno,
988 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]],
989 [[int a = h_errno;]])],
990 [guile_cv_have_h_errno=yes],
991 [guile_cv_have_h_errno=no])])
992AC_MSG_RESULT($guile_cv_have_h_errno)
993if test $guile_cv_have_h_errno = yes; then
994 AC_DEFINE([HAVE_H_ERRNO], 1, [Define if h_errno is declared in netdb.h.])
995fi
996
997AC_MSG_CHECKING(whether uint32_t is defined)
998AC_CACHE_VAL(guile_cv_have_uint32_t,
999 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
1000 #if HAVE_STDINT_H
1001 #include <stdint.h>
1002 #endif
1003 #ifndef HAVE_NETDB_H
1004 #include <netdb.h>
1005 #endif]],
1006 [[uint32_t a;]])],
1007 [guile_cv_have_uint32_t=yes],
1008 [guile_cv_have_uint32_t=no])])
1009AC_MSG_RESULT($guile_cv_have_uint32_t)
1010if test $guile_cv_have_uint32_t = yes; then
1011 AC_DEFINE([HAVE_UINT32_T], 1,
1012 [Define if uint32_t typedef is defined when netdb.h is include.])
1013fi
1014
1015AC_MSG_CHECKING(for working IPv6 support)
1016AC_CACHE_VAL(guile_cv_have_ipv6,
1017[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1018#ifdef HAVE_SYS_TYPES_H
1019#include <sys/types.h>
1020#endif
1021#include <netinet/in.h>
1022#include <sys/socket.h>]],
1023[[struct sockaddr_in6 a; a.sin6_family = AF_INET6;]])],
1024[guile_cv_have_ipv6=yes],
1025[guile_cv_have_ipv6=no])])
1026AC_MSG_RESULT($guile_cv_have_ipv6)
1027if test $guile_cv_have_ipv6 = yes; then
1028 AC_DEFINE([HAVE_IPV6], 1, [Define if you want support for IPv6.])
1029fi
1030
1031# included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
1032AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
1033AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
1034[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1035#ifdef HAVE_SYS_TYPES_H
1036#include <sys/types.h>
1037#endif
1038#include <netinet/in.h>]],
1039[[struct sockaddr_in6 sok; sok.sin6_scope_id = 0;]])],
1040[guile_cv_have_sin6_scope_id=yes],
1041[guile_cv_have_sin6_scope_id=no])])
1042AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
1043if test $guile_cv_have_sin6_scope_id = yes; then
1044 AC_DEFINE([HAVE_SIN6_SCOPE_ID], 1,
1045 [Define this if your IPv6 has sin6_scope_id in sockaddr_in6 struct.])
1046fi
1047
1048# struct sockaddr_in6 field sin_len is only present on BSD systems
1049AC_CHECK_MEMBERS([struct sockaddr_in6.sin6_len],,,
1050[#ifdef HAVE_SYS_TYPES_H
1051#include <sys/types.h>
1052#endif
1053#include <netinet/in.h>])
1054
1055AC_MSG_CHECKING(whether localtime caches TZ)
1056AC_CACHE_VAL(guile_cv_localtime_cache,
1057[if test x$ac_cv_func_tzset = xyes; then
1058AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <time.h>
1059#if STDC_HEADERS
1060# include <stdlib.h>
1061#endif
1062extern char **environ;
1063unset_TZ ()
1064{
1065 char **from, **to;
1066 for (to = from = environ; (*to = *from); from++)
1067 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
1068 to++;
1069}
1070char TZ_GMT0[] = "TZ=GMT0";
1071char TZ_PST8[] = "TZ=PST8";
1072main()
1073{
1074 time_t now = time ((time_t *) 0);
1075 int hour_GMT0, hour_unset;
1076 if (putenv (TZ_GMT0) != 0)
1077 exit (1);
1078 hour_GMT0 = localtime (&now)->tm_hour;
1079 unset_TZ ();
1080 hour_unset = localtime (&now)->tm_hour;
1081 if (putenv (TZ_PST8) != 0)
1082 exit (1);
1083 if (localtime (&now)->tm_hour == hour_GMT0)
1084 exit (1);
1085 unset_TZ ();
1086 if (localtime (&now)->tm_hour != hour_unset)
1087 exit (1);
1088 exit (0);
1089}]])],
1090[guile_cv_localtime_cache=no],
1091[guile_cv_localtime_cache=yes],
1092[# If we have tzset, assume the worst when cross-compiling.
1093guile_cv_localtime_cache=yes])
1094else
1095 # If we lack tzset, report that localtime does not cache TZ,
1096 # since we can't invalidate the cache if we don't have tzset.
1097 guile_cv_localtime_cache=no
1098fi])dnl
1099AC_MSG_RESULT($guile_cv_localtime_cache)
1100if test $guile_cv_localtime_cache = yes; then
1101 AC_DEFINE([LOCALTIME_CACHE], 1, [Define if localtime caches the TZ setting.])
1102fi
1103
1104if test "$enable_regex" = yes; then
1105 if test "$ac_cv_header_regex_h" = yes ||
1106 test "$ac_cv_header_rxposix_h" = yes ||
1107 test "$ac_cv_header_rx_rxposix_h" = yes; then
1108 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [AC_LIBOBJ([regex-posix])],
1109 [AC_CHECK_LIB(rx, main)
1110 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [AC_LIBOBJ([regex-posix])],
1111 [AC_CHECK_LIB(regex, main)
1112 GUILE_NAMED_CHECK_FUNC(regcomp, regex, [AC_LIBOBJ([regex-posix])])])]
1113 )
1114 dnl The following should not be necessary, but for some reason
1115 dnl autoheader misses it if we don't include it!
1116 if test "$ac_cv_func_regcomp_norx" = yes ||
1117 test "$ac_cv_func_regcomp_regex" = yes ||
1118 test "$ac_cv_func_regcomp_rx" = yes; then
1119 AC_DEFINE([HAVE_REGCOMP], 1,
1120 [This is included as part of a workaround for a autoheader bug.])
1121 fi
1122 fi
1123fi
1124
1125AC_REPLACE_FUNCS([strerror memmove mkstemp])
1126
1127# Reasons for testing:
1128# asinh, acosh, atanh, trunc - C99 standard, generally not available on
1129# older systems
1130# sincos - GLIBC extension
1131#
1132AC_CHECK_FUNCS(asinh acosh atanh copysign finite sincos trunc)
1133
1134# C99 specifies isinf and isnan as macros.
1135# HP-UX provides only macros, no functions.
1136# glibc 2.3.2 provides both macros and functions.
1137# IRIX 6.5 and Solaris 8 only provide functions.
1138#
1139# The following tests detect isinf and isnan either as functions or as
1140# macros from <math.h>. Plain AC_CHECK_FUNCS is insufficient, it doesn't
1141# use <math.h> so doesn't detect on macro-only systems like HP-UX.
1142#
1143AC_MSG_CHECKING([for isinf])
1144AC_LINK_IFELSE(AC_LANG_SOURCE(
1145[[#include <math.h>
1146volatile double x = 0.0;
1147int main () { return (isinf(x) != 0); }]]),
1148 [AC_MSG_RESULT([yes])
1149 AC_DEFINE([HAVE_ISINF], 1,
1150 [Define to 1 if you have the `isinf' macro or function.])],
1151 [AC_MSG_RESULT([no])])
1152AC_MSG_CHECKING([for isnan])
1153AC_LINK_IFELSE(AC_LANG_SOURCE(
1154[[#include <math.h>
1155volatile double x = 0.0;
1156int main () { return (isnan(x) != 0); }]]),
1157 [AC_MSG_RESULT([yes])
1158 AC_DEFINE([HAVE_ISNAN], 1,
1159 [Define to 1 if you have the `isnan' macro or function.])],
1160 [AC_MSG_RESULT([no])])
1161
1162# Reasons for checking:
1163#
1164# st_rdev
1165# st_blksize
1166# st_blocks not in mingw
1167# tm_gmtoff BSD+GNU, not in C99
1168#
1169# Note AC_STRUCT_ST_BLOCKS is not used here because we don't want the
1170# AC_LIBOBJ(fileblocks) replacement which that macro gives.
1171#
1172AC_CHECK_MEMBERS([struct stat.st_rdev, struct stat.st_blksize, struct stat.st_blocks, struct stat.st_atim, struct stat.st_mtim, struct stat.st_ctim],,,
1173 [#define _GNU_SOURCE
1174AC_INCLUDES_DEFAULT
1175])
1176
1177AC_STRUCT_TIMEZONE
1178AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,
1179[#include <time.h>
1180#ifdef TIME_WITH_SYS_TIME
1181# include <sys/time.h>
1182# include <time.h>
1183#else
1184# if HAVE_SYS_TIME_H
1185# include <sys/time.h>
1186# else
1187# include <time.h>
1188# endif
1189#endif
1190])
1191GUILE_STRUCT_UTIMBUF
1192
1193
1194#--------------------------------------------------------------------
1195#
1196# What values do the iconv error handlers have?
1197#
1198# The only place that we need iconv in our public interfaces is for
1199# the error handlers, which are just ints. So we weaken our
1200# dependency by looking up those values at configure-time.
1201#--------------------------------------------------------------------
1202SCM_I_GSC_ICONVEH_ERROR=0
1203SCM_I_GSC_ICONVEH_QUESTION_MARK=1
1204SCM_I_GSC_ICONVEH_ESCAPE_SEQUENCE=2
1205AC_MSG_CHECKING([for iconveh_error])
1206AC_RUN_IFELSE([AC_LANG_SOURCE(
1207[AC_INCLUDES_DEFAULT
1208#include <uniconv.h>
1209int
1210main (int argc, char *argv[])
1211{
1212 if (argc > 1)
1213 printf ("%d\n", (int)iconveh_error);
1214 return 0;
1215}])],
1216 [SCM_I_GSC_ICONVEH_ERROR=`./conftest$EXEEXT pretty-please`
1217 AC_MSG_RESULT([$SCM_I_GSC_ICONVEH_ERROR])],
1218 [AC_MSG_FAILURE([failed to get iconveh_error])],
1219 [AC_MSG_WARN([assuming $SCM_I_GSC_ICONVEH_ERROR for cross-compilation])])
1220
1221AC_MSG_CHECKING([for iconveh_question_mark])
1222AC_RUN_IFELSE([AC_LANG_SOURCE(
1223[AC_INCLUDES_DEFAULT
1224#include <uniconv.h>
1225int
1226main (int argc, char *argv[])
1227{
1228 if (argc > 1)
1229 printf ("%d\n", (int)iconveh_question_mark);
1230 return 0;
1231}])],
1232 [SCM_I_GSC_ICONVEH_QUESTION_MARK=`./conftest$EXEEXT pretty-please`
1233 AC_MSG_RESULT([$SCM_I_GSC_ICONVEH_QUESTION_MARK])],
1234 [AC_MSG_FAILURE([failed to get iconveh_question_mark])],
1235 [AC_MSG_WARN([assuming $SCM_I_GSC_ICONVEH_QUESTION_MARK for cross-compilation])])
1236
1237AC_MSG_CHECKING([for iconveh_escape_sequence])
1238AC_RUN_IFELSE([AC_LANG_SOURCE(
1239[AC_INCLUDES_DEFAULT
1240#include <uniconv.h>
1241int
1242main (int argc, char *argv[])
1243{
1244 if (argc > 1)
1245 printf ("%d\n", (int)iconveh_escape_sequence);
1246 return 0;
1247}])],
1248 [SCM_I_GSC_ICONVEH_ESCAPE_SEQUENCE=`./conftest$EXEEXT pretty-please`
1249 AC_MSG_RESULT([$SCM_I_GSC_ICONVEH_ESCAPE_SEQUENCE])],
1250 [AC_MSG_FAILURE([failed to get iconveh_escape_sequence])],
1251 [AC_MSG_WARN([assuming $SCM_I_GSC_ICONVEH_ESCAPE_SEQUENCE for cross-compilation])])
1252
1253AC_SUBST([SCM_I_GSC_ICONVEH_ERROR])
1254AC_SUBST([SCM_I_GSC_ICONVEH_QUESTION_MARK])
1255AC_SUBST([SCM_I_GSC_ICONVEH_ESCAPE_SEQUENCE])
1256
1257
1258#--------------------------------------------------------------------
1259#
1260# Which way does the stack grow?
1261#
1262# Following code comes from Autoconf 2.61's internal _AC_LIBOBJ_ALLOCA
1263# macro (/usr/share/autoconf/autoconf/functions.m4). Gnulib has
1264# very similar code, so in future we could look at using that.
1265#
1266# An important detail is that the code involves find_stack_direction
1267# calling _itself_ - which means that find_stack_direction (or at
1268# least the second find_stack_direction() call) cannot be inlined.
1269# If the code could be inlined, that might cause the test to give
1270# an incorrect answer.
1271#--------------------------------------------------------------------
1272
1273SCM_I_GSC_STACK_GROWS_UP=0
1274AC_RUN_IFELSE([AC_LANG_SOURCE(
1275[AC_INCLUDES_DEFAULT
1276int
1277find_stack_direction ()
1278{
1279 static char *addr = 0;
1280 auto char dummy;
1281 if (addr == 0)
1282 {
1283 addr = &dummy;
1284 return find_stack_direction ();
1285 }
1286 else
1287 return (&dummy > addr) ? 1 : -1;
1288}
1289
1290int
1291main ()
1292{
1293 return find_stack_direction () < 0;
1294}])],
1295 [SCM_I_GSC_STACK_GROWS_UP=1],
1296 [],
1297 [AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h)])
1298
1299#--------------------------------------------------------------------
1300#
1301# Boehm's GC library
1302#
1303#--------------------------------------------------------------------
1304PKG_CHECK_MODULES([BDW_GC], [bdw-gc])
1305
1306save_LIBS="$LIBS"
1307LIBS="$BDW_GC_LIBS $LIBS"
1308CFLAGS="$BDW_GC_CFLAGS $CFLAGS"
1309
1310AC_CHECK_FUNCS([GC_do_blocking GC_call_with_gc_active GC_pthread_exit GC_pthread_cancel GC_allow_register_threads GC_pthread_sigmask GC_set_start_callback])
1311
1312# Though the `GC_do_blocking ()' symbol is present in GC 7.1, it is not
1313# declared, and has a different type (returning void instead of
1314# void*).
1315AC_CHECK_DECL([GC_do_blocking],
1316 [AC_DEFINE([HAVE_DECL_GC_DO_BLOCKING], [1],
1317 [Define this if the `GC_do_blocking ()' function is declared])],
1318 [],
1319 [#include <gc/gc.h>])
1320
1321# `GC_fn_type' is not available in GC 7.1 and earlier.
1322AC_CHECK_TYPE([GC_fn_type],
1323 [AC_DEFINE([HAVE_GC_FN_TYPE], [1],
1324 [Define this if the `GC_fn_type' type is available.])],
1325 [],
1326 [#include <gc/gc.h>])
1327
1328# `GC_stack_base' is not available in GC 7.1 and earlier.
1329AC_CHECK_TYPE([struct GC_stack_base],
1330 [AC_DEFINE([HAVE_GC_STACK_BASE], [1],
1331 [Define this if the `GC_stack_base' type is available.])],
1332 [],
1333 [#include <gc/gc.h>])
1334
1335LIBS="$save_LIBS"
1336
1337
1338AC_CHECK_SIZEOF(float)
1339if test "$ac_cv_sizeof_float" -le "$ac_cv_sizeof_long"; then
1340 AC_DEFINE([SCM_SINGLES], 1,
1341 [Define this if floats are the same size as longs.])
1342fi
1343
1344AC_MSG_CHECKING(for struct linger)
1345AC_CACHE_VAL(scm_cv_struct_linger,
1346 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1347#include <sys/types.h>
1348#include <sys/socket.h>]],
1349 [[struct linger lgr; lgr.l_linger = 100]])],
1350 [scm_cv_struct_linger="yes"],
1351 [scm_cv_struct_linger="no"]))
1352AC_MSG_RESULT($scm_cv_struct_linger)
1353if test $scm_cv_struct_linger = yes; then
1354 AC_DEFINE([HAVE_STRUCT_LINGER], 1,
1355 [Define this if your system defines struct linger, for use with the
1356 getsockopt and setsockopt system calls.])
1357fi
1358
1359
1360# On mingw, struct timespec is in <pthread.h>.
1361#
1362AC_MSG_CHECKING(for struct timespec)
1363AC_CACHE_VAL(scm_cv_struct_timespec,
1364 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1365#include <time.h>
1366#if HAVE_PTHREAD_H
1367#include <pthread.h>
1368#endif]], [[struct timespec t; t.tv_nsec = 100]])],
1369 [scm_cv_struct_timespec="yes"],
1370 [scm_cv_struct_timespec="no"]))
1371AC_MSG_RESULT($scm_cv_struct_timespec)
1372if test $scm_cv_struct_timespec = yes; then
1373 AC_DEFINE([HAVE_STRUCT_TIMESPEC], 1,
1374 [Define this if your system defines struct timespec via either <time.h> or <pthread.h>.])
1375fi
1376
1377#--------------------------------------------------------------------
1378#
1379# Flags for thread support
1380#
1381#--------------------------------------------------------------------
1382
1383SCM_I_GSC_USE_PTHREAD_THREADS=0
1384SCM_I_GSC_USE_NULL_THREADS=0
1385AC_SUBST([SCM_I_GSC_USE_PTHREAD_THREADS])
1386AC_SUBST([SCM_I_GSC_USE_NULL_THREADS])
1387
1388### What thread package has the user asked for?
1389AC_ARG_WITH(threads, [ --with-threads thread interface],
1390 , with_threads=yes)
1391
1392AC_SUBST(SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT, 0)
1393AC_SUBST(SCM_I_GSC_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER, 0)
1394
1395case "$with_threads" in
1396 "yes" | "pthread" | "pthreads" | "pthread-threads" | "")
1397
1398 build_pthread_support="yes"
1399
1400 ACX_PTHREAD([CC="$PTHREAD_CC"
1401 LIBS="$PTHREAD_LIBS $LIBS"
1402 SCM_I_GSC_USE_PTHREAD_THREADS=1
1403 with_threads="pthreads"],
1404 [with_threads="null"
1405 build_pthread_support="no"])
1406
1407 old_CFLAGS="$CFLAGS"
1408 CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
1409
1410 # Reasons for testing:
1411 # pthread_getattr_np - "np" meaning "non portable" says it
1412 # all; not present on MacOS X or Solaris 10
1413 # pthread_get_stackaddr_np - "np" meaning "non portable" says it
1414 # all; specific to MacOS X
1415 # pthread_sigmask - not available on mingw
1416 #
1417 AC_CHECK_FUNCS(pthread_attr_getstack pthread_getattr_np pthread_get_stackaddr_np pthread_sigmask)
1418
1419 # On past versions of Solaris, believe 8 through 10 at least, you
1420 # had to write "pthread_once_t foo = { PTHREAD_ONCE_INIT };".
1421 # This is contrary to POSIX:
1422 # http://www.opengroup.org/onlinepubs/000095399/functions/pthread_once.html
1423 # Check here if this style is required.
1424 #
1425 # glibc (2.3.6 at least) works both with or without braces, so the
1426 # test checks whether it works without.
1427 #
1428
1429 if test "$GCC" = "yes"; then
1430 # Since GCC only issues a warning for missing braces, so we need
1431 # `-Werror' to catch it.
1432 CFLAGS="-Werror -Wmissing-braces $CFLAGS"
1433 fi
1434
1435 AC_CACHE_CHECK([whether PTHREAD_ONCE_INIT needs braces],
1436 guile_cv_need_braces_on_pthread_once_init,
1437 [AC_COMPILE_IFELSE([#include <pthread.h>
1438 pthread_once_t foo = PTHREAD_ONCE_INIT;],
1439 [guile_cv_need_braces_on_pthread_once_init=no],
1440 [guile_cv_need_braces_on_pthread_once_init=yes])])
1441 if test "$guile_cv_need_braces_on_pthread_once_init" = yes; then
1442 SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT=1
1443 fi
1444
1445 # Same problem with `PTHREAD_MUTEX_INITIALIZER', e.g., on IRIX
1446 # 6.5.30m with GCC 3.3.
1447 AC_CACHE_CHECK([whether PTHREAD_MUTEX_INITIALIZER needs braces],
1448 guile_cv_need_braces_on_pthread_mutex_initializer,
1449 [AC_COMPILE_IFELSE([#include <pthread.h>
1450 pthread_mutex_t foo = PTHREAD_MUTEX_INITIALIZER;],
1451 [guile_cv_need_braces_on_pthread_mutex_initializer=no],
1452 [guile_cv_need_braces_on_pthread_mutex_initializer=yes])])
1453 if test "$guile_cv_need_braces_on_pthread_mutex_initializer" = yes; then
1454 SCM_I_GSC_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER=1
1455 fi
1456
1457 CFLAGS="$old_CFLAGS"
1458
1459 # On Solaris, sched_yield lives in -lrt.
1460 AC_SEARCH_LIBS(sched_yield, rt)
1461
1462 ;;
1463esac
1464
1465case "$with_threads" in
1466 "pthreads")
1467 ;;
1468 "no" | "null")
1469 SCM_I_GSC_USE_NULL_THREADS=1
1470 SCM_I_GSC_HAVE_THREAD_STORAGE_CLASS=0
1471 with_threads="null-threads"
1472 ;;
1473 * )
1474 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
1475 ;;
1476esac
1477
1478AC_MSG_CHECKING(what kind of threads to support)
1479AC_MSG_RESULT($with_threads)
1480
1481AM_CONDITIONAL([BUILD_PTHREAD_SUPPORT],
1482 [test "x$build_pthread_support" = "xyes"])
1483
1484
1485## Check whether pthread_attr_getstack works for the main thread
1486
1487if test "$with_threads" = pthreads; then
1488
1489AC_MSG_CHECKING([whether pthread_attr_getstack works for the main thread])
1490old_CFLAGS="$CFLAGS"
1491CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
1492if test "$cross_compiling" = "no"; then
1493 AC_RUN_IFELSE([AC_LANG_SOURCE([[
1494 #if HAVE_PTHREAD_ATTR_GETSTACK
1495 #include <pthread.h>
1496
1497 int main ()
1498 {
1499 pthread_attr_t attr;
1500 void *start, *end;
1501 size_t size;
1502
1503 pthread_getattr_np (pthread_self (), &attr);
1504 pthread_attr_getstack (&attr, &start, &size);
1505 end = (char *)start + size;
1506
1507 if ((void *)&attr < start || (void *)&attr >= end)
1508 return 1;
1509 else
1510 return 0;
1511 }
1512 #else
1513 int main ()
1514 {
1515 return 1;
1516 }
1517 #endif
1518 ]])],
1519 [works=yes
1520 AC_DEFINE([PTHREAD_ATTR_GETSTACK_WORKS], [1], [Define when pthread_att_get_stack works for the main thread])],
1521 [works=no],
1522 [])
1523else
1524 works="assuming it doesn't"
1525fi
1526CFLAGS="$old_CFLAGS"
1527AC_MSG_RESULT($works)
1528
1529GUILE_THREAD_LOCAL_STORAGE
1530
1531fi # with_threads=pthreads
1532
1533
1534## Cross building
1535if test "$cross_compiling" = "yes"; then
1536 AC_MSG_CHECKING(cc for build)
1537 ## /usr/bin/cc still uses wrong assembler
1538 ## CC_FOR_BUILD="${CC_FOR_BUILD-/usr/bincc}"
1539 CC_FOR_BUILD="${CC_FOR_BUILD-PATH=/usr/bin:$PATH cc}"
1540else
1541 CC_FOR_BUILD="${CC_FOR_BUILD-$CC}"
1542fi
1543
1544## AC_MSG_CHECKING("if we are cross compiling")
1545## AC_MSG_RESULT($cross_compiling)
1546if test "$cross_compiling" = "yes"; then
1547 AC_MSG_RESULT($CC_FOR_BUILD)
1548fi
1549
1550## No need as yet to be more elaborate
1551CCLD_FOR_BUILD="$CC_FOR_BUILD"
1552
1553AC_SUBST(cross_compiling)
1554AC_ARG_VAR(CC_FOR_BUILD,[build system C compiler])
1555AC_SUBST(CCLD_FOR_BUILD)
1556
1557## libtool erroneously calls CC_FOR_BUILD HOST_CC;
1558## --HOST is the platform that PACKAGE is compiled for.
1559HOST_CC="$CC_FOR_BUILD"
1560AC_SUBST(HOST_CC)
1561
1562if test "$cross_compiling" = "yes"; then
1563 AC_MSG_CHECKING(guile for build)
1564 GUILE_FOR_BUILD="${GUILE_FOR_BUILD-guile}"
1565else
1566 GUILE_FOR_BUILD='this-value-will-never-be-used'
1567fi
1568
1569## AC_MSG_CHECKING("if we are cross compiling")
1570## AC_MSG_RESULT($cross_compiling)
1571if test "$cross_compiling" = "yes"; then
1572 AC_MSG_RESULT($GUILE_FOR_BUILD)
1573fi
1574AC_ARG_VAR(GUILE_FOR_BUILD,[guile for build system])
1575AM_SUBST_NOTMAKE(GUILE_FOR_BUILD)
1576
1577## If we're using GCC, ask for aggressive warnings.
1578GCC_CFLAGS=""
1579case "$GCC" in
1580 yes )
1581 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
1582 ## much stuff with generic function pointers for that to really be
1583 ## less than exasperating.
1584 ## -Wpointer-arith was here too, but something changed in gcc/glibc
1585 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
1586 ## -Wundef was removed because Gnulib prevented it (see
1587 ## <http://thread.gmane.org/gmane.lisp.guile.bugs/5329>.)
1588 POTENTIAL_GCC_CFLAGS="-Wall -Wmissing-prototypes \
1589 -Wdeclaration-after-statement \
1590 -Wswitch-enum"
1591 # Do this here so we don't screw up any of the tests above that might
1592 # not be "warning free"
1593 if test "${GUILE_ERROR_ON_WARNING}" = yes
1594 then
1595 POTENTIAL_GCC_CFLAGS="${POTENTIAL_GCC_CFLAGS} -Werror"
1596 enable_compile_warnings=no
1597 fi
1598
1599 for flag in $POTENTIAL_GCC_CFLAGS
1600 do
1601 gl_WARN_ADD([$flag], [GCC_CFLAGS])
1602 done
1603 ;;
1604esac
1605
1606AC_SUBST(GCC_CFLAGS)
1607
1608# Check for GNU ld's "-z relro".
1609GUILE_GNU_LD_RELRO
1610
1611
1612## If we're creating a shared library (using libtool!), then we'll
1613## need to generate a list of .lo files corresponding to the .o files
1614## given in LIBOBJS. We'll call it LIBLOBJS.
1615LIBLOBJS="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`"
1616
1617## We also need to create corresponding .doc and .x files
1618EXTRA_DOT_DOC_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.doc ,g;s,\.[[^.]]*$,.doc,'`"
1619EXTRA_DOT_X_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.x ,g;s,\.[[^.]]*$,.x,'`"
1620
1621# GNU Readline bindings.
1622GUILE_READLINE
1623
1624AC_SUBST(GUILE_MAJOR_VERSION)
1625AC_SUBST(GUILE_MINOR_VERSION)
1626AC_SUBST(GUILE_MICRO_VERSION)
1627AC_SUBST(GUILE_EFFECTIVE_VERSION)
1628AC_SUBST(GUILE_VERSION)
1629
1630#######################################################################
1631# library versioning
1632
1633AC_SUBST(LIBGUILE_INTERFACE_CURRENT)
1634AC_SUBST(LIBGUILE_INTERFACE_REVISION)
1635AC_SUBST(LIBGUILE_INTERFACE_AGE)
1636AC_SUBST(LIBGUILE_INTERFACE)
1637
1638AC_SUBST(LIBGUILE_I18N_MAJOR)
1639AC_SUBST(LIBGUILE_I18N_INTERFACE_CURRENT)
1640AC_SUBST(LIBGUILE_I18N_INTERFACE_REVISION)
1641AC_SUBST(LIBGUILE_I18N_INTERFACE_AGE)
1642AC_SUBST(LIBGUILE_I18N_INTERFACE)
1643
1644
1645#######################################################################
1646
1647dnl Tell guile-config what flags guile users should compile and link
1648dnl with, keeping only `-I' flags from $CPPFLAGS.
1649GUILE_CFLAGS=""
1650next_is_includedir=false
1651for flag in $CPPFLAGS
1652do
1653 if $next_is_includedir; then
1654 GUILE_CFLAGS="$GUILE_CFLAGS -I $flag"
1655 next_is_includedir=false
1656 else
1657 case "$flag" in
1658 -I) next_is_includedir=true;;
1659 -I*) GUILE_CFLAGS="$GUILE_CFLAGS $flag";;
1660 *) ;;
1661 esac
1662 fi
1663done
1664
1665GUILE_CFLAGS="$GUILE_CFLAGS $PTHREAD_CFLAGS"
1666GUILE_LIBS="$LDFLAGS $LIBS"
1667
1668AC_SUBST(GUILE_LIBS)
1669AC_SUBST(GUILE_CFLAGS)
1670
1671AC_SUBST(AWK)
1672AC_SUBST(LIBLOBJS)
1673AC_SUBST(EXTRA_DOT_DOC_FILES)
1674AC_SUBST(EXTRA_DOT_X_FILES)
1675
1676dnl See also top_builddir in info node: (libtool)AC_PROG_LIBTOOL
1677top_builddir_absolute=`pwd`
1678AC_SUBST(top_builddir_absolute)
1679top_srcdir_absolute=`(cd $srcdir && pwd)`
1680AC_SUBST(top_srcdir_absolute)
1681
1682dnl `sitedir' goes into libpath.h and the pkg-config file.
1683pkgdatadir="$datadir/$PACKAGE_TARNAME"
1684sitedir="$pkgdatadir/site/$GUILE_EFFECTIVE_VERSION"
1685AC_SUBST([sitedir])
1686
1687# Additional SCM_I_GSC definitions are above.
1688AC_SUBST([SCM_I_GSC_GUILE_DEBUG])
1689AC_SUBST([SCM_I_GSC_ENABLE_DEPRECATED])
1690AC_SUBST([SCM_I_GSC_STACK_GROWS_UP])
1691AC_SUBST([SCM_I_GSC_C_INLINE])
1692AC_CONFIG_FILES([libguile/gen-scmconfig.h])
1693
1694AC_CONFIG_FILES([
1695 Makefile
1696 am/Makefile
1697 lib/Makefile
1698 benchmark-suite/Makefile
1699 gc-benchmarks/Makefile
1700 doc/Makefile
1701 doc/r5rs/Makefile
1702 doc/ref/Makefile
1703 emacs/Makefile
1704 examples/Makefile
1705 libguile/Makefile
1706 libguile/version.h
1707 guile-readline/Makefile
1708 test-suite/Makefile
1709 test-suite/standalone/Makefile
1710 test-suite/vm/Makefile
1711 meta/Makefile
1712 module/Makefile
1713])
1714
1715AC_CONFIG_FILES([meta/guile-2.0.pc])
1716AC_CONFIG_FILES([meta/guile-2.0-uninstalled.pc])
1717AC_CONFIG_FILES([doc/ref/effective-version.texi])
1718
1719GUILE_CONFIG_SCRIPT([check-guile])
1720GUILE_CONFIG_SCRIPT([benchmark-guile])
1721GUILE_CONFIG_SCRIPT([meta/guile])
1722GUILE_CONFIG_SCRIPT([meta/uninstalled-env])
1723GUILE_CONFIG_SCRIPT([meta/gdb-uninstalled-guile])
1724GUILE_CONFIG_SCRIPT([meta/guile-tools])
1725GUILE_CONFIG_SCRIPT([libguile/guile-snarf])
1726GUILE_CONFIG_SCRIPT([libguile/guile-snarf-docs])
1727GUILE_CONFIG_SCRIPT([test-suite/standalone/test-use-srfi])
1728GUILE_CONFIG_SCRIPT([test-suite/standalone/test-fast-slot-ref])
1729
1730AC_OUTPUT
1731
1732dnl Local Variables:
1733dnl comment-start: "dnl "
1734dnl comment-end: ""
1735dnl comment-start-skip: "\\bdnl\\b\\s *"
1736dnl End: