(scm_hasher): Use SCM_UNPACK in the case labels so that
[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
237b3247
RB
23AC_PREREQ(2.50)
24
25AC_INIT
26AC_CONFIG_SRCDIR([Makefile.in])
2d26def0 27. $srcdir/GUILE-VERSION
3a629497 28AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
15ae1bee 29AM_MAINTAINER_MODE
3a629497 30AM_CONFIG_HEADER(libguile/scmconfig.h)
2d26def0 31
3a629497 32#--------------------------------------------------------------------
0e8a8468
MV
33#
34# Independent Subdirectories
35#
36#--------------------------------------------------------------------
37
38AC_CONFIG_SUBDIRS(guile-readline)
39
40#--------------------------------------------------------------------
3a629497
JB
41#
42# User options
43#
44#--------------------------------------------------------------------
86789f9b 45
52b3923a 46AC_ARG_ENABLE(debug-freelist,
e73dd549 47 [ --enable-debug-freelist include garbage collector freelist debugging code],
52b3923a 48 if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
fca7547b 49 AC_DEFINE(GUILE_DEBUG_FREELIST)
52b3923a
GB
50 fi)
51
cf890744 52AC_ARG_ENABLE(debug-malloc,
e73dd549 53 [ --enable-debug-malloc include malloc debugging code],
cf890744
MD
54 if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
55 AC_DEFINE(GUILE_DEBUG_MALLOC)
56 fi)
57
62002dcb
MD
58AC_ARG_ENABLE(guile-debug,
59 [ --enable-guile-debug include internal debugging functions],
60 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
61 AC_DEFINE(GUILE_DEBUG)
62 fi)
63
afe5177e
GH
64AC_ARG_ENABLE(arrays,
65 [ --disable-arrays omit array and uniform array support],,
66 enable_arrays=yes)
67
52cfc69b
GH
68AC_ARG_ENABLE(posix,
69 [ --disable-posix omit posix interfaces],,
70 enable_posix=yes)
71
72AC_ARG_ENABLE(networking,
dc914156 73 [ --disable-networking omit networking interfaces],,
52cfc69b
GH
74 enable_networking=yes)
75
76AC_ARG_ENABLE(regex,
77 [ --disable-regex omit regular expression interfaces],,
78 enable_regex=yes)
79
fff043ab
NJ
80AC_ARG_ENABLE(htmldoc,
81 [ --enable-htmldoc build HTML documentation as well as Info],
82 [if test "$enable_htmldoc" = "" || test "$enable_htmldoc" = y || test "$enable_htmldoc" = yes; then
83 htmldoc_enabled=yes
84 AC_PATH_PROG(TEXI2HTML, texi2html, not found)
85 if test "$TEXI2HTML" = "not found"; then
86 echo
87 echo Building HTML documentation requires the \`texi2html\' program,
88 echo which appears not to be present on your machine.
89 echo
90 echo \`texi2html\' is available from
91 echo 'http://www.mathematik.uni-kl.de/~obachman/Texi2html/.'
92 echo
93 echo In the meantime, to build the guile-doc distribution
94 echo without HTML enabled, please rerun \`./configure\' without
95 echo the \`--enable-htmldoc\' option.
96 exit -1
97 fi
98 fi])
99
100AM_CONDITIONAL(HTMLDOC, test x$htmldoc_enabled = xyes)
101
e73dd549
MV
102AC_ARG_ENABLE(deprecated,
103 [ --disable-deprecated omit deprecated features [no]])
104
105if test "$enable_deprecated" = no; then
5cd06d5e 106 AC_DEFINE(SCM_DEBUG_DEPRECATED, 1)
e73dd549
MV
107else
108 if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
94a0d885
MV
109 warn_default=summary
110 elif test "$enable_deprecated" = shutup; then
111 warn_default=no
112 else
113 warn_default=$enable_deprecated
e73dd549 114 fi
5cd06d5e 115 AC_DEFINE(SCM_DEBUG_DEPRECATED, 0)
887dfa7d 116 AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default")
e73dd549
MV
117fi
118
c176b92b
JB
119dnl The --disable-debug used to control these two. But now they are
120dnl a required part of the distribution.
121AC_DEFINE(DEBUG_EXTENSIONS)
122AC_DEFINE(READER_EXTENSIONS)
123
52cfc69b
GH
124dnl files which are destined for separate modules.
125
afe5177e
GH
126if test "$enable_arrays" = yes; then
127 LIBOBJS="$LIBOBJS ramap.o unif.o"
128 AC_DEFINE(HAVE_ARRAYS)
129fi
130
52cfc69b
GH
131if test "$enable_posix" = yes; then
132 LIBOBJS="$LIBOBJS filesys.o posix.o"
133 AC_DEFINE(HAVE_POSIX)
134fi
135
136if test "$enable_networking" = yes; then
137 LIBOBJS="$LIBOBJS net_db.o socket.o"
138 AC_DEFINE(HAVE_NETWORKING)
139fi
140
cf890744
MD
141if test "$enable_debug_malloc" = yes; then
142 LIBOBJS="$LIBOBJS debug-malloc.o"
143fi
144
3a629497
JB
145#--------------------------------------------------------------------
146
b7f27d64
MV
147AC_LIBLTDL_CONVENIENCE
148AC_CONFIG_SUBDIRS(libltdl)
149
3a629497
JB
150AC_PROG_CC
151AC_PROG_CPP
b7f27d64 152AC_LIBTOOL_DLOPEN
3a629497
JB
153
154AC_AIX
155AC_ISC_POSIX
156AC_MINIX
157
e40ffcb6 158AM_PROG_CC_STDC
9da7f717 159AM_PROG_LIBTOOL
e40ffcb6 160
3a629497 161AC_C_CONST
5e9345c3 162AC_C_INLINE
5b079b46
GH
163AC_C_BIGENDIAN
164
9dec9737
MD
165AC_CHECK_SIZEOF(int)
166AC_CHECK_SIZEOF(long)
1be6b49c
ML
167
168dnl by the pre C9X ANSI C standards, size_t & ptrdiff_t have to be
169dnl representable by a standard integral type. since the largest
170dnl integer type in the pre-C9X ANSI C standards is long...
171AC_CHECK_TYPE(ptrdiff_t, long)
172
9dec9737
MD
173AC_CACHE_CHECK([for long longs], scm_cv_long_longs,
174 AC_TRY_COMPILE(,
175 [long long a],
176 scm_cv_long_longs=yes,
177 scm_cv_long_longs=no))
178if test "$scm_cv_long_longs" = yes; then
179 AC_DEFINE(HAVE_LONG_LONGS)
1be6b49c
ML
180 AC_CHECK_SIZEOF(long long)
181fi
182
183AC_CHECK_SIZEOF(void *)
184
f3f70257
ML
185if test "$ac_cv_sizeof_long" -ne "$ac_cv_sizeof_void_p"; then
186 AC_MSG_ERROR(sizes of long and void* are not identical)
9dec9737 187fi
3a629497
JB
188
189AC_HEADER_STDC
190AC_HEADER_DIRENT
191AC_HEADER_TIME
192AC_HEADER_SYS_WAIT
1be6b49c 193AC_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)
3a629497
JB
194GUILE_HEADER_LIBC_WITH_UNISTD
195
196AC_TYPE_GETGROUPS
197AC_TYPE_SIGNAL
198AC_TYPE_MODE_T
199
5852c051 200AC_CHECK_LIB(m, main)
4c787b52 201AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
202if test $ac_cv_func_gethostbyname = no; then
203 AC_CHECK_LIB(nsl, gethostbyname)
204fi
4c787b52 205AC_CHECK_FUNCS(connect)
5852c051
JB
206if test $ac_cv_func_connect = no; then
207 AC_CHECK_LIB(socket, connect)
208fi
5ee74cec 209
b7f27d64 210# Check for dynamic linking
5852c051 211
b7f27d64
MV
212use_modules=yes
213AC_ARG_WITH(modules,
214[ --with-modules[=FILES] Add support for dynamic modules],
215use_modules="$withval")
216test -z "$use_modules" && use_modules=yes
217DLPREOPEN=
218if test "$use_modules" != no; then
a4995389 219 AC_DEFINE(DYNAMIC_LINKING)
b7f27d64
MV
220 if test "$use_modules" = yes; then
221 DLPREOPEN="-dlpreopen force"
222 else
223 DLPREOPEN="-export-dynamic"
224 for module in $use_modules; do
225 DLPREOPEN="$DLPREOPEN -dlopen $module"
226 done
227 fi
a4995389 228fi
b7f27d64
MV
229AC_SUBST(INCLTDL)
230AC_SUBST(LIBLTDL)
231AC_SUBST(DLPREOPEN)
5852c051 232
f22ed5a0 233AC_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)
64e121dc 234
94e6d793
MG
235AC_CHECK_HEADERS(crypt.h sys/resource.h sys/file.h)
236AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
237AC_CHECK_LIB(crypt, crypt)
238
777b022a
JB
239### Some systems don't declare some functions. On such systems, we
240### need to at least provide our own K&R-style declarations.
241
242### GUILE_FUNC_DECLARED(function, headerfile)
243
244### Check for a declaration of FUNCTION in HEADERFILE; if it is
245### not there, #define MISSING_FUNCTION_DECL.
246AC_DEFUN(GUILE_FUNC_DECLARED, [
fc342a63 247 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 248 AC_EGREP_HEADER($1, $2,
01e5e07e 249 guile_cv_func_$1_declared=yes,
fc342a63
JB
250 guile_cv_func_$1_declared=no))
251 if test [x$guile_cv_func_]$1[_declared] = xno; then
777b022a
JB
252 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])
253 fi
254])
255
256GUILE_FUNC_DECLARED(strptime, time.h)
c31bfb85 257GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 258GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 259
da753252
JB
260### On some systems usleep has no return value. If it does have one,
261### we'd like to return it; otherwise, we'll fake it.
fc342a63 262AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
c43f86c1 263 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
fc342a63
JB
264 /usr/include/unistd.h,
265 [guile_cv_func_usleep_return_type=void],
266 [guile_cv_func_usleep_return_type=int])])
267case "$guile_cv_func_usleep_return_type" in
268 "void" )
269 AC_DEFINE(USLEEP_RETURNS_VOID)
270 ;;
271esac
272
da88f0cb
JB
273AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
274if test -n "$have_sys_un_h" ; then
275AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)
276fi
277
278AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
279
219a5a5b
JB
280AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
281 setnetent getnetent endnetent dnl
282 setprotoent getprotoent endprotoent dnl
283 setservent getservent endservent dnl
5c11cc9d 284 getnetbyaddr getnetbyname dnl
2a0ef8b7
GH
285 inet_lnaof inet_makeaddr inet_netof hstrerror dnl
286 inet_pton inet_ntop)
da88f0cb 287
08f980a4
GH
288dnl Some systems do not declare this. Some systems do declare it, as a
289dnl macro. With cygwin it may be in a DLL.
290
291AC_MSG_CHECKING(whether netdb.h declares h_errno)
292AC_CACHE_VAL(guile_cv_have_h_errno,
293[AC_TRY_COMPILE([#include <netdb.h>],
294[int a = h_errno;],
295guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])
296AC_MSG_RESULT($guile_cv_have_h_errno)
297if test $guile_cv_have_h_errno = yes; then
298 AC_DEFINE(HAVE_H_ERRNO)
299fi
da88f0cb 300
c5316ea3
GH
301AC_MSG_CHECKING(whether netdb.h defines uint32_t)
302AC_CACHE_VAL(guile_cv_have_uint32_t,
303[AC_TRY_COMPILE([#include <netdb.h>],
304[uint32_t a;],
305guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
306AC_MSG_RESULT($guile_cv_have_uint32_t)
307if test $guile_cv_have_uint32_t = yes; then
308 AC_DEFINE(HAVE_UINT32_T)
309fi
310
018a53a1
GH
311AC_MSG_CHECKING(for working IPv6 support)
312AC_CACHE_VAL(guile_cv_have_ipv6,
b6f04d92
GH
313[AC_TRY_COMPILE([#include <netinet/in.h>
314#include <sys/socket.h>],
018a53a1
GH
315[struct sockaddr_in6 a; a.sin6_family = AF_INET6;],
316guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])
317AC_MSG_RESULT($guile_cv_have_ipv6)
318if test $guile_cv_have_ipv6 = yes; then
319 AC_DEFINE(HAVE_IPV6)
320fi
321
67641981
GH
322# included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
323AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
324AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
325[AC_TRY_COMPILE([#include <netinet/in.h>],
326[struct sockaddr_in6 sok; sok.sin6_scope_id = 0;],
327guile_cv_have_sin6_scope_id=yes, guile_cv_have_sin6_scope_id=no)])
328AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
329if test $guile_cv_have_sin6_scope_id = yes; then
330 AC_DEFINE(HAVE_SIN6_SCOPE_ID)
331fi
332
38c1d3c4
GH
333AC_MSG_CHECKING(whether localtime caches TZ)
334AC_CACHE_VAL(guile_cv_localtime_cache,
335[if test x$ac_cv_func_tzset = xyes; then
336AC_TRY_RUN([#include <time.h>
337#if STDC_HEADERS
338# include <stdlib.h>
339#endif
340extern char **environ;
341unset_TZ ()
342{
343 char **from, **to;
344 for (to = from = environ; (*to = *from); from++)
345 if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
346 to++;
347}
348char TZ_GMT0[] = "TZ=GMT0";
349char TZ_PST8[] = "TZ=PST8";
350main()
351{
352 time_t now = time ((time_t *) 0);
353 int hour_GMT0, hour_unset;
354 if (putenv (TZ_GMT0) != 0)
355 exit (1);
356 hour_GMT0 = localtime (&now)->tm_hour;
357 unset_TZ ();
358 hour_unset = localtime (&now)->tm_hour;
359 if (putenv (TZ_PST8) != 0)
360 exit (1);
361 if (localtime (&now)->tm_hour == hour_GMT0)
362 exit (1);
363 unset_TZ ();
364 if (localtime (&now)->tm_hour != hour_unset)
365 exit (1);
366 exit (0);
367}], guile_cv_localtime_cache=no, guile_cv_localtime_cache=yes,
368[# If we have tzset, assume the worst when cross-compiling.
369guile_cv_localtime_cache=yes])
370else
371 # If we lack tzset, report that localtime does not cache TZ,
372 # since we can't invalidate the cache if we don't have tzset.
373 guile_cv_localtime_cache=no
374fi])dnl
375AC_MSG_RESULT($guile_cv_localtime_cache)
376if test $guile_cv_localtime_cache = yes; then
377 AC_DEFINE(LOCALTIME_CACHE)
378fi
379
7ee92fce
GH
380dnl Test whether system calls are restartable by default on the
381dnl current system. If they are not, we put a loop around every system
382dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
383dnl change from the default behaviour. On the other hand, if signals
384dnl are restartable then the loop is not installed and when libguile
385dnl initialises it also resets the behaviour of each signal to cause a
386dnl restart (in case a different runtime had a different default
387dnl behaviour for some reason: e.g., different versions of linux seem
388dnl to behave differently.)
389
08b8c694 390AC_SYS_RESTARTABLE_SYSCALLS
e1a191a8 391
52cfc69b
GH
392if test "$enable_regex" = yes; then
393 if test "$ac_cv_header_regex_h" = yes ||
394 test "$ac_cv_header_rxposix_h" = yes ||
395 test "$ac_cv_header_rx_rxposix_h" = yes; then
396 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],
397 [AC_CHECK_LIB(rx, main)
398 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"])]
399 )
400 dnl The following should not be necessary, but for some reason
401 dnl autoheader misses it if we don't include it!
402 if test "$ac_cv_func_regcomp_norx" = yes ||
403 test "$ac_cv_func_regcomp_rx" = yes; then
404 AC_DEFINE(HAVE_REGCOMP)
405 fi
406 fi
da88f0cb 407fi
8e1bfcd0 408
5bbfbd1e 409AC_REPLACE_FUNCS(inet_aton putenv strerror memmove mkstemp)
3a629497 410
4a5fa91c
TP
411# When testing for the presence of alloca, we need to add alloca.o
412# explicitly to LIBOBJS to make sure that it is translated to
413# `alloca.lo' for libtool later on. This can and should be done more cleanly.
3a629497 414AC_FUNC_ALLOCA
4a5fa91c 415if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
3a629497 416
237b3247
RB
417AC_CHECK_MEMBERS([struct stat.st_rdev])
418AC_CHECK_MEMBERS([struct stat.st_blksize])
419
420AC_STRUCT_ST_BLOCKS
075edbde 421
fd02f2ad
MD
422AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
423 [AC_TRY_CPP([#include <sys/stat.h>
424 #ifndef S_ISLNK
425 #error no S_ISLNK
426 #endif],
427 ac_cv_macro_S_ISLNK=yes,
428 ac_cv_macro_S_ISLNK=no)])
429if test $ac_cv_macro_S_ISLNK = yes; then
430 AC_DEFINE(HAVE_S_ISLNK)
431fi
432
3a629497
JB
433AC_STRUCT_TIMEZONE
434GUILE_STRUCT_UTIMBUF
435
3a629497
JB
436#--------------------------------------------------------------------
437#
438# Which way does the stack grow?
439#
440#--------------------------------------------------------------------
441
442AC_TRY_RUN(aux (l) unsigned long l;
443 { int x; exit (l >= ((unsigned long)&x)); }
01e5e07e 444 main () { int q; aux((unsigned long)&q); },
3a629497
JB
445 AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
446
3a171311
JB
447AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
448 [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
449 [guile_cv_type_float_fits_long=yes],
450 [guile_cv_type_float_fits_long=no],
451 [guile_cv_type_float_fits_long=guess-yes])])
452case $guile_cv_type_float_fits_long in
453 "yes" )
454 AC_DEFINE(SCM_SINGLES)
455 ;;
456 "guess-yes" )
457 AC_DEFINE(SCM_SINGLES)
458 AC_MSG_WARN([guessing that sizeof(long) == sizeof(float)])
459 AC_MSG_WARN([see SCM_SINGLES in scmconfig.h.in])
460 ;;
461esac
3a629497 462
3a629497
JB
463
464AC_MSG_CHECKING(for struct linger)
465AC_CACHE_VAL(scm_cv_struct_linger,
466 AC_TRY_COMPILE([
467#include <sys/types.h>
468#include <sys/socket.h>],
469 [struct linger lgr; lgr.l_linger = 100],
470 scm_cv_struct_linger="yes",
471 scm_cv_struct_linger="no"))
472AC_MSG_RESULT($scm_cv_struct_linger)
473if test $scm_cv_struct_linger = yes; then
474 AC_DEFINE(HAVE_STRUCT_LINGER)
475fi
3a629497 476
7534dfdc
MD
477
478AC_MSG_CHECKING(for struct timespec)
479AC_CACHE_VAL(scm_cv_struct_timespec,
480 AC_TRY_COMPILE([
481#include <time.h>],
482 [struct timespec t; t.tv_nsec = 100],
483 scm_cv_struct_timespec="yes",
484 scm_cv_struct_timespec="no"))
485AC_MSG_RESULT($scm_cv_struct_timespec)
486if test $scm_cv_struct_timespec = yes; then
487 AC_DEFINE(HAVE_STRUCT_TIMESPEC)
488fi
489
3a629497
JB
490#--------------------------------------------------------------------
491#
492# Flags for thread support
493#
494#--------------------------------------------------------------------
495
539c89a1
JB
496### What thread package has the user asked for?
497AC_ARG_WITH(threads, [ --with-threads thread interface],
498 , with_threads=no)
499
500### Turn $with_threads into either the name of a threads package, like
501### `qt', or `no', meaning that threads should not be supported.
e0f54bcc 502AC_MSG_CHECKING(whether to support threads)
539c89a1
JB
503case "$with_threads" in
504 "yes" | "qt" | "coop" | "")
505 with_threads=qt
506 ;;
507 "no" )
508 ;;
509 * )
510 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
511 ;;
512esac
e0f54bcc 513AC_MSG_RESULT($with_threads)
3a629497 514
539c89a1
JB
515## Make sure the threads package we've chosen is actually supported on
516## the present platform.
517case "${with_threads}" in
518 "qt" )
519 ## This configures the QuickThreads package, and sets or clears
520 ## the THREAD_PACKAGE variable if qthreads don't configure
521 ## correctly.
522 QTHREADS_CONFIGURE
523 ;;
524esac
3a629497 525
539c89a1
JB
526## If we're using threads, bring in some other parts of Guile which
527## work with them.
528if test "${THREAD_PACKAGE}" != "" ; then
529 AC_DEFINE(USE_THREADS, 1)
3a629497 530
539c89a1
JB
531 ## Include the Guile thread interface in the library...
532 LIBOBJS="$LIBOBJS threads.o"
933a7411 533
539c89a1
JB
534 ## ... and tell it which package to talk to.
535 case "${THREAD_PACKAGE}" in
536 "QT" )
537 AC_DEFINE(USE_COOP_THREADS, 1)
538 ;;
539 * )
540 AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
541 ;;
542 esac
543
544 ## Bring in scm_internal_select, if appropriate.
545 if test $ac_cv_func_gettimeofday = yes &&
546 test $ac_cv_func_select = yes; then
539c89a1
JB
547 AC_DEFINE(GUILE_ISELECT, 1)
548 fi
ed65453e
MD
549
550 ## Workaround for linuxthreads (currently disabled)
e4d2166f
MD
551 if test $host_os = linux-gnu; then
552 AC_DEFINE(GUILE_PTHREAD_COMPAT, 1)
553 AC_CHECK_LIB(pthread, main)
554 fi
933a7411 555fi
0da6608d
DH
556AC_SUBST(LIBGUILEQTHREADS_MAJOR_VERSION)
557AC_SUBST(LIBGUILEQTHREADS_MINOR_VERSION)
558AC_SUBST(LIBGUILEQTHREADS_REVISION_VERSION)
559AC_SUBST(LIBGUILEQTHREADS_VERSION)
933a7411 560
3a629497
JB
561## If we're using GCC, ask for aggressive warnings.
562case "$GCC" in
99be3450 563 yes )
0a1b8b15
JB
564 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
565 ## much stuff with generic function pointers for that to really be
566 ## less than exasperating.
aee8ca3f
GH
567 ## -Wpointer-arith was here too, but something changed in gcc/glibc
568 ## and it became equally exasperating (gcc 2.95 and/or glibc 2.1.2).
569 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes" ;;
3a629497
JB
570esac
571
572AC_PROG_AWK
573
574## If we're creating a shared library (using libtool!), then we'll
575## need to generate a list of .lo files corresponding to the .o files
576## given in LIBOBJS. We'll call it LIBLOBJS.
577LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
578
e9e225e5 579## We also need to create corresponding .doc and .x files
91411868 580EXTRA_DOT_DOC_FILES="`echo ${LIBOBJS} | sed 's/\.o/.doc/g'`"
e9e225e5 581EXTRA_DOT_X_FILES="`echo ${LIBOBJS} | sed 's/\.o/.x/g'`"
91411868 582
7c86ae05
JB
583AC_SUBST(GUILE_MAJOR_VERSION)
584AC_SUBST(GUILE_MINOR_VERSION)
df4a8db0 585AC_SUBST(GUILE_MICRO_VERSION)
7c86ae05 586AC_SUBST(GUILE_VERSION)
3ff0d90a
CB
587AC_SUBST(LIBGUILE_MAJOR_VERSION)
588AC_SUBST(LIBGUILE_MINOR_VERSION)
589AC_SUBST(LIBGUILE_REVISION_VERSION)
590AC_SUBST(LIBGUILE_VERSION)
539c89a1 591
bcc695e3 592dnl Tell guile-config what flags guile users should link against.
539c89a1 593GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
daa4f38c 594AC_SUBST(GUILE_LIBS)
7c86ae05 595
3a629497
JB
596AC_SUBST(AWK)
597AC_SUBST(LIBLOBJS)
91411868 598AC_SUBST(EXTRA_DOT_DOC_FILES)
e9e225e5 599AC_SUBST(EXTRA_DOT_X_FILES)
3a629497 600
237b3247
RB
601AC_CONFIG_FILES([
602 Makefile
603 libguile/Makefile
1e4be672 604 libguile/guile-snarf
237b3247
RB
605 libguile/guile-doc-snarf
606 libguile/guile-func-name-check
607 libguile/guile-snarf-docs
608 libguile/guile-snarf-docs-texi
609 libguile/versiondat.h
610 ice-9/Makefile
611 oop/Makefile
612 oop/goops/Makefile
613 scripts/Makefile
614 srfi/Makefile
615 qt/Makefile
616 qt/qt.h
617 qt/md/Makefile
618 qt/time/Makefile
619 guile-config/Makefile
620 doc/Makefile
621 examples/Makefile
622 examples/scripts/Makefile
623 examples/box/Makefile
624 examples/box-module/Makefile
625 examples/box-dynamic/Makefile
626 examples/modules/Makefile
627 examples/safe/Makefile
628 check-guile
629 guile-tools])
630
631AC_CONFIG_COMMANDS(default,
1e4be672
MV
632 [ chmod +x libguile/guile-snarf \
633 libguile/guile-doc-snarf \
237b3247
RB
634 libguile/guile-func-name-check \
635 libguile/guile-snarf-docs \
636 libguile/guile-snarf-docs-texi \
637 check-guile \
638 guile-tools])
639
640AC_OUTPUT
0f2d19dd 641
3a629497
JB
642dnl Local Variables:
643dnl comment-start: "dnl "
644dnl comment-end: ""
645dnl comment-start-skip: "\\bdnl\\b\\s *"
d67c13f6 646dnl End: