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