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