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