* coop.c (coop_condition_variable_timed_wait_mutex): Use ETIMEDOUT
[bpt/guile.git] / configure.in
CommitLineData
777b022a
JB
1dnl configuration script for Guile
2dnl Process this file with autoconf to produce configure.
50848747 3dnl
2adc1dd3 4dnl Copyright (C) 1998, 1999 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
0f2d19dd 23AC_INIT(Makefile.in)
2d26def0 24. $srcdir/GUILE-VERSION
3a629497 25AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
15ae1bee 26AM_MAINTAINER_MODE
3a629497 27AM_CONFIG_HEADER(libguile/scmconfig.h)
2d26def0 28
3a629497 29#--------------------------------------------------------------------
0e8a8468
MV
30#
31# Independent Subdirectories
32#
33#--------------------------------------------------------------------
34
35AC_CONFIG_SUBDIRS(guile-readline)
36
37#--------------------------------------------------------------------
3a629497
JB
38#
39# User options
40#
41#--------------------------------------------------------------------
86789f9b 42
3a629497 43AC_ARG_ENABLE(guile-debug,
52cfc69b 44 [ --enable-guile-debug include internal debugging functions],
7a11a87c
MD
45 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
46 AC_DEFINE(GUILE_DEBUG)
47 fi)
48
52b3923a
GB
49AC_ARG_ENABLE(debug-freelist,
50 [ --enable-debug-freelist Include garbage collector freelist debugging code],
51 if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
fca7547b 52 AC_DEFINE(GUILE_DEBUG_FREELIST)
52b3923a
GB
53 fi)
54
afe5177e
GH
55AC_ARG_ENABLE(arrays,
56 [ --disable-arrays omit array and uniform array support],,
57 enable_arrays=yes)
58
52cfc69b
GH
59AC_ARG_ENABLE(posix,
60 [ --disable-posix omit posix interfaces],,
61 enable_posix=yes)
62
63AC_ARG_ENABLE(networking,
dc914156 64 [ --disable-networking omit networking interfaces],,
52cfc69b
GH
65 enable_networking=yes)
66
67AC_ARG_ENABLE(regex,
68 [ --disable-regex omit regular expression interfaces],,
69 enable_regex=yes)
70
c176b92b
JB
71dnl The --disable-debug used to control these two. But now they are
72dnl a required part of the distribution.
73AC_DEFINE(DEBUG_EXTENSIONS)
74AC_DEFINE(READER_EXTENSIONS)
75
52cfc69b
GH
76dnl files which are destined for separate modules.
77
afe5177e
GH
78if test "$enable_arrays" = yes; then
79 LIBOBJS="$LIBOBJS ramap.o unif.o"
80 AC_DEFINE(HAVE_ARRAYS)
81fi
82
52cfc69b
GH
83if test "$enable_posix" = yes; then
84 LIBOBJS="$LIBOBJS filesys.o posix.o"
85 AC_DEFINE(HAVE_POSIX)
86fi
87
88if test "$enable_networking" = yes; then
89 LIBOBJS="$LIBOBJS net_db.o socket.o"
90 AC_DEFINE(HAVE_NETWORKING)
91fi
92
3a629497
JB
93#--------------------------------------------------------------------
94
b7f27d64
MV
95AC_LIBLTDL_CONVENIENCE
96AC_CONFIG_SUBDIRS(libltdl)
97
3a629497
JB
98AC_PROG_CC
99AC_PROG_CPP
b7f27d64 100AC_LIBTOOL_DLOPEN
3a629497
JB
101
102AC_AIX
103AC_ISC_POSIX
104AC_MINIX
105
e40ffcb6 106AM_PROG_CC_STDC
9da7f717 107AM_PROG_LIBTOOL
e40ffcb6 108
3a629497 109AC_C_CONST
5e9345c3 110AC_C_INLINE
9dec9737
MD
111AC_CHECK_SIZEOF(int)
112AC_CHECK_SIZEOF(long)
113AC_CACHE_CHECK([for long longs], scm_cv_long_longs,
114 AC_TRY_COMPILE(,
115 [long long a],
116 scm_cv_long_longs=yes,
117 scm_cv_long_longs=no))
118if test "$scm_cv_long_longs" = yes; then
119 AC_DEFINE(HAVE_LONG_LONGS)
120fi
3a629497
JB
121
122AC_HEADER_STDC
123AC_HEADER_DIRENT
124AC_HEADER_TIME
125AC_HEADER_SYS_WAIT
2adc1dd3 126AC_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/types.h sys/utime.h time.h unistd.h utime.h)
3a629497
JB
127GUILE_HEADER_LIBC_WITH_UNISTD
128
129AC_TYPE_GETGROUPS
130AC_TYPE_SIGNAL
131AC_TYPE_MODE_T
132
5852c051 133AC_CHECK_LIB(m, main)
4c787b52 134AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
135if test $ac_cv_func_gethostbyname = no; then
136 AC_CHECK_LIB(nsl, gethostbyname)
137fi
4c787b52 138AC_CHECK_FUNCS(connect)
5852c051
JB
139if test $ac_cv_func_connect = no; then
140 AC_CHECK_LIB(socket, connect)
141fi
5ee74cec 142
b7f27d64 143# Check for dynamic linking
5852c051 144
b7f27d64
MV
145use_modules=yes
146AC_ARG_WITH(modules,
147[ --with-modules[=FILES] Add support for dynamic modules],
148use_modules="$withval")
149test -z "$use_modules" && use_modules=yes
150DLPREOPEN=
151if test "$use_modules" != no; then
a4995389 152 AC_DEFINE(DYNAMIC_LINKING)
b7f27d64
MV
153 if test "$use_modules" = yes; then
154 DLPREOPEN="-dlpreopen force"
155 else
156 DLPREOPEN="-export-dynamic"
157 for module in $use_modules; do
158 DLPREOPEN="$DLPREOPEN -dlopen $module"
159 done
160 fi
a4995389 161fi
b7f27d64
MV
162AC_SUBST(INCLTDL)
163AC_SUBST(LIBLTDL)
164AC_SUBST(DLPREOPEN)
5852c051 165
d831b039 166AC_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 bzero strdup system usleep atexit on_exit)
64e121dc 167
777b022a
JB
168### Some systems don't declare some functions. On such systems, we
169### need to at least provide our own K&R-style declarations.
170
171### GUILE_FUNC_DECLARED(function, headerfile)
172
173### Check for a declaration of FUNCTION in HEADERFILE; if it is
174### not there, #define MISSING_FUNCTION_DECL.
175AC_DEFUN(GUILE_FUNC_DECLARED, [
fc342a63 176 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 177 AC_EGREP_HEADER($1, $2,
fc342a63
JB
178 guile_cv_func_$1_declared=yes,
179 guile_cv_func_$1_declared=no))
180 if test [x$guile_cv_func_]$1[_declared] = xno; then
777b022a
JB
181 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])
182 fi
183])
184
185GUILE_FUNC_DECLARED(strptime, time.h)
186GUILE_FUNC_DECLARED(bzero, string.h)
c31bfb85 187GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 188GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 189
da753252
JB
190### On some systems usleep has no return value. If it does have one,
191### we'd like to return it; otherwise, we'll fake it.
fc342a63 192AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
c43f86c1 193 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
fc342a63
JB
194 /usr/include/unistd.h,
195 [guile_cv_func_usleep_return_type=void],
196 [guile_cv_func_usleep_return_type=int])])
197case "$guile_cv_func_usleep_return_type" in
198 "void" )
199 AC_DEFINE(USLEEP_RETURNS_VOID)
200 ;;
201esac
202
da88f0cb
JB
203dnl <GNU-WIN32 hacks>
204
205AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
206if test -n "$have_sys_un_h" ; then
207AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)
208fi
209
210AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
211
f4e5b810
GH
212dnl I don't know what this prefixing of cygwin32_ is for.
213dnl scmconfig.h wasn't updated with the test results.
214dnl so use AC_CHECK_FUNCS for now.
215
216dnl how about:
217dnl save confdefs.h
218dnl if test $ac_cv_cigwin = yes; then
219dnl modify confdefs.h
220dnl fi
221dnl AC_CHECK_FUNCS...
222dnl restore confdefs.h
223
224dnl cp confdefs.h confdefs.h.bak
5c11cc9d 225dnl for func in gethostent sethostent endhostent getnetent setnetent endnetent getprotoent setprotoent endprotoent getservent setservent endservent getnetbyaddr getnetbyname inet_lnaof inet_makeaddr inet_netof hstrerror; do
f4e5b810
GH
226dnl cp confdefs.h.bak confdefs.h
227dnl cat >> confdefs.h << EOF
228dnl #ifdef __CYGWIN32__
229dnl #define $func cygwin32_$func
230dnl #endif
231dnl EOF
232dnl AC_CHECK_FUNC($func)
233dnl done
234dnl cp confdefs.h.bak confdefs.h
235
219a5a5b
JB
236AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
237 setnetent getnetent endnetent dnl
238 setprotoent getprotoent endprotoent dnl
239 setservent getservent endservent dnl
5c11cc9d
GH
240 getnetbyaddr getnetbyname dnl
241 inet_lnaof inet_makeaddr inet_netof hstrerror)
da88f0cb
JB
242
243dnl </GNU-WIN32 hacks>
244
38c1d3c4
GH
245AC_MSG_CHECKING(whether localtime caches TZ)
246AC_CACHE_VAL(guile_cv_localtime_cache,
247[if test x$ac_cv_func_tzset = xyes; then
248AC_TRY_RUN([#include <time.h>
249#if STDC_HEADERS
250# include <stdlib.h>
251#endif
252extern char **environ;
253unset_TZ ()
254{
255 char **from, **to;
256 for (to = from = environ; (*to = *from); from++)
257 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
258 to++;
259}
260char TZ_GMT0[] = "TZ=GMT0";
261char TZ_PST8[] = "TZ=PST8";
262main()
263{
264 time_t now = time ((time_t *) 0);
265 int hour_GMT0, hour_unset;
266 if (putenv (TZ_GMT0) != 0)
267 exit (1);
268 hour_GMT0 = localtime (&now)->tm_hour;
269 unset_TZ ();
270 hour_unset = localtime (&now)->tm_hour;
271 if (putenv (TZ_PST8) != 0)
272 exit (1);
273 if (localtime (&now)->tm_hour == hour_GMT0)
274 exit (1);
275 unset_TZ ();
276 if (localtime (&now)->tm_hour != hour_unset)
277 exit (1);
278 exit (0);
279}], guile_cv_localtime_cache=no, guile_cv_localtime_cache=yes,
280[# If we have tzset, assume the worst when cross-compiling.
281guile_cv_localtime_cache=yes])
282else
283 # If we lack tzset, report that localtime does not cache TZ,
284 # since we can't invalidate the cache if we don't have tzset.
285 guile_cv_localtime_cache=no
286fi])dnl
287AC_MSG_RESULT($guile_cv_localtime_cache)
288if test $guile_cv_localtime_cache = yes; then
289 AC_DEFINE(LOCALTIME_CACHE)
290fi
291
7ee92fce
GH
292dnl Test whether system calls are restartable by default on the
293dnl current system. If they are not, we put a loop around every system
294dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
295dnl change from the default behaviour. On the other hand, if signals
296dnl are restartable then the loop is not installed and when libguile
297dnl initialises it also resets the behaviour of each signal to cause a
298dnl restart (in case a different runtime had a different default
299dnl behaviour for some reason: e.g., different versions of linux seem
300dnl to behave differently.)
301
08b8c694 302AC_SYS_RESTARTABLE_SYSCALLS
e1a191a8 303
52cfc69b
GH
304if test "$enable_regex" = yes; then
305 if test "$ac_cv_header_regex_h" = yes ||
306 test "$ac_cv_header_rxposix_h" = yes ||
307 test "$ac_cv_header_rx_rxposix_h" = yes; then
308 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],
309 [AC_CHECK_LIB(rx, main)
310 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"])]
311 )
312 dnl The following should not be necessary, but for some reason
313 dnl autoheader misses it if we don't include it!
314 if test "$ac_cv_func_regcomp_norx" = yes ||
315 test "$ac_cv_func_regcomp_rx" = yes; then
316 AC_DEFINE(HAVE_REGCOMP)
317 fi
318 fi
da88f0cb 319fi
8e1bfcd0 320
dbbbec40 321AC_REPLACE_FUNCS(inet_aton putenv strerror memmove)
3a629497 322
4a5fa91c
TP
323# When testing for the presence of alloca, we need to add alloca.o
324# explicitly to LIBOBJS to make sure that it is translated to
325# `alloca.lo' for libtool later on. This can and should be done more cleanly.
3a629497 326AC_FUNC_ALLOCA
4a5fa91c 327if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
3a629497
JB
328
329AC_STRUCT_ST_RDEV
330AC_STRUCT_ST_BLKSIZE
075edbde
JB
331
332# We could use AC_STRUCT_ST_BLOCKS here, but that adds fileblocks.o to
333# LIBOBJS, which we don't need. This seems more direct.
334AC_CACHE_CHECK([for st_blocks in struct stat], ac_cv_struct_st_blocks,
335[AC_TRY_COMPILE([#include <sys/types.h>
336#include <sys/stat.h>], [struct stat s; s.st_blocks;],
337ac_cv_struct_st_blocks=yes, ac_cv_struct_st_blocks=no)])
338if test $ac_cv_struct_st_blocks = yes; then
339 AC_DEFINE(HAVE_ST_BLOCKS)
340fi
341
fd02f2ad
MD
342AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
343 [AC_TRY_CPP([#include <sys/stat.h>
344 #ifndef S_ISLNK
345 #error no S_ISLNK
346 #endif],
347 ac_cv_macro_S_ISLNK=yes,
348 ac_cv_macro_S_ISLNK=no)])
349if test $ac_cv_macro_S_ISLNK = yes; then
350 AC_DEFINE(HAVE_S_ISLNK)
351fi
352
3a629497
JB
353AC_STRUCT_TIMEZONE
354GUILE_STRUCT_UTIMBUF
355
3a629497
JB
356#--------------------------------------------------------------------
357#
358# Which way does the stack grow?
359#
360#--------------------------------------------------------------------
361
362AC_TRY_RUN(aux (l) unsigned long l;
363 { int x; exit (l >= ((unsigned long)&x)); }
364 main () { int q; aux((unsigned long)&q); },
365 AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
366
3a171311
JB
367AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
368 [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
369 [guile_cv_type_float_fits_long=yes],
370 [guile_cv_type_float_fits_long=no],
371 [guile_cv_type_float_fits_long=guess-yes])])
372case $guile_cv_type_float_fits_long in
373 "yes" )
374 AC_DEFINE(SCM_SINGLES)
375 ;;
376 "guess-yes" )
377 AC_DEFINE(SCM_SINGLES)
378 AC_MSG_WARN([guessing that sizeof(long) == sizeof(float)])
379 AC_MSG_WARN([see SCM_SINGLES in scmconfig.h.in])
380 ;;
381esac
3a629497 382
3a629497
JB
383
384AC_MSG_CHECKING(for struct linger)
385AC_CACHE_VAL(scm_cv_struct_linger,
386 AC_TRY_COMPILE([
387#include <sys/types.h>
388#include <sys/socket.h>],
389 [struct linger lgr; lgr.l_linger = 100],
390 scm_cv_struct_linger="yes",
391 scm_cv_struct_linger="no"))
392AC_MSG_RESULT($scm_cv_struct_linger)
393if test $scm_cv_struct_linger = yes; then
394 AC_DEFINE(HAVE_STRUCT_LINGER)
395fi
3a629497
JB
396
397#--------------------------------------------------------------------
398#
399# Flags for thread support
400#
401#--------------------------------------------------------------------
402
539c89a1
JB
403### What thread package has the user asked for?
404AC_ARG_WITH(threads, [ --with-threads thread interface],
405 , with_threads=no)
406
407### Turn $with_threads into either the name of a threads package, like
408### `qt', or `no', meaning that threads should not be supported.
e0f54bcc 409AC_MSG_CHECKING(whether to support threads)
539c89a1
JB
410case "$with_threads" in
411 "yes" | "qt" | "coop" | "")
412 with_threads=qt
413 ;;
414 "no" )
415 ;;
416 * )
417 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
418 ;;
419esac
e0f54bcc 420AC_MSG_RESULT($with_threads)
3a629497 421
539c89a1
JB
422## Make sure the threads package we've chosen is actually supported on
423## the present platform.
424case "${with_threads}" in
425 "qt" )
426 ## This configures the QuickThreads package, and sets or clears
427 ## the THREAD_PACKAGE variable if qthreads don't configure
428 ## correctly.
429 QTHREADS_CONFIGURE
430 ;;
431esac
3a629497 432
539c89a1
JB
433## If we're using threads, bring in some other parts of Guile which
434## work with them.
435if test "${THREAD_PACKAGE}" != "" ; then
436 AC_DEFINE(USE_THREADS, 1)
3a629497 437
539c89a1
JB
438 ## Include the Guile thread interface in the library...
439 LIBOBJS="$LIBOBJS threads.o"
933a7411 440
539c89a1
JB
441 ## ... and tell it which package to talk to.
442 case "${THREAD_PACKAGE}" in
443 "QT" )
444 AC_DEFINE(USE_COOP_THREADS, 1)
445 ;;
446 * )
447 AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
448 ;;
449 esac
450
451 ## Bring in scm_internal_select, if appropriate.
452 if test $ac_cv_func_gettimeofday = yes &&
453 test $ac_cv_func_select = yes; then
454 LIBOBJS="$LIBOBJS iselect.o"
455 AC_DEFINE(GUILE_ISELECT, 1)
456 fi
933a7411
MD
457fi
458
3a629497
JB
459## If we're using GCC, ask for aggressive warnings.
460case "$GCC" in
99be3450 461 yes )
0a1b8b15
JB
462 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
463 ## much stuff with generic function pointers for that to really be
464 ## less than exasperating.
aee8ca3f
GH
465 ## -Wpointer-arith was here too, but something changed in gcc/glibc
466 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
467 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes" ;;
3a629497
JB
468esac
469
470AC_PROG_AWK
471
472## If we're creating a shared library (using libtool!), then we'll
473## need to generate a list of .lo files corresponding to the .o files
474## given in LIBOBJS. We'll call it LIBLOBJS.
475LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
476
7c86ae05
JB
477AC_SUBST(GUILE_MAJOR_VERSION)
478AC_SUBST(GUILE_MINOR_VERSION)
479AC_SUBST(GUILE_VERSION)
539c89a1 480
bcc695e3 481dnl Tell guile-config what flags guile users should link against.
539c89a1 482GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
daa4f38c 483AC_SUBST(GUILE_LIBS)
7c86ae05 484
3a629497
JB
485AC_SUBST(AWK)
486AC_SUBST(LIBLOBJS)
487
951afd33 488AC_OUTPUT([Makefile libguile/Makefile libguile/guile-snarf libguile/guile-doc-snarf libguile/guile-func-name-check libguile/guile-snarf.awk libguile/versiondat.h ice-9/Makefile qt/Makefile qt/qt.h qt/md/Makefile qt/time/Makefile guile-config/Makefile doc/Makefile], [chmod +x libguile/guile-snarf libguile/guile-doc-snarf libguile/guile-func-name-check])
0f2d19dd 489
3a629497
JB
490dnl Local Variables:
491dnl comment-start: "dnl "
492dnl comment-end: ""
493dnl comment-start-skip: "\\bdnl\\b\\s *"
951afd33 494dnl