Update copyright.
[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, 2001 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_PREREQ(2.50)
24
25AC_INIT
26AC_CONFIG_SRCDIR([Makefile.in])
27. $srcdir/GUILE-VERSION
28AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
29AM_MAINTAINER_MODE
30AM_CONFIG_HEADER(libguile/scmconfig.h)
31
32#--------------------------------------------------------------------
33#
34# Independent Subdirectories
35#
36#--------------------------------------------------------------------
37
38AC_CONFIG_SUBDIRS(guile-readline)
39
40#--------------------------------------------------------------------
41#
42# User options
43#
44#--------------------------------------------------------------------
45
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
54AC_ARG_ENABLE(debug-freelist,
55 [ --enable-debug-freelist include garbage collector freelist debugging code],
56 if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
57 AC_DEFINE(GUILE_DEBUG_FREELIST)
58 fi)
59
60AC_ARG_ENABLE(debug-malloc,
61 [ --enable-debug-malloc include malloc debugging code],
62 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
63 AC_DEFINE(GUILE_DEBUG_MALLOC)
64 fi)
65
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
72AC_ARG_ENABLE(arrays,
73 [ --disable-arrays omit array and uniform array support],,
74 enable_arrays=yes)
75
76AC_ARG_ENABLE(posix,
77 [ --disable-posix omit posix interfaces],,
78 enable_posix=yes)
79
80AC_ARG_ENABLE(networking,
81 [ --disable-networking omit networking interfaces],,
82 enable_networking=yes)
83
84AC_ARG_ENABLE(regex,
85 [ --disable-regex omit regular expression interfaces],,
86 enable_regex=yes)
87
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
110AC_ARG_ENABLE(deprecated,
111 [ --disable-deprecated omit deprecated features [no]])
112
113if test "$enable_deprecated" = no; then
114 AC_DEFINE(SCM_ENABLE_DEPRECATED, 0)
115else
116 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
117 warn_default=summary
118 elif test "$enable_deprecated" = shutup; then
119 warn_default=no
120 else
121 warn_default=$enable_deprecated
122 fi
123 AC_DEFINE(SCM_ENABLE_DEPRECATED, 1)
124 AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default")
125fi
126
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
132dnl files which are destined for separate modules.
133
134if test "$enable_arrays" = yes; then
135 LIBOBJS="$LIBOBJS ramap.o unif.o"
136 AC_DEFINE(HAVE_ARRAYS)
137fi
138
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
149if test "$enable_debug_malloc" = yes; then
150 LIBOBJS="$LIBOBJS debug-malloc.o"
151fi
152
153#--------------------------------------------------------------------
154
155dnl Some more checks for Win32
156AC_CYGWIN
157AC_MINGW32
158AC_LIBTOOL_WIN32_DLL
159
160AC_LIBLTDL_INSTALLABLE
161AC_CONFIG_SUBDIRS(libltdl)
162
163AC_PROG_INSTALL
164AC_PROG_CC
165AC_PROG_CPP
166AC_LIBTOOL_DLOPEN
167
168AC_AIX
169AC_ISC_POSIX
170AC_MINIX
171
172AM_PROG_CC_STDC
173AM_PROG_LIBTOOL
174
175AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
176AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
177
178AC_C_CONST
179AC_C_INLINE
180AC_C_BIGENDIAN
181
182if test "$ac_cv_c_inline" != no; then
183 AC_DEFINE(HAVE_INLINE)
184fi
185
186AC_CHECK_SIZEOF(short)
187AC_CHECK_SIZEOF(int)
188AC_CHECK_SIZEOF(long)
189AC_CHECK_SIZEOF(size_t)
190
191dnl Check for integral types that can represent the range of pointers.
192dnl If these types don't exist on this platform, they are replaced by
193dnl "unsigned long" and "long", respectively.
194
195AC_CHECK_HEADERS(stdint.h)
196AC_CHECK_HEADERS(inttypes.h)
197AC_CHECK_SIZEOF(uintptr_t)
198AC_CHECK_SIZEOF(ptrdiff_t)
199
200AC_CHECK_SIZEOF(long long)
201
202AC_CHECK_SIZEOF(void *)
203
204if test "$ac_cv_sizeof_long" -ne "$ac_cv_sizeof_void_p"; then
205 AC_MSG_ERROR(sizes of long and void* are not identical)
206fi
207
208AC_HEADER_STDC
209AC_HEADER_DIRENT
210AC_HEADER_TIME
211AC_HEADER_SYS_WAIT
212AC_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)
213GUILE_HEADER_LIBC_WITH_UNISTD
214
215AC_TYPE_GETGROUPS
216AC_TYPE_SIGNAL
217AC_TYPE_MODE_T
218
219AC_CHECK_LIB(m, main)
220AC_CHECK_FUNCS(gethostbyname)
221if test $ac_cv_func_gethostbyname = no; then
222 AC_CHECK_LIB(nsl, gethostbyname)
223fi
224AC_CHECK_FUNCS(connect)
225if test $ac_cv_func_connect = no; then
226 AC_CHECK_LIB(socket, connect)
227fi
228
229dnl
230dnl Check for Winsock and other functionality on Win32 (*not* CygWin)
231dnl
232EXTRA_DEFS=""
233if test "$MINGW32" = "yes" ; then
234 AC_CHECK_HEADER(winsock2.h, [AC_DEFINE([HAVE_WINSOCK2_H], 1,
235 [Define if you have the <winsock2.h> header file.])])
236 AC_CHECK_LIB(ws2_32, main)
237 LIBOBJS="$LIBOBJS win32-uname.o win32-dirent.o"
238 if test "$enable_networking" = yes ; then
239 LIBOBJS="$LIBOBJS win32-socket.o"
240 fi
241 if test "$enable_shared" = yes ; then
242 EXTRA_DEFS="-DSCM_IMPORT"
243 AC_DEFINE(USE_DLL_IMPORT, 1,
244 [Define if you need additional CPP macros on Win32 platforms.])
245 fi
246fi
247AC_SUBST(EXTRA_DEFS)
248
249dnl Check for dynamic linking
250
251use_modules=yes
252AC_ARG_WITH(modules,
253[ --with-modules[=FILES] Add support for dynamic modules],
254use_modules="$withval")
255test -z "$use_modules" && use_modules=yes
256DLPREOPEN=
257if test "$use_modules" != no; then
258 AC_DEFINE(DYNAMIC_LINKING)
259 if test "$use_modules" = yes; then
260 DLPREOPEN="-dlpreopen force"
261 else
262 DLPREOPEN="-export-dynamic"
263 for module in $use_modules; do
264 DLPREOPEN="$DLPREOPEN -dlopen $module"
265 done
266 fi
267fi
268AC_SUBST(INCLTDL)
269AC_SUBST(LIBLTDL)
270AC_SUBST(DLPREOPEN)
271
272AC_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)
273
274AC_CHECK_HEADERS(crypt.h sys/resource.h sys/file.h)
275AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
276AC_CHECK_LIB(crypt, crypt)
277
278### Some systems don't declare some functions. On such systems, we
279### need to at least provide our own K&R-style declarations.
280
281### GUILE_FUNC_DECLARED(function, headerfile)
282
283### Check for a declaration of FUNCTION in HEADERFILE; if it is
284### not there, #define MISSING_FUNCTION_DECL.
285AC_DEFUN(GUILE_FUNC_DECLARED, [
286 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
287 AC_EGREP_HEADER($1, $2,
288 guile_cv_func_$1_declared=yes,
289 guile_cv_func_$1_declared=no))
290 if test [x$guile_cv_func_]$1[_declared] = xno; then
291 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])
292 fi
293])
294
295GUILE_FUNC_DECLARED(strptime, time.h)
296GUILE_FUNC_DECLARED(sleep, unistd.h)
297GUILE_FUNC_DECLARED(usleep, unistd.h)
298
299### On some systems usleep has no return value. If it does have one,
300### we'd like to return it; otherwise, we'll fake it.
301AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
302 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
303 unistd.h,
304 [guile_cv_func_usleep_return_type=void],
305 [guile_cv_func_usleep_return_type=int])])
306case "$guile_cv_func_usleep_return_type" in
307 "void" )
308 AC_DEFINE(USLEEP_RETURNS_VOID)
309 ;;
310esac
311
312AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
313if test -n "$have_sys_un_h" ; then
314AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)
315fi
316
317AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
318
319AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
320 setnetent getnetent endnetent dnl
321 setprotoent getprotoent endprotoent dnl
322 setservent getservent endservent dnl
323 getnetbyaddr getnetbyname dnl
324 inet_lnaof inet_makeaddr inet_netof hstrerror dnl
325 inet_pton inet_ntop)
326
327dnl Some systems do not declare this. Some systems do declare it, as a
328dnl macro. With cygwin it may be in a DLL.
329
330AC_MSG_CHECKING(whether netdb.h declares h_errno)
331AC_CACHE_VAL(guile_cv_have_h_errno,
332[AC_TRY_COMPILE([#include <netdb.h>],
333[int a = h_errno;],
334guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])
335AC_MSG_RESULT($guile_cv_have_h_errno)
336if test $guile_cv_have_h_errno = yes; then
337 AC_DEFINE(HAVE_H_ERRNO)
338fi
339
340AC_MSG_CHECKING(whether uint32_t is defined)
341AC_CACHE_VAL(guile_cv_have_uint32_t,
342 [AC_TRY_COMPILE([#include <sys/types.h>
343 #include <netdb.h>],
344 [uint32_t a;],
345 guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
346AC_MSG_RESULT($guile_cv_have_uint32_t)
347if test $guile_cv_have_uint32_t = yes; then
348 AC_DEFINE(HAVE_UINT32_T)
349fi
350
351AC_MSG_CHECKING(for working IPv6 support)
352AC_CACHE_VAL(guile_cv_have_ipv6,
353[AC_TRY_COMPILE([#include <netinet/in.h>
354#include <sys/socket.h>],
355[struct sockaddr_in6 a; a.sin6_family = AF_INET6;],
356guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])
357AC_MSG_RESULT($guile_cv_have_ipv6)
358if test $guile_cv_have_ipv6 = yes; then
359 AC_DEFINE(HAVE_IPV6)
360fi
361
362# included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
363AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
364AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
365[AC_TRY_COMPILE([#include <netinet/in.h>],
366[struct sockaddr_in6 sok; sok.sin6_scope_id = 0;],
367guile_cv_have_sin6_scope_id=yes, guile_cv_have_sin6_scope_id=no)])
368AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
369if test $guile_cv_have_sin6_scope_id = yes; then
370 AC_DEFINE(HAVE_SIN6_SCOPE_ID)
371fi
372
373AC_MSG_CHECKING(whether localtime caches TZ)
374AC_CACHE_VAL(guile_cv_localtime_cache,
375[if test x$ac_cv_func_tzset = xyes; then
376AC_TRY_RUN([#include <time.h>
377#if STDC_HEADERS
378# include <stdlib.h>
379#endif
380extern char **environ;
381unset_TZ ()
382{
383 char **from, **to;
384 for (to = from = environ; (*to = *from); from++)
385 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
386 to++;
387}
388char TZ_GMT0[] = "TZ=GMT0";
389char TZ_PST8[] = "TZ=PST8";
390main()
391{
392 time_t now = time ((time_t *) 0);
393 int hour_GMT0, hour_unset;
394 if (putenv (TZ_GMT0) != 0)
395 exit (1);
396 hour_GMT0 = localtime (&now)->tm_hour;
397 unset_TZ ();
398 hour_unset = localtime (&now)->tm_hour;
399 if (putenv (TZ_PST8) != 0)
400 exit (1);
401 if (localtime (&now)->tm_hour == hour_GMT0)
402 exit (1);
403 unset_TZ ();
404 if (localtime (&now)->tm_hour != hour_unset)
405 exit (1);
406 exit (0);
407}], guile_cv_localtime_cache=no, guile_cv_localtime_cache=yes,
408[# If we have tzset, assume the worst when cross-compiling.
409guile_cv_localtime_cache=yes])
410else
411 # If we lack tzset, report that localtime does not cache TZ,
412 # since we can't invalidate the cache if we don't have tzset.
413 guile_cv_localtime_cache=no
414fi])dnl
415AC_MSG_RESULT($guile_cv_localtime_cache)
416if test $guile_cv_localtime_cache = yes; then
417 AC_DEFINE(LOCALTIME_CACHE)
418fi
419
420dnl Test whether system calls are restartable by default on the
421dnl current system. If they are not, we put a loop around every system
422dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
423dnl change from the default behaviour. On the other hand, if signals
424dnl are restartable then the loop is not installed and when libguile
425dnl initialises it also resets the behaviour of each signal to cause a
426dnl restart (in case a different runtime had a different default
427dnl behaviour for some reason: e.g., different versions of linux seem
428dnl to behave differently.)
429
430AC_SYS_RESTARTABLE_SYSCALLS
431
432if test "$enable_regex" = yes; then
433 if test "$ac_cv_header_regex_h" = yes ||
434 test "$ac_cv_header_rxposix_h" = yes ||
435 test "$ac_cv_header_rx_rxposix_h" = yes; then
436 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],
437 [AC_CHECK_LIB(rx, main)
438 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"],
439 [AC_CHECK_LIB(regex, main)
440 GUILE_NAMED_CHECK_FUNC(regcomp, regex, [LIBOBJS="regex-posix.o $LIBOBJS"])])]
441 )
442 dnl The following should not be necessary, but for some reason
443 dnl autoheader misses it if we don't include it!
444 if test "$ac_cv_func_regcomp_norx" = yes ||
445 test "$ac_cv_func_regcomp_regex" = yes ||
446 test "$ac_cv_func_regcomp_rx" = yes; then
447 AC_DEFINE(HAVE_REGCOMP)
448 fi
449 fi
450fi
451
452AC_REPLACE_FUNCS(inet_aton putenv strerror memmove mkstemp)
453
454# When testing for the presence of alloca, we need to add alloca.o
455# explicitly to LIBOBJS to make sure that it is translated to
456# `alloca.lo' for libtool later on. This can and should be done more cleanly.
457AC_FUNC_ALLOCA
458if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
459
460AC_CHECK_MEMBERS([struct stat.st_rdev])
461AC_CHECK_MEMBERS([struct stat.st_blksize])
462
463AC_STRUCT_ST_BLOCKS
464
465AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
466 [AC_TRY_CPP([#include <sys/stat.h>
467 #ifndef S_ISLNK
468 #error no S_ISLNK
469 #endif],
470 ac_cv_macro_S_ISLNK=yes,
471 ac_cv_macro_S_ISLNK=no)])
472if test $ac_cv_macro_S_ISLNK = yes; then
473 AC_DEFINE(HAVE_S_ISLNK)
474fi
475
476AC_STRUCT_TIMEZONE
477GUILE_STRUCT_UTIMBUF
478
479#--------------------------------------------------------------------
480#
481# Which way does the stack grow?
482#
483#--------------------------------------------------------------------
484
485AC_TRY_RUN(aux (l) unsigned long l;
486 { int x; exit (l >= ((unsigned long)&x)); }
487 main () { int q; aux((unsigned long)&q); },
488 AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
489
490AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
491 [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
492 [guile_cv_type_float_fits_long=yes],
493 [guile_cv_type_float_fits_long=no],
494 [guile_cv_type_float_fits_long=guess-yes])])
495case $guile_cv_type_float_fits_long in
496 "yes" )
497 AC_DEFINE(SCM_SINGLES)
498 ;;
499 "guess-yes" )
500 AC_DEFINE(SCM_SINGLES)
501 AC_MSG_WARN([guessing that sizeof(long) == sizeof(float)])
502 AC_MSG_WARN([see SCM_SINGLES in scmconfig.h.in])
503 ;;
504esac
505
506
507AC_MSG_CHECKING(for struct linger)
508AC_CACHE_VAL(scm_cv_struct_linger,
509 AC_TRY_COMPILE([
510#include <sys/types.h>
511#include <sys/socket.h>],
512 [struct linger lgr; lgr.l_linger = 100],
513 scm_cv_struct_linger="yes",
514 scm_cv_struct_linger="no"))
515AC_MSG_RESULT($scm_cv_struct_linger)
516if test $scm_cv_struct_linger = yes; then
517 AC_DEFINE(HAVE_STRUCT_LINGER)
518fi
519
520
521AC_MSG_CHECKING(for struct timespec)
522AC_CACHE_VAL(scm_cv_struct_timespec,
523 AC_TRY_COMPILE([
524#include <time.h>],
525 [struct timespec t; t.tv_nsec = 100],
526 scm_cv_struct_timespec="yes",
527 scm_cv_struct_timespec="no"))
528AC_MSG_RESULT($scm_cv_struct_timespec)
529if test $scm_cv_struct_timespec = yes; then
530 AC_DEFINE(HAVE_STRUCT_TIMESPEC)
531fi
532
533#--------------------------------------------------------------------
534#
535# Flags for thread support
536#
537#--------------------------------------------------------------------
538
539### What thread package has the user asked for?
540AC_ARG_WITH(threads, [ --with-threads thread interface],
541 , with_threads=no)
542
543### Turn $with_threads into either the name of a threads package, like
544### `qt', or `no', meaning that threads should not be supported.
545AC_MSG_CHECKING(whether to support threads)
546case "$with_threads" in
547 "yes" | "qt" | "coop" | "")
548 with_threads=qt
549 ;;
550 "no" )
551 ;;
552 * )
553 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
554 ;;
555esac
556AC_MSG_RESULT($with_threads)
557
558## Make sure the threads package we've chosen is actually supported on
559## the present platform.
560case "${with_threads}" in
561 "qt" )
562 ## This configures the QuickThreads package, and sets or clears
563 ## the THREAD_PACKAGE variable if qthreads don't configure
564 ## correctly.
565 QTHREADS_CONFIGURE
566 ;;
567esac
568
569## If we're using threads, bring in some other parts of Guile which
570## work with them.
571if test "${THREAD_PACKAGE}" != "" ; then
572 AC_DEFINE(USE_THREADS, 1)
573
574 ## Include the Guile thread interface in the library...
575 LIBOBJS="$LIBOBJS threads.o"
576
577 ## ... and tell it which package to talk to.
578 case "${THREAD_PACKAGE}" in
579 "QT" )
580 AC_DEFINE(USE_COOP_THREADS, 1)
581 ;;
582 * )
583 AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
584 ;;
585 esac
586
587 ## Bring in scm_internal_select, if appropriate.
588 if test $ac_cv_func_gettimeofday = yes &&
589 test $ac_cv_func_select = yes; then
590 AC_DEFINE(GUILE_ISELECT, 1)
591 fi
592
593 AC_ARG_ENABLE(linuxthreads,
594 [ --disable-linuxthreads disable linuxthreads workaround],,
595 enable_linuxthreads=yes)
596
597 ## Workaround for linuxthreads (optionally disabled)
598 if test $host_os = linux-gnu -a "$enable_linuxthreads" = yes; then
599 AC_DEFINE(GUILE_PTHREAD_COMPAT, 1)
600 AC_CHECK_LIB(pthread, main)
601 fi
602fi
603AC_SUBST(LIBGUILEQTHREADS_INTERFACE_CURRENT)
604AC_SUBST(LIBGUILEQTHREADS_INTERFACE_REVISION)
605AC_SUBST(LIBGUILEQTHREADS_INTERFACE_AGE)
606AC_SUBST(LIBGUILEQTHREADS_INTERFACE)
607
608## If we're using GCC, ask for aggressive warnings.
609case "$GCC" in
610 yes )
611 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
612 ## much stuff with generic function pointers for that to really be
613 ## less than exasperating.
614 ## -Wpointer-arith was here too, but something changed in gcc/glibc
615 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
616 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes" ;;
617esac
618
619AC_PROG_AWK
620
621## Remove fileblocks.o from the object list. This file gets added by
622## the Autoconf macro AC_STRUCT_ST_BLOCKS. But there is no need.
623LIBOBJS="`echo ${LIBOBJS} | sed 's/fileblocks\.o//g'`"
624
625## If we're creating a shared library (using libtool!), then we'll
626## need to generate a list of .lo files corresponding to the .o files
627## given in LIBOBJS. We'll call it LIBLOBJS.
628LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
629
630## We also need to create corresponding .doc and .x files
631EXTRA_DOT_DOC_FILES="`echo ${LIBOBJS} | sed 's/\.o/.doc/g'`"
632EXTRA_DOT_X_FILES="`echo ${LIBOBJS} | sed 's/\.o/.x/g'`"
633
634AC_SUBST(GUILE_MAJOR_VERSION)
635AC_SUBST(GUILE_MINOR_VERSION)
636AC_SUBST(GUILE_MICRO_VERSION)
637AC_SUBST(GUILE_VERSION)
638
639AC_SUBST(LIBGUILE_INTERFACE_CURRENT)
640AC_SUBST(LIBGUILE_INTERFACE_REVISION)
641AC_SUBST(LIBGUILE_INTERFACE_AGE)
642AC_SUBST(LIBGUILE_INTERFACE)
643
644dnl Tell guile-config what flags guile users should link against.
645GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
646AC_SUBST(GUILE_LIBS)
647
648AC_SUBST(AWK)
649AC_SUBST(LIBLOBJS)
650AC_SUBST(EXTRA_DOT_DOC_FILES)
651AC_SUBST(EXTRA_DOT_X_FILES)
652
653AC_CONFIG_FILES([
654 Makefile
655 libguile/Makefile
656 libguile/guile-snarf
657 libguile/guile-doc-snarf
658 libguile/guile-func-name-check
659 libguile/guile-snarf-docs
660 libguile/guile-snarf-docs-texi
661 libguile/version.h
662 ice-9/Makefile
663 oop/Makefile
664 oop/goops/Makefile
665 scripts/Makefile
666 srfi/Makefile
667 qt/Makefile
668 qt/qt.h
669 qt/md/Makefile
670 qt/time/Makefile
671 guile-config/Makefile
672 doc/Makefile
673 doc/ref/Makefile
674 doc/tutorial/Makefile
675 doc/goops/Makefile
676 doc/r5rs/Makefile
677 examples/Makefile
678 examples/scripts/Makefile
679 examples/box/Makefile
680 examples/box-module/Makefile
681 examples/box-dynamic/Makefile
682 examples/box-dynamic-module/Makefile
683 examples/modules/Makefile
684 examples/safe/Makefile
685 test-suite/Makefile
686 check-guile
687 guile-tools])
688
689AC_CONFIG_COMMANDS(default,
690 [ chmod +x libguile/guile-snarf \
691 libguile/guile-doc-snarf \
692 libguile/guile-func-name-check \
693 libguile/guile-snarf-docs \
694 libguile/guile-snarf-docs-texi \
695 check-guile \
696 guile-tools])
697
698AC_OUTPUT
699
700dnl Local Variables:
701dnl comment-start: "dnl "
702dnl comment-end: ""
703dnl comment-start-skip: "\\bdnl\\b\\s *"
704dnl End: