*** empty log message ***
[bpt/guile.git] / configure.in
CommitLineData
777b022a
JB
1dnl configuration script for Guile
2dnl Process this file with autoconf to produce configure.
50848747 3dnl
c0b2936e 4dnl Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
50848747
JB
5dnl
6dnl This file is part of GUILE
7dnl
8dnl GUILE is free software; you can redistribute it and/or modify it
9dnl under the terms of the GNU General Public License as published by
10dnl the Free Software Foundation; either version 2, or (at your
11dnl option) any later version.
12dnl
13dnl GUILE is distributed in the hope that it will be useful, but
14dnl WITHOUT ANY WARRANTY; without even the implied warranty of
15dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16dnl General Public License for more details.
17dnl
18dnl You should have received a copy of the GNU General Public License
19dnl along with GUILE; see the file COPYING. If not, write to the
20dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21dnl Boston, MA 02111-1307, USA.
22
237b3247
RB
23AC_PREREQ(2.50)
24
25AC_INIT
26AC_CONFIG_SRCDIR([Makefile.in])
2d26def0 27. $srcdir/GUILE-VERSION
3a629497 28AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
15ae1bee 29AM_MAINTAINER_MODE
3a629497 30AM_CONFIG_HEADER(libguile/scmconfig.h)
2d26def0 31
3a629497 32#--------------------------------------------------------------------
0e8a8468
MV
33#
34# Independent Subdirectories
35#
36#--------------------------------------------------------------------
37
38AC_CONFIG_SUBDIRS(guile-readline)
39
40#--------------------------------------------------------------------
3a629497
JB
41#
42# User options
43#
44#--------------------------------------------------------------------
86789f9b 45
8afd1a2a
RB
46AC_ARG_ENABLE(error-on-warning,
47 [ --enable-error-on-warning treat compile warnings as errors],
48 [case "${enableval}" in
49 yes | y) CFLAGS="${CFLAGS} -Werror"; enable_compile_warnings=no ;;
50 no | n) ;;
51 *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
52 esac])
53
52b3923a 54AC_ARG_ENABLE(debug-freelist,
e73dd549 55 [ --enable-debug-freelist include garbage collector freelist debugging code],
52b3923a 56 if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
fca7547b 57 AC_DEFINE(GUILE_DEBUG_FREELIST)
52b3923a
GB
58 fi)
59
cf890744 60AC_ARG_ENABLE(debug-malloc,
e73dd549 61 [ --enable-debug-malloc include malloc debugging code],
cf890744
MD
62 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
63 AC_DEFINE(GUILE_DEBUG_MALLOC)
64 fi)
65
62002dcb
MD
66AC_ARG_ENABLE(guile-debug,
67 [ --enable-guile-debug include internal debugging functions],
68 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
69 AC_DEFINE(GUILE_DEBUG)
70 fi)
71
afe5177e
GH
72AC_ARG_ENABLE(arrays,
73 [ --disable-arrays omit array and uniform array support],,
74 enable_arrays=yes)
75
52cfc69b
GH
76AC_ARG_ENABLE(posix,
77 [ --disable-posix omit posix interfaces],,
78 enable_posix=yes)
79
80AC_ARG_ENABLE(networking,
dc914156 81 [ --disable-networking omit networking interfaces],,
52cfc69b
GH
82 enable_networking=yes)
83
84AC_ARG_ENABLE(regex,
85 [ --disable-regex omit regular expression interfaces],,
86 enable_regex=yes)
87
fff043ab
NJ
88AC_ARG_ENABLE(htmldoc,
89 [ --enable-htmldoc build HTML documentation as well as Info],
90 [if test "$enable_htmldoc" = "" || test "$enable_htmldoc" = y || test "$enable_htmldoc" = yes; then
91 htmldoc_enabled=yes
92 AC_PATH_PROG(TEXI2HTML, texi2html, not found)
93 if test "$TEXI2HTML" = "not found"; then
94 echo
95 echo Building HTML documentation requires the \`texi2html\' program,
96 echo which appears not to be present on your machine.
97 echo
98 echo \`texi2html\' is available from
99 echo 'http://www.mathematik.uni-kl.de/~obachman/Texi2html/.'
100 echo
101 echo In the meantime, to build the guile-doc distribution
102 echo without HTML enabled, please rerun \`./configure\' without
103 echo the \`--enable-htmldoc\' option.
104 exit -1
105 fi
106 fi])
107
108AM_CONDITIONAL(HTMLDOC, test x$htmldoc_enabled = xyes)
109
e73dd549
MV
110AC_ARG_ENABLE(deprecated,
111 [ --disable-deprecated omit deprecated features [no]])
112
113if test "$enable_deprecated" = no; then
8c494e99 114 AC_DEFINE(SCM_ENABLE_DEPRECATED, 0)
e73dd549
MV
115else
116 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
94a0d885
MV
117 warn_default=summary
118 elif test "$enable_deprecated" = shutup; then
119 warn_default=no
120 else
121 warn_default=$enable_deprecated
e73dd549 122 fi
8c494e99 123 AC_DEFINE(SCM_ENABLE_DEPRECATED, 1)
887dfa7d 124 AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default")
e73dd549
MV
125fi
126
c176b92b
JB
127dnl The --disable-debug used to control these two. But now they are
128dnl a required part of the distribution.
129AC_DEFINE(DEBUG_EXTENSIONS)
130AC_DEFINE(READER_EXTENSIONS)
131
52cfc69b
GH
132dnl files which are destined for separate modules.
133
afe5177e
GH
134if test "$enable_arrays" = yes; then
135 LIBOBJS="$LIBOBJS ramap.o unif.o"
136 AC_DEFINE(HAVE_ARRAYS)
137fi
138
52cfc69b
GH
139if test "$enable_posix" = yes; then
140 LIBOBJS="$LIBOBJS filesys.o posix.o"
141 AC_DEFINE(HAVE_POSIX)
142fi
143
144if test "$enable_networking" = yes; then
145 LIBOBJS="$LIBOBJS net_db.o socket.o"
146 AC_DEFINE(HAVE_NETWORKING)
147fi
148
cf890744
MD
149if test "$enable_debug_malloc" = yes; then
150 LIBOBJS="$LIBOBJS debug-malloc.o"
151fi
152
3a629497
JB
153#--------------------------------------------------------------------
154
f9e5e096
MV
155dnl Some more checks for Win32
156AC_CYGWIN
157AC_MINGW32
158AC_LIBTOOL_WIN32_DLL
159
b7f27d64
MV
160AC_LIBLTDL_CONVENIENCE
161AC_CONFIG_SUBDIRS(libltdl)
162
f9e5e096 163AC_PROG_INSTALL
3a629497
JB
164AC_PROG_CC
165AC_PROG_CPP
b7f27d64 166AC_LIBTOOL_DLOPEN
3a629497
JB
167
168AC_AIX
169AC_ISC_POSIX
170AC_MINIX
171
e40ffcb6 172AM_PROG_CC_STDC
9da7f717 173AM_PROG_LIBTOOL
e40ffcb6 174
3a629497 175AC_C_CONST
5e9345c3 176AC_C_INLINE
5b079b46
GH
177AC_C_BIGENDIAN
178
9dec9737
MD
179AC_CHECK_SIZEOF(int)
180AC_CHECK_SIZEOF(long)
1be6b49c 181
480cd4aa
MV
182dnl Check for integral types that can represent the range of pointers.
183dnl If these types don't exist on this platform, they are replaced by
184dnl "unsigned long" and "long", respectively.
185
186AC_CHECK_HEADERS(stdint.h)
f4d1173b 187AC_CHECK_HEADERS(inttypes.h)
480cd4aa 188AC_CHECK_TYPES([uintptr_t, ptrdiff_t])
1be6b49c 189
9dec9737
MD
190AC_CACHE_CHECK([for long longs], scm_cv_long_longs,
191 AC_TRY_COMPILE(,
192 [long long a],
193 scm_cv_long_longs=yes,
194 scm_cv_long_longs=no))
195if test "$scm_cv_long_longs" = yes; then
196 AC_DEFINE(HAVE_LONG_LONGS)
1be6b49c
ML
197 AC_CHECK_SIZEOF(long long)
198fi
199
200AC_CHECK_SIZEOF(void *)
201
f3f70257
ML
202if test "$ac_cv_sizeof_long" -ne "$ac_cv_sizeof_void_p"; then
203 AC_MSG_ERROR(sizes of long and void* are not identical)
9dec9737 204fi
3a629497
JB
205
206AC_HEADER_STDC
207AC_HEADER_DIRENT
208AC_HEADER_TIME
209AC_HEADER_SYS_WAIT
f9e5e096 210AC_CHECK_HEADERS(io.h libc.h limits.h malloc.h memory.h string.h regex.h rxposix.h rx/rxposix.h sys/ioctl.h sys/select.h sys/time.h sys/timeb.h sys/times.h sys/stdtypes.h sys/types.h sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h direct.h)
3a629497
JB
211GUILE_HEADER_LIBC_WITH_UNISTD
212
213AC_TYPE_GETGROUPS
214AC_TYPE_SIGNAL
215AC_TYPE_MODE_T
216
5852c051 217AC_CHECK_LIB(m, main)
4c787b52 218AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
219if test $ac_cv_func_gethostbyname = no; then
220 AC_CHECK_LIB(nsl, gethostbyname)
221fi
4c787b52 222AC_CHECK_FUNCS(connect)
5852c051
JB
223if test $ac_cv_func_connect = no; then
224 AC_CHECK_LIB(socket, connect)
225fi
5ee74cec 226
f9e5e096
MV
227dnl
228dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
229dnl
230EXTRA_DEFS=""
f9e5e096
MV
231if test "$MINGW32" = "yes" ; then
232 AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
233 [Define if you have the <winsock2.h> header file.])])
234 AC_CHECK_LIB(ws2_32, main)
8f99e3f3 235 LIBOBJS="$LIBOBJS win32-uname.o win32-dirent.o"
f9e5e096 236 if test $enable_shared = yes ; then
8f99e3f3
SJ
237 EXTRA_DEFS="-DSCM_IMPORT"
238 AC_DEFINE(USE_DLL_IMPORT, 1,
239 [Define if you need additional CPP macros on Win32 platforms.])
f9e5e096
MV
240 fi
241fi
242AC_SUBST(EXTRA_DEFS)
f9e5e096
MV
243
244dnl Check for dynamic linking
5852c051 245
b7f27d64
MV
246use_modules=yes
247AC_ARG_WITH(modules,
248[ --with-modules[=FILES] Add support for dynamic modules],
249use_modules="$withval")
250test -z "$use_modules" && use_modules=yes
251DLPREOPEN=
252if test "$use_modules" != no; then
a4995389 253 AC_DEFINE(DYNAMIC_LINKING)
b7f27d64
MV
254 if test "$use_modules" = yes; then
255 DLPREOPEN="-dlpreopen force"
256 else
257 DLPREOPEN="-export-dynamic"
258 for module in $use_modules; do
259 DLPREOPEN="$DLPREOPEN -dlopen $module"
260 done
261 fi
a4995389 262fi
b7f27d64
MV
263AC_SUBST(INCLTDL)
264AC_SUBST(LIBLTDL)
265AC_SUBST(DLPREOPEN)
5852c051 266
8afd1a2a 267AC_CHECK_FUNCS(ctermid ftime fchown getcwd geteuid gettimeofday lstat mkdir mknod nice readlink rename rmdir select setegid seteuid setlocale setpgid setsid sigaction siginterrupt strftime strptime symlink sync tcgetpgrp tcsetpgrp times uname waitpid strdup system usleep atexit on_exit chown link fcntl ttyname getpwent getgrent kill getppid getpgrp fork setitimer getitimer)
64e121dc 268
94e6d793
MG
269AC_CHECK_HEADERS(crypt.h sys/resource.h sys/file.h)
270AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
271AC_CHECK_LIB(crypt, crypt)
272
777b022a
JB
273### Some systems don't declare some functions. On such systems, we
274### need to at least provide our own K&R-style declarations.
275
276### GUILE_FUNC_DECLARED(function, headerfile)
277
278### Check for a declaration of FUNCTION in HEADERFILE; if it is
279### not there, #define MISSING_FUNCTION_DECL.
280AC_DEFUN(GUILE_FUNC_DECLARED, [
fc342a63 281 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 282 AC_EGREP_HEADER($1, $2,
01e5e07e 283 guile_cv_func_$1_declared=yes,
fc342a63
JB
284 guile_cv_func_$1_declared=no))
285 if test [x$guile_cv_func_]$1[_declared] = xno; then
777b022a
JB
286 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])
287 fi
288])
289
290GUILE_FUNC_DECLARED(strptime, time.h)
c31bfb85 291GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 292GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 293
da753252
JB
294### On some systems usleep has no return value. If it does have one,
295### we'd like to return it; otherwise, we'll fake it.
fc342a63 296AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
c43f86c1 297 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
4874dfc8 298 unistd.h,
fc342a63
JB
299 [guile_cv_func_usleep_return_type=void],
300 [guile_cv_func_usleep_return_type=int])])
301case "$guile_cv_func_usleep_return_type" in
302 "void" )
303 AC_DEFINE(USLEEP_RETURNS_VOID)
304 ;;
305esac
306
da88f0cb
JB
307AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
308if test -n "$have_sys_un_h" ; then
309AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)
310fi
311
312AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
313
219a5a5b
JB
314AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
315 setnetent getnetent endnetent dnl
316 setprotoent getprotoent endprotoent dnl
317 setservent getservent endservent dnl
5c11cc9d 318 getnetbyaddr getnetbyname dnl
2a0ef8b7
GH
319 inet_lnaof inet_makeaddr inet_netof hstrerror dnl
320 inet_pton inet_ntop)
da88f0cb 321
08f980a4
GH
322dnl Some systems do not declare this. Some systems do declare it, as a
323dnl macro. With cygwin it may be in a DLL.
324
325AC_MSG_CHECKING(whether netdb.h declares h_errno)
326AC_CACHE_VAL(guile_cv_have_h_errno,
327[AC_TRY_COMPILE([#include <netdb.h>],
328[int a = h_errno;],
329guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])
330AC_MSG_RESULT($guile_cv_have_h_errno)
331if test $guile_cv_have_h_errno = yes; then
332 AC_DEFINE(HAVE_H_ERRNO)
333fi
da88f0cb 334
4f522b6f 335AC_MSG_CHECKING(whether uint32_t is defined)
c5316ea3 336AC_CACHE_VAL(guile_cv_have_uint32_t,
4f522b6f
GH
337 [AC_TRY_COMPILE([#include <sys/types.h>
338 #include <netdb.h>],
339 [uint32_t a;],
340 guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
c5316ea3
GH
341AC_MSG_RESULT($guile_cv_have_uint32_t)
342if test $guile_cv_have_uint32_t = yes; then
343 AC_DEFINE(HAVE_UINT32_T)
344fi
345
018a53a1
GH
346AC_MSG_CHECKING(for working IPv6 support)
347AC_CACHE_VAL(guile_cv_have_ipv6,
b6f04d92
GH
348[AC_TRY_COMPILE([#include <netinet/in.h>
349#include <sys/socket.h>],
018a53a1
GH
350[struct sockaddr_in6 a; a.sin6_family = AF_INET6;],
351guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])
352AC_MSG_RESULT($guile_cv_have_ipv6)
353if test $guile_cv_have_ipv6 = yes; then
354 AC_DEFINE(HAVE_IPV6)
355fi
356
67641981
GH
357# included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
358AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
359AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
360[AC_TRY_COMPILE([#include <netinet/in.h>],
361[struct sockaddr_in6 sok; sok.sin6_scope_id = 0;],
362guile_cv_have_sin6_scope_id=yes, guile_cv_have_sin6_scope_id=no)])
363AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
364if test $guile_cv_have_sin6_scope_id = yes; then
365 AC_DEFINE(HAVE_SIN6_SCOPE_ID)
366fi
367
38c1d3c4
GH
368AC_MSG_CHECKING(whether localtime caches TZ)
369AC_CACHE_VAL(guile_cv_localtime_cache,
370[if test x$ac_cv_func_tzset = xyes; then
371AC_TRY_RUN([#include <time.h>
372#if STDC_HEADERS
373# include <stdlib.h>
374#endif
375extern char **environ;
376unset_TZ ()
377{
378 char **from, **to;
379 for (to = from = environ; (*to = *from); from++)
380 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
381 to++;
382}
383char TZ_GMT0[] = "TZ=GMT0";
384char TZ_PST8[] = "TZ=PST8";
385main()
386{
387 time_t now = time ((time_t *) 0);
388 int hour_GMT0, hour_unset;
389 if (putenv (TZ_GMT0) != 0)
390 exit (1);
391 hour_GMT0 = localtime (&now)->tm_hour;
392 unset_TZ ();
393 hour_unset = localtime (&now)->tm_hour;
394 if (putenv (TZ_PST8) != 0)
395 exit (1);
396 if (localtime (&now)->tm_hour == hour_GMT0)
397 exit (1);
398 unset_TZ ();
399 if (localtime (&now)->tm_hour != hour_unset)
400 exit (1);
401 exit (0);
402}], guile_cv_localtime_cache=no, guile_cv_localtime_cache=yes,
403[# If we have tzset, assume the worst when cross-compiling.
404guile_cv_localtime_cache=yes])
405else
406 # If we lack tzset, report that localtime does not cache TZ,
407 # since we can't invalidate the cache if we don't have tzset.
408 guile_cv_localtime_cache=no
409fi])dnl
410AC_MSG_RESULT($guile_cv_localtime_cache)
411if test $guile_cv_localtime_cache = yes; then
412 AC_DEFINE(LOCALTIME_CACHE)
413fi
414
7ee92fce
GH
415dnl Test whether system calls are restartable by default on the
416dnl current system. If they are not, we put a loop around every system
417dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
418dnl change from the default behaviour. On the other hand, if signals
419dnl are restartable then the loop is not installed and when libguile
420dnl initialises it also resets the behaviour of each signal to cause a
421dnl restart (in case a different runtime had a different default
422dnl behaviour for some reason: e.g., different versions of linux seem
423dnl to behave differently.)
424
08b8c694 425AC_SYS_RESTARTABLE_SYSCALLS
e1a191a8 426
52cfc69b
GH
427if test "$enable_regex" = yes; then
428 if test "$ac_cv_header_regex_h" = yes ||
429 test "$ac_cv_header_rxposix_h" = yes ||
430 test "$ac_cv_header_rx_rxposix_h" = yes; then
431 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],
432 [AC_CHECK_LIB(rx, main)
f9e5e096
MV
433 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"],
434 [AC_CHECK_LIB(regex, main)
435 GUILE_NAMED_CHECK_FUNC(regcomp, regex, [LIBOBJS="regex-posix.o $LIBOBJS"])])]
52cfc69b
GH
436 )
437 dnl The following should not be necessary, but for some reason
438 dnl autoheader misses it if we don't include it!
439 if test "$ac_cv_func_regcomp_norx" = yes ||
f9e5e096 440 test "$ac_cv_func_regcomp_regex" = yes ||
52cfc69b
GH
441 test "$ac_cv_func_regcomp_rx" = yes; then
442 AC_DEFINE(HAVE_REGCOMP)
443 fi
444 fi
da88f0cb 445fi
8e1bfcd0 446
5bbfbd1e 447AC_REPLACE_FUNCS(inet_aton putenv strerror memmove mkstemp)
3a629497 448
4a5fa91c
TP
449# When testing for the presence of alloca, we need to add alloca.o
450# explicitly to LIBOBJS to make sure that it is translated to
451# `alloca.lo' for libtool later on. This can and should be done more cleanly.
3a629497 452AC_FUNC_ALLOCA
4a5fa91c 453if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
3a629497 454
237b3247
RB
455AC_CHECK_MEMBERS([struct stat.st_rdev])
456AC_CHECK_MEMBERS([struct stat.st_blksize])
457
458AC_STRUCT_ST_BLOCKS
075edbde 459
fd02f2ad
MD
460AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
461 [AC_TRY_CPP([#include <sys/stat.h>
462 #ifndef S_ISLNK
463 #error no S_ISLNK
464 #endif],
465 ac_cv_macro_S_ISLNK=yes,
466 ac_cv_macro_S_ISLNK=no)])
467if test $ac_cv_macro_S_ISLNK = yes; then
468 AC_DEFINE(HAVE_S_ISLNK)
469fi
470
3a629497
JB
471AC_STRUCT_TIMEZONE
472GUILE_STRUCT_UTIMBUF
473
3a629497
JB
474#--------------------------------------------------------------------
475#
476# Which way does the stack grow?
477#
478#--------------------------------------------------------------------
479
480AC_TRY_RUN(aux (l) unsigned long l;
481 { int x; exit (l >= ((unsigned long)&x)); }
01e5e07e 482 main () { int q; aux((unsigned long)&q); },
3a629497
JB
483 AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
484
3a171311
JB
485AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
486 [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
487 [guile_cv_type_float_fits_long=yes],
488 [guile_cv_type_float_fits_long=no],
489 [guile_cv_type_float_fits_long=guess-yes])])
490case $guile_cv_type_float_fits_long in
491 "yes" )
492 AC_DEFINE(SCM_SINGLES)
493 ;;
494 "guess-yes" )
495 AC_DEFINE(SCM_SINGLES)
496 AC_MSG_WARN([guessing that sizeof(long) == sizeof(float)])
497 AC_MSG_WARN([see SCM_SINGLES in scmconfig.h.in])
498 ;;
499esac
3a629497 500
3a629497
JB
501
502AC_MSG_CHECKING(for struct linger)
503AC_CACHE_VAL(scm_cv_struct_linger,
504 AC_TRY_COMPILE([
505#include <sys/types.h>
506#include <sys/socket.h>],
507 [struct linger lgr; lgr.l_linger = 100],
508 scm_cv_struct_linger="yes",
509 scm_cv_struct_linger="no"))
510AC_MSG_RESULT($scm_cv_struct_linger)
511if test $scm_cv_struct_linger = yes; then
512 AC_DEFINE(HAVE_STRUCT_LINGER)
513fi
3a629497 514
7534dfdc
MD
515
516AC_MSG_CHECKING(for struct timespec)
517AC_CACHE_VAL(scm_cv_struct_timespec,
518 AC_TRY_COMPILE([
519#include <time.h>],
520 [struct timespec t; t.tv_nsec = 100],
521 scm_cv_struct_timespec="yes",
522 scm_cv_struct_timespec="no"))
523AC_MSG_RESULT($scm_cv_struct_timespec)
524if test $scm_cv_struct_timespec = yes; then
525 AC_DEFINE(HAVE_STRUCT_TIMESPEC)
526fi
527
3a629497
JB
528#--------------------------------------------------------------------
529#
530# Flags for thread support
531#
532#--------------------------------------------------------------------
533
539c89a1
JB
534### What thread package has the user asked for?
535AC_ARG_WITH(threads, [ --with-threads thread interface],
536 , with_threads=no)
537
538### Turn $with_threads into either the name of a threads package, like
539### `qt', or `no', meaning that threads should not be supported.
e0f54bcc 540AC_MSG_CHECKING(whether to support threads)
539c89a1
JB
541case "$with_threads" in
542 "yes" | "qt" | "coop" | "")
543 with_threads=qt
544 ;;
545 "no" )
546 ;;
547 * )
548 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
549 ;;
550esac
e0f54bcc 551AC_MSG_RESULT($with_threads)
3a629497 552
539c89a1
JB
553## Make sure the threads package we've chosen is actually supported on
554## the present platform.
555case "${with_threads}" in
556 "qt" )
557 ## This configures the QuickThreads package, and sets or clears
558 ## the THREAD_PACKAGE variable if qthreads don't configure
559 ## correctly.
560 QTHREADS_CONFIGURE
561 ;;
562esac
3a629497 563
539c89a1
JB
564## If we're using threads, bring in some other parts of Guile which
565## work with them.
566if test "${THREAD_PACKAGE}" != "" ; then
567 AC_DEFINE(USE_THREADS, 1)
3a629497 568
539c89a1
JB
569 ## Include the Guile thread interface in the library...
570 LIBOBJS="$LIBOBJS threads.o"
933a7411 571
539c89a1
JB
572 ## ... and tell it which package to talk to.
573 case "${THREAD_PACKAGE}" in
574 "QT" )
575 AC_DEFINE(USE_COOP_THREADS, 1)
576 ;;
577 * )
578 AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
579 ;;
580 esac
581
582 ## Bring in scm_internal_select, if appropriate.
583 if test $ac_cv_func_gettimeofday = yes &&
584 test $ac_cv_func_select = yes; then
539c89a1
JB
585 AC_DEFINE(GUILE_ISELECT, 1)
586 fi
ed65453e 587
915bd263
MV
588 AC_ARG_ENABLE(linuxthreads,
589 [ --disable-linuxthreads disable linuxthreads workaround],,
590 enable_linuxthreads=yes)
591
592 ## Workaround for linuxthreads (optionally disabled)
593 if test $host_os = linux-gnu -a "$enable_linuxthreads" = yes; then
e4d2166f
MD
594 AC_DEFINE(GUILE_PTHREAD_COMPAT, 1)
595 AC_CHECK_LIB(pthread, main)
596 fi
933a7411 597fi
9e202853
RB
598AC_SUBST(LIBGUILEQTHREADS_INTERFACE_CURRENT)
599AC_SUBST(LIBGUILEQTHREADS_INTERFACE_REVISION)
600AC_SUBST(LIBGUILEQTHREADS_INTERFACE_AGE)
601AC_SUBST(LIBGUILEQTHREADS_INTERFACE)
933a7411 602
3a629497
JB
603## If we're using GCC, ask for aggressive warnings.
604case "$GCC" in
99be3450 605 yes )
0a1b8b15
JB
606 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
607 ## much stuff with generic function pointers for that to really be
608 ## less than exasperating.
aee8ca3f
GH
609 ## -Wpointer-arith was here too, but something changed in gcc/glibc
610 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
611 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes" ;;
3a629497
JB
612esac
613
614AC_PROG_AWK
615
8f99e3f3
SJ
616## Remove fileblocks.o from the object list. This file gets added by
617## the Autoconf macro AC_STRUCT_ST_BLOCKS. But there is no need.
618LIBOBJS="`echo ${LIBOBJS} | sed 's/fileblocks\.o//g'`"
619
3a629497
JB
620## If we're creating a shared library (using libtool!), then we'll
621## need to generate a list of .lo files corresponding to the .o files
622## given in LIBOBJS. We'll call it LIBLOBJS.
623LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
624
e9e225e5 625## We also need to create corresponding .doc and .x files
91411868 626EXTRA_DOT_DOC_FILES="`echo ${LIBOBJS} | sed 's/\.o/.doc/g'`"
e9e225e5 627EXTRA_DOT_X_FILES="`echo ${LIBOBJS} | sed 's/\.o/.x/g'`"
91411868 628
7c86ae05
JB
629AC_SUBST(GUILE_MAJOR_VERSION)
630AC_SUBST(GUILE_MINOR_VERSION)
df4a8db0 631AC_SUBST(GUILE_MICRO_VERSION)
7c86ae05 632AC_SUBST(GUILE_VERSION)
9e202853
RB
633
634AC_SUBST(LIBGUILE_INTERFACE_CURRENT)
635AC_SUBST(LIBGUILE_INTERFACE_REVISION)
636AC_SUBST(LIBGUILE_INTERFACE_AGE)
637AC_SUBST(LIBGUILE_INTERFACE)
539c89a1 638
bcc695e3 639dnl Tell guile-config what flags guile users should link against.
539c89a1 640GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
daa4f38c 641AC_SUBST(GUILE_LIBS)
7c86ae05 642
3a629497
JB
643AC_SUBST(AWK)
644AC_SUBST(LIBLOBJS)
91411868 645AC_SUBST(EXTRA_DOT_DOC_FILES)
e9e225e5 646AC_SUBST(EXTRA_DOT_X_FILES)
3a629497 647
237b3247
RB
648AC_CONFIG_FILES([
649 Makefile
650 libguile/Makefile
1e4be672 651 libguile/guile-snarf
237b3247
RB
652 libguile/guile-doc-snarf
653 libguile/guile-func-name-check
654 libguile/guile-snarf-docs
655 libguile/guile-snarf-docs-texi
70c07eed 656 libguile/version.h
237b3247
RB
657 ice-9/Makefile
658 oop/Makefile
659 oop/goops/Makefile
660 scripts/Makefile
661 srfi/Makefile
662 qt/Makefile
663 qt/qt.h
664 qt/md/Makefile
665 qt/time/Makefile
666 guile-config/Makefile
667 doc/Makefile
11ca8865
NJ
668 doc/ref/Makefile
669 doc/tutorial/Makefile
670 doc/goops/Makefile
671 doc/r5rs/Makefile
237b3247
RB
672 examples/Makefile
673 examples/scripts/Makefile
674 examples/box/Makefile
675 examples/box-module/Makefile
676 examples/box-dynamic/Makefile
e01970a5 677 examples/box-dynamic-module/Makefile
237b3247
RB
678 examples/modules/Makefile
679 examples/safe/Makefile
bc79995a 680 test-suite/Makefile
237b3247
RB
681 check-guile
682 guile-tools])
683
684AC_CONFIG_COMMANDS(default,
1e4be672
MV
685 [ chmod +x libguile/guile-snarf \
686 libguile/guile-doc-snarf \
237b3247
RB
687 libguile/guile-func-name-check \
688 libguile/guile-snarf-docs \
689 libguile/guile-snarf-docs-texi \
690 check-guile \
691 guile-tools])
692
693AC_OUTPUT
0f2d19dd 694
3a629497
JB
695dnl Local Variables:
696dnl comment-start: "dnl "
697dnl comment-end: ""
698dnl comment-start-skip: "\\bdnl\\b\\s *"
d67c13f6 699dnl End: