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