*** empty log message ***
[bpt/guile.git] / configure.in
... / ...
CommitLineData
1dnl configuration script for Guile
2dnl Process this file with autoconf to produce configure.
3dnl
4dnl Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
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
23AC_INIT(Makefile.in)
24. $srcdir/GUILE-VERSION
25AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
26AM_MAINTAINER_MODE
27AM_CONFIG_HEADER(libguile/scmconfig.h)
28
29#--------------------------------------------------------------------
30#
31# Independent Subdirectories
32#
33#--------------------------------------------------------------------
34
35AC_CONFIG_SUBDIRS(guile-readline)
36
37#--------------------------------------------------------------------
38#
39# User options
40#
41#--------------------------------------------------------------------
42
43AC_ARG_ENABLE(debug-freelist,
44 [ --enable-debug-freelist include garbage collector freelist debugging code],
45 if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
46 AC_DEFINE(GUILE_DEBUG_FREELIST)
47 fi)
48
49AC_ARG_ENABLE(debug-malloc,
50 [ --enable-debug-malloc include malloc debugging code],
51 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
52 AC_DEFINE(GUILE_DEBUG_MALLOC)
53 fi)
54
55AC_ARG_ENABLE(guile-debug,
56 [ --enable-guile-debug include internal debugging functions],
57 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
58 AC_DEFINE(GUILE_DEBUG)
59 fi)
60
61AC_ARG_ENABLE(arrays,
62 [ --disable-arrays omit array and uniform array support],,
63 enable_arrays=yes)
64
65AC_ARG_ENABLE(posix,
66 [ --disable-posix omit posix interfaces],,
67 enable_posix=yes)
68
69AC_ARG_ENABLE(networking,
70 [ --disable-networking omit networking interfaces],,
71 enable_networking=yes)
72
73AC_ARG_ENABLE(regex,
74 [ --disable-regex omit regular expression interfaces],,
75 enable_regex=yes)
76
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
82dnl files which are destined for separate modules.
83
84if test "$enable_arrays" = yes; then
85 LIBOBJS="$LIBOBJS ramap.o unif.o"
86 AC_DEFINE(HAVE_ARRAYS)
87fi
88
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
99if test "$enable_debug_malloc" = yes; then
100 LIBOBJS="$LIBOBJS debug-malloc.o"
101fi
102
103#--------------------------------------------------------------------
104
105AC_LIBLTDL_CONVENIENCE
106AC_CONFIG_SUBDIRS(libltdl)
107
108AC_PROG_CC
109AC_PROG_CPP
110AC_LIBTOOL_DLOPEN
111
112AC_AIX
113AC_ISC_POSIX
114AC_MINIX
115
116AM_PROG_CC_STDC
117AM_PROG_LIBTOOL
118
119AC_C_CONST
120AC_C_INLINE
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
131
132AC_HEADER_STDC
133AC_HEADER_DIRENT
134AC_HEADER_TIME
135AC_HEADER_SYS_WAIT
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)
137GUILE_HEADER_LIBC_WITH_UNISTD
138
139AC_TYPE_GETGROUPS
140AC_TYPE_SIGNAL
141AC_TYPE_MODE_T
142
143AC_CHECK_LIB(m, main)
144AC_CHECK_FUNCS(gethostbyname)
145if test $ac_cv_func_gethostbyname = no; then
146 AC_CHECK_LIB(nsl, gethostbyname)
147fi
148AC_CHECK_FUNCS(connect)
149if test $ac_cv_func_connect = no; then
150 AC_CHECK_LIB(socket, connect)
151fi
152
153# Check for dynamic linking
154
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
162 AC_DEFINE(DYNAMIC_LINKING)
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
171fi
172AC_SUBST(INCLTDL)
173AC_SUBST(LIBLTDL)
174AC_SUBST(DLPREOPEN)
175
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)
177
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, [
186 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
187 AC_EGREP_HEADER($1, $2,
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
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)
197GUILE_FUNC_DECLARED(sleep, unistd.h)
198GUILE_FUNC_DECLARED(usleep, unistd.h)
199
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.
202AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
203 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
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
213AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
214if test -n "$have_sys_un_h" ; then
215AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)
216fi
217
218AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
219
220AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
221 setnetent getnetent endnetent dnl
222 setprotoent getprotoent endprotoent dnl
223 setservent getservent endservent dnl
224 getnetbyaddr getnetbyname dnl
225 inet_lnaof inet_makeaddr inet_netof hstrerror)
226
227dnl Some systems do not declare this. Some systems do declare it, as a
228dnl macro. With cygwin it may be in a DLL.
229
230AC_MSG_CHECKING(whether netdb.h declares h_errno)
231AC_CACHE_VAL(guile_cv_have_h_errno,
232[AC_TRY_COMPILE([#include <netdb.h>],
233[int a = h_errno;],
234guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])
235AC_MSG_RESULT($guile_cv_have_h_errno)
236if test $guile_cv_have_h_errno = yes; then
237 AC_DEFINE(HAVE_H_ERRNO)
238fi
239
240AC_MSG_CHECKING(whether localtime caches TZ)
241AC_CACHE_VAL(guile_cv_localtime_cache,
242[if test x$ac_cv_func_tzset = xyes; then
243AC_TRY_RUN([#include <time.h>
244#if STDC_HEADERS
245# include <stdlib.h>
246#endif
247extern char **environ;
248unset_TZ ()
249{
250 char **from, **to;
251 for (to = from = environ; (*to = *from); from++)
252 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
253 to++;
254}
255char TZ_GMT0[] = "TZ=GMT0";
256char TZ_PST8[] = "TZ=PST8";
257main()
258{
259 time_t now = time ((time_t *) 0);
260 int hour_GMT0, hour_unset;
261 if (putenv (TZ_GMT0) != 0)
262 exit (1);
263 hour_GMT0 = localtime (&now)->tm_hour;
264 unset_TZ ();
265 hour_unset = localtime (&now)->tm_hour;
266 if (putenv (TZ_PST8) != 0)
267 exit (1);
268 if (localtime (&now)->tm_hour == hour_GMT0)
269 exit (1);
270 unset_TZ ();
271 if (localtime (&now)->tm_hour != hour_unset)
272 exit (1);
273 exit (0);
274}], guile_cv_localtime_cache=no, guile_cv_localtime_cache=yes,
275[# If we have tzset, assume the worst when cross-compiling.
276guile_cv_localtime_cache=yes])
277else
278 # If we lack tzset, report that localtime does not cache TZ,
279 # since we can't invalidate the cache if we don't have tzset.
280 guile_cv_localtime_cache=no
281fi])dnl
282AC_MSG_RESULT($guile_cv_localtime_cache)
283if test $guile_cv_localtime_cache = yes; then
284 AC_DEFINE(LOCALTIME_CACHE)
285fi
286
287dnl Test whether system calls are restartable by default on the
288dnl current system. If they are not, we put a loop around every system
289dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
290dnl change from the default behaviour. On the other hand, if signals
291dnl are restartable then the loop is not installed and when libguile
292dnl initialises it also resets the behaviour of each signal to cause a
293dnl restart (in case a different runtime had a different default
294dnl behaviour for some reason: e.g., different versions of linux seem
295dnl to behave differently.)
296
297AC_SYS_RESTARTABLE_SYSCALLS
298
299if test "$enable_regex" = yes; then
300 if test "$ac_cv_header_regex_h" = yes ||
301 test "$ac_cv_header_rxposix_h" = yes ||
302 test "$ac_cv_header_rx_rxposix_h" = yes; then
303 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],
304 [AC_CHECK_LIB(rx, main)
305 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"])]
306 )
307 dnl The following should not be necessary, but for some reason
308 dnl autoheader misses it if we don't include it!
309 if test "$ac_cv_func_regcomp_norx" = yes ||
310 test "$ac_cv_func_regcomp_rx" = yes; then
311 AC_DEFINE(HAVE_REGCOMP)
312 fi
313 fi
314fi
315
316AC_REPLACE_FUNCS(inet_aton putenv strerror memmove)
317
318# When testing for the presence of alloca, we need to add alloca.o
319# explicitly to LIBOBJS to make sure that it is translated to
320# `alloca.lo' for libtool later on. This can and should be done more cleanly.
321AC_FUNC_ALLOCA
322if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
323
324AC_STRUCT_ST_RDEV
325AC_STRUCT_ST_BLKSIZE
326
327# We could use AC_STRUCT_ST_BLOCKS here, but that adds fileblocks.o to
328# LIBOBJS, which we don't need. This seems more direct.
329AC_CACHE_CHECK([for st_blocks in struct stat], ac_cv_struct_st_blocks,
330[AC_TRY_COMPILE([#include <sys/types.h>
331#include <sys/stat.h>], [struct stat s; s.st_blocks;],
332ac_cv_struct_st_blocks=yes, ac_cv_struct_st_blocks=no)])
333if test $ac_cv_struct_st_blocks = yes; then
334 AC_DEFINE(HAVE_ST_BLOCKS)
335fi
336
337AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
338 [AC_TRY_CPP([#include <sys/stat.h>
339 #ifndef S_ISLNK
340 #error no S_ISLNK
341 #endif],
342 ac_cv_macro_S_ISLNK=yes,
343 ac_cv_macro_S_ISLNK=no)])
344if test $ac_cv_macro_S_ISLNK = yes; then
345 AC_DEFINE(HAVE_S_ISLNK)
346fi
347
348AC_STRUCT_TIMEZONE
349GUILE_STRUCT_UTIMBUF
350
351#--------------------------------------------------------------------
352#
353# Which way does the stack grow?
354#
355#--------------------------------------------------------------------
356
357AC_TRY_RUN(aux (l) unsigned long l;
358 { int x; exit (l >= ((unsigned long)&x)); }
359 main () { int q; aux((unsigned long)&q); },
360 AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
361
362AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
363 [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
364 [guile_cv_type_float_fits_long=yes],
365 [guile_cv_type_float_fits_long=no],
366 [guile_cv_type_float_fits_long=guess-yes])])
367case $guile_cv_type_float_fits_long in
368 "yes" )
369 AC_DEFINE(SCM_SINGLES)
370 ;;
371 "guess-yes" )
372 AC_DEFINE(SCM_SINGLES)
373 AC_MSG_WARN([guessing that sizeof(long) == sizeof(float)])
374 AC_MSG_WARN([see SCM_SINGLES in scmconfig.h.in])
375 ;;
376esac
377
378
379AC_MSG_CHECKING(for struct linger)
380AC_CACHE_VAL(scm_cv_struct_linger,
381 AC_TRY_COMPILE([
382#include <sys/types.h>
383#include <sys/socket.h>],
384 [struct linger lgr; lgr.l_linger = 100],
385 scm_cv_struct_linger="yes",
386 scm_cv_struct_linger="no"))
387AC_MSG_RESULT($scm_cv_struct_linger)
388if test $scm_cv_struct_linger = yes; then
389 AC_DEFINE(HAVE_STRUCT_LINGER)
390fi
391
392
393AC_MSG_CHECKING(for struct timespec)
394AC_CACHE_VAL(scm_cv_struct_timespec,
395 AC_TRY_COMPILE([
396#include <time.h>],
397 [struct timespec t; t.tv_nsec = 100],
398 scm_cv_struct_timespec="yes",
399 scm_cv_struct_timespec="no"))
400AC_MSG_RESULT($scm_cv_struct_timespec)
401if test $scm_cv_struct_timespec = yes; then
402 AC_DEFINE(HAVE_STRUCT_TIMESPEC)
403fi
404
405#--------------------------------------------------------------------
406#
407# Flags for thread support
408#
409#--------------------------------------------------------------------
410
411### What thread package has the user asked for?
412AC_ARG_WITH(threads, [ --with-threads thread interface],
413 , with_threads=no)
414
415### Turn $with_threads into either the name of a threads package, like
416### `qt', or `no', meaning that threads should not be supported.
417AC_MSG_CHECKING(whether to support threads)
418case "$with_threads" in
419 "yes" | "qt" | "coop" | "")
420 with_threads=qt
421 ;;
422 "no" )
423 ;;
424 * )
425 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
426 ;;
427esac
428AC_MSG_RESULT($with_threads)
429
430## Make sure the threads package we've chosen is actually supported on
431## the present platform.
432case "${with_threads}" in
433 "qt" )
434 ## This configures the QuickThreads package, and sets or clears
435 ## the THREAD_PACKAGE variable if qthreads don't configure
436 ## correctly.
437 QTHREADS_CONFIGURE
438 ;;
439esac
440
441## If we're using threads, bring in some other parts of Guile which
442## work with them.
443if test "${THREAD_PACKAGE}" != "" ; then
444 AC_DEFINE(USE_THREADS, 1)
445
446 ## Include the Guile thread interface in the library...
447 LIBOBJS="$LIBOBJS threads.o"
448 EXTRA_DOT_DOC_FILES="$EXTRA_DOT_DOC_FILES threads.doc"
449
450 ## ... and tell it which package to talk to.
451 case "${THREAD_PACKAGE}" in
452 "QT" )
453 AC_DEFINE(USE_COOP_THREADS, 1)
454 ;;
455 * )
456 AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
457 ;;
458 esac
459
460 ## Bring in scm_internal_select, if appropriate.
461 if test $ac_cv_func_gettimeofday = yes &&
462 test $ac_cv_func_select = yes; then
463 AC_DEFINE(GUILE_ISELECT, 1)
464 fi
465
466 ## Workaround for linuxthreads (currently disabled)
467 if test $host_os = linux-gnu; then
468 AC_DEFINE(GUILE_PTHREAD_COMPAT, 1)
469 AC_CHECK_LIB(pthread, main)
470 fi
471fi
472
473## If we're using GCC, ask for aggressive warnings.
474case "$GCC" in
475 yes )
476 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
477 ## much stuff with generic function pointers for that to really be
478 ## less than exasperating.
479 ## -Wpointer-arith was here too, but something changed in gcc/glibc
480 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
481 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes" ;;
482esac
483
484AC_PROG_AWK
485
486## If we're creating a shared library (using libtool!), then we'll
487## need to generate a list of .lo files corresponding to the .o files
488## given in LIBOBJS. We'll call it LIBLOBJS.
489LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
490
491## We also need to create corresponding .doc files
492EXTRA_DOT_DOC_FILES="`echo ${LIBOBJS} | sed 's/\.o/.doc/g'`"
493
494AC_SUBST(GUILE_MAJOR_VERSION)
495AC_SUBST(GUILE_MINOR_VERSION)
496AC_SUBST(GUILE_VERSION)
497AC_SUBST(LIBGUILE_MAJOR_VERSION)
498AC_SUBST(LIBGUILE_MINOR_VERSION)
499AC_SUBST(LIBGUILE_REVISION_VERSION)
500AC_SUBST(LIBGUILE_VERSION)
501
502dnl Tell guile-config what flags guile users should link against.
503GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
504AC_SUBST(GUILE_LIBS)
505
506AC_SUBST(AWK)
507AC_SUBST(LIBLOBJS)
508AC_SUBST(EXTRA_DOT_DOC_FILES)
509
510AC_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 oop/Makefile oop/goops/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])
511
512dnl Local Variables:
513dnl comment-start: "dnl "
514dnl comment-end: ""
515dnl comment-start-skip: "\\bdnl\\b\\s *"
516dnl End: