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