Add insults.
[bpt/guile.git] / configure.in
CommitLineData
777b022a
JB
1dnl configuration script for Guile
2dnl Process this file with autoconf to produce configure.
50848747 3dnl
2adc1dd3 4dnl Copyright (C) 1998, 1999 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
3a629497 43AC_ARG_ENABLE(dynamic-linking,
af8865f7
JB
44 [ --enable-dynamic-linking Include support for dynamic linking],,
45 enable_dynamic_linking=yes)
3a629497
JB
46
47AC_ARG_ENABLE(guile-debug,
7a11a87c
MD
48 [ --enable-guile-debug Include internal debugging functions],
49 if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
50 AC_DEFINE(GUILE_DEBUG)
51 fi)
52
c176b92b
JB
53dnl The --disable-debug used to control these two. But now they are
54dnl a required part of the distribution.
55AC_DEFINE(DEBUG_EXTENSIONS)
56AC_DEFINE(READER_EXTENSIONS)
57
3a629497
JB
58#--------------------------------------------------------------------
59
60AC_PROG_CC
61AC_PROG_CPP
62AM_PROG_LIBTOOL
63
64AC_AIX
65AC_ISC_POSIX
66AC_MINIX
67
e40ffcb6
JB
68AM_PROG_CC_STDC
69
3a629497 70AC_C_CONST
5e9345c3 71AC_C_INLINE
9dec9737
MD
72AC_CHECK_SIZEOF(int)
73AC_CHECK_SIZEOF(long)
74AC_CACHE_CHECK([for long longs], scm_cv_long_longs,
75 AC_TRY_COMPILE(,
76 [long long a],
77 scm_cv_long_longs=yes,
78 scm_cv_long_longs=no))
79if test "$scm_cv_long_longs" = yes; then
80 AC_DEFINE(HAVE_LONG_LONGS)
81fi
3a629497
JB
82
83AC_HEADER_STDC
84AC_HEADER_DIRENT
85AC_HEADER_TIME
86AC_HEADER_SYS_WAIT
2adc1dd3 87AC_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
88GUILE_HEADER_LIBC_WITH_UNISTD
89
90AC_TYPE_GETGROUPS
91AC_TYPE_SIGNAL
92AC_TYPE_MODE_T
93
5852c051 94AC_CHECK_LIB(m, main)
4c787b52 95AC_CHECK_FUNCS(gethostbyname)
5852c051
JB
96if test $ac_cv_func_gethostbyname = no; then
97 AC_CHECK_LIB(nsl, gethostbyname)
98fi
4c787b52 99AC_CHECK_FUNCS(connect)
5852c051
JB
100if test $ac_cv_func_connect = no; then
101 AC_CHECK_LIB(socket, connect)
102fi
5ee74cec 103
90fcac06
JB
104# Checks for dynamic linking
105
5852c051
JB
106if test "$enable_dynamic_linking" = "yes"; then
107
108AC_CHECK_LIB(dl,dlopen)
109if test "$ac_cv_lib_dl_dlopen" = "yes"; then
4c787b52 110 AC_CHECK_FUNCS(dlopen)
5852c051
JB
111 AC_DEFINE(DYNAMIC_LINKING)
112else
113AC_CHECK_LIB(dld,dld_link)
114if test "$ac_cv_lib_dld_dld_link" = "yes"; then
5852c051
JB
115 AC_DEFINE(DYNAMIC_LINKING)
116else
4c787b52 117AC_CHECK_FUNCS(shl_load)
5852c051
JB
118if test "$ac_cv_func_shl_load" = "yes"; then
119 AC_DEFINE(DYNAMIC_LINKING)
a4995389 120else
4c787b52 121AC_CHECK_FUNCS(dlopen)
a4995389
MV
122if test "$ac_cv_func_dlopen" = "yes"; then
123 AC_DEFINE(DYNAMIC_LINKING)
124fi
5852c051
JB
125fi
126fi
127fi
128
129fi
130
2a0d7176 131GUILE_DLSYM_USCORE
5852c051 132
7ee92fce 133AC_CHECK_FUNCS(ctermid ftime 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)
64e121dc 134
777b022a
JB
135### Some systems don't declare some functions. On such systems, we
136### need to at least provide our own K&R-style declarations.
137
138### GUILE_FUNC_DECLARED(function, headerfile)
139
140### Check for a declaration of FUNCTION in HEADERFILE; if it is
141### not there, #define MISSING_FUNCTION_DECL.
142AC_DEFUN(GUILE_FUNC_DECLARED, [
fc342a63 143 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
777b022a 144 AC_EGREP_HEADER($1, $2,
fc342a63
JB
145 guile_cv_func_$1_declared=yes,
146 guile_cv_func_$1_declared=no))
147 if test [x$guile_cv_func_]$1[_declared] = xno; then
777b022a
JB
148 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])
149 fi
150])
151
152GUILE_FUNC_DECLARED(strptime, time.h)
153GUILE_FUNC_DECLARED(bzero, string.h)
c31bfb85 154GUILE_FUNC_DECLARED(sleep, unistd.h)
777b022a 155GUILE_FUNC_DECLARED(usleep, unistd.h)
e1a191a8 156
da753252
JB
157### On some systems usleep has no return value. If it does have one,
158### we'd like to return it; otherwise, we'll fake it.
fc342a63 159AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
c43f86c1 160 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
fc342a63
JB
161 /usr/include/unistd.h,
162 [guile_cv_func_usleep_return_type=void],
163 [guile_cv_func_usleep_return_type=int])])
164case "$guile_cv_func_usleep_return_type" in
165 "void" )
166 AC_DEFINE(USLEEP_RETURNS_VOID)
167 ;;
168esac
169
da88f0cb
JB
170dnl <GNU-WIN32 hacks>
171
172AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
173if test -n "$have_sys_un_h" ; then
174AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)
175fi
176
177AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
178
f4e5b810
GH
179dnl I don't know what this prefixing of cygwin32_ is for.
180dnl scmconfig.h wasn't updated with the test results.
181dnl so use AC_CHECK_FUNCS for now.
182
183dnl how about:
184dnl save confdefs.h
185dnl if test $ac_cv_cigwin = yes; then
186dnl modify confdefs.h
187dnl fi
188dnl AC_CHECK_FUNCS...
189dnl restore confdefs.h
190
191dnl cp confdefs.h confdefs.h.bak
219a5a5b 192dnl for func in gethostent sethostent endhostent getnetent setnetent endnetent getprotoent setprotoent endprotoent getservent setservent endservent getnetbyaddr getnetbyname inet_lnaof inet_makeaddr inet_netof ; do
f4e5b810
GH
193dnl cp confdefs.h.bak confdefs.h
194dnl cat >> confdefs.h << EOF
195dnl #ifdef __CYGWIN32__
196dnl #define $func cygwin32_$func
197dnl #endif
198dnl EOF
199dnl AC_CHECK_FUNC($func)
200dnl done
201dnl cp confdefs.h.bak confdefs.h
202
219a5a5b
JB
203AC_CHECK_FUNCS(sethostent gethostent endhostent dnl
204 setnetent getnetent endnetent dnl
205 setprotoent getprotoent endprotoent dnl
206 setservent getservent endservent dnl
207 getnetbyaddr getnetbyname inet_lnaof inet_makeaddr inet_netof)
da88f0cb
JB
208
209dnl </GNU-WIN32 hacks>
210
7ee92fce
GH
211dnl Test whether system calls are restartable by default on the
212dnl current system. If they are not, we put a loop around every system
213dnl call to check for EINTR (see SCM_SYSCALL) and do not attempt to
214dnl change from the default behaviour. On the other hand, if signals
215dnl are restartable then the loop is not installed and when libguile
216dnl initialises it also resets the behaviour of each signal to cause a
217dnl restart (in case a different runtime had a different default
218dnl behaviour for some reason: e.g., different versions of linux seem
219dnl to behave differently.)
220
08b8c694 221AC_SYS_RESTARTABLE_SYSCALLS
e1a191a8 222
e9cd5d2f
MD
223if test "$ac_cv_header_regex_h" = yes ||
224 test "$ac_cv_header_rxposix_h" = yes ||
225 test "$ac_cv_header_rx_rxposix_h" = yes; then
0b89e78e
MD
226 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],
227 [AC_CHECK_LIB(rx, main)
228 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"])]
229 )
e9cd5d2f
MD
230 dnl The following should not be necessary, but for some reason
231 dnl autoheader misses it if we don't include it!
0b89e78e
MD
232 if test "$ac_cv_func_regcomp_norx" = yes ||
233 test "$ac_cv_func_regcomp_rx" = yes; then
e9cd5d2f
MD
234 AC_DEFINE(HAVE_REGCOMP)
235 fi
da88f0cb 236fi
8e1bfcd0 237
dbbbec40 238AC_REPLACE_FUNCS(inet_aton putenv strerror memmove)
3a629497 239
4a5fa91c
TP
240# When testing for the presence of alloca, we need to add alloca.o
241# explicitly to LIBOBJS to make sure that it is translated to
242# `alloca.lo' for libtool later on. This can and should be done more cleanly.
3a629497 243AC_FUNC_ALLOCA
4a5fa91c 244if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
3a629497
JB
245
246AC_STRUCT_ST_RDEV
247AC_STRUCT_ST_BLKSIZE
075edbde
JB
248
249# We could use AC_STRUCT_ST_BLOCKS here, but that adds fileblocks.o to
250# LIBOBJS, which we don't need. This seems more direct.
251AC_CACHE_CHECK([for st_blocks in struct stat], ac_cv_struct_st_blocks,
252[AC_TRY_COMPILE([#include <sys/types.h>
253#include <sys/stat.h>], [struct stat s; s.st_blocks;],
254ac_cv_struct_st_blocks=yes, ac_cv_struct_st_blocks=no)])
255if test $ac_cv_struct_st_blocks = yes; then
256 AC_DEFINE(HAVE_ST_BLOCKS)
257fi
258
fd02f2ad
MD
259AC_CACHE_CHECK([for S_ISLNK in sys/stat.h], ac_cv_macro_S_ISLNK,
260 [AC_TRY_CPP([#include <sys/stat.h>
261 #ifndef S_ISLNK
262 #error no S_ISLNK
263 #endif],
264 ac_cv_macro_S_ISLNK=yes,
265 ac_cv_macro_S_ISLNK=no)])
266if test $ac_cv_macro_S_ISLNK = yes; then
267 AC_DEFINE(HAVE_S_ISLNK)
268fi
269
3a629497
JB
270AC_STRUCT_TIMEZONE
271GUILE_STRUCT_UTIMBUF
272
3a629497
JB
273#--------------------------------------------------------------------
274#
275# Which way does the stack grow?
276#
277#--------------------------------------------------------------------
278
279AC_TRY_RUN(aux (l) unsigned long l;
280 { int x; exit (l >= ((unsigned long)&x)); }
281 main () { int q; aux((unsigned long)&q); },
282 AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
283
3a171311
JB
284AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
285 [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
286 [guile_cv_type_float_fits_long=yes],
287 [guile_cv_type_float_fits_long=no],
288 [guile_cv_type_float_fits_long=guess-yes])])
289case $guile_cv_type_float_fits_long in
290 "yes" )
291 AC_DEFINE(SCM_SINGLES)
292 ;;
293 "guess-yes" )
294 AC_DEFINE(SCM_SINGLES)
295 AC_MSG_WARN([guessing that sizeof(long) == sizeof(float)])
296 AC_MSG_WARN([see SCM_SINGLES in scmconfig.h.in])
297 ;;
298esac
3a629497 299
3a629497
JB
300
301AC_MSG_CHECKING(for struct linger)
302AC_CACHE_VAL(scm_cv_struct_linger,
303 AC_TRY_COMPILE([
304#include <sys/types.h>
305#include <sys/socket.h>],
306 [struct linger lgr; lgr.l_linger = 100],
307 scm_cv_struct_linger="yes",
308 scm_cv_struct_linger="no"))
309AC_MSG_RESULT($scm_cv_struct_linger)
310if test $scm_cv_struct_linger = yes; then
311 AC_DEFINE(HAVE_STRUCT_LINGER)
312fi
313
314#--------------------------------------------------------------------
315#
316# How can you violate a stdio abstraction by setting a stream's fd?
317#
318#--------------------------------------------------------------------
319
6c951427
GH
320dnl AC_MSG_CHECKING(how to set a stream file descriptor)
321dnl AC_CACHE_VAL(scm_cv_fd_setter,
322dnl AC_TRY_COMPILE([#include <stdio.h>],
323dnl [stdout->_file = 1],
324dnl scm_cv_fd_setter="_file",
325dnl AC_TRY_COMPILE([#include <stdio.h>],
326dnl [stdout->__file = 1],
327dnl scm_cv_fd_setter="__file",
328dnl AC_TRY_COMPILE([#include <stdio.h>],
329dnl [stdout->_fileno = 1],
330dnl scm_cv_fd_setter="_fileno",
331dnl scm_cv_fd_setter=""))))
332
333dnl if test "$scm_cv_fd_setter"; then
334dnl AC_MSG_RESULT($scm_cv_fd_setter)
335dnl AC_DEFINE_UNQUOTED(FD_SETTER, $scm_cv_fd_setter)
336dnl else
337dnl AC_MSG_RESULT(we couldn't do it!)
338dnl fi
3a629497
JB
339
340#--------------------------------------------------------------------
341# How to find out whether a FILE structure contains buffered data.
342# From Tk we have the following list:
343# _cnt: Most UNIX systems
fe75dfc5 344# __cnt: HPUX and SCO
3a629497
JB
345# _r: BSD
346# readCount: Sprite
347# Or, in GNU libc there are two fields, _gptr and _egptr, which
348# have to be compared.
349# These can also be known as _IO_read_ptr and _IO_read_end.
350#--------------------------------------------------------------------
351
6c951427
GH
352dnl AC_MSG_CHECKING(how to get buffer char count from FILE structure)
353dnl AC_CACHE_VAL(scm_cv_struct_file_count,
354dnl AC_TRY_COMPILE([#include <stdio.h>],
355dnl [FILE *f = stdin; f->_cnt = 0],
356dnl scm_cv_struct_file_count="_cnt",
357dnl AC_TRY_COMPILE([#include <stdio.h>],
358dnl [FILE *f = stdin; f->__cnt = 0],
359dnl scm_cv_struct_file_count="__cnt",
360dnl AC_TRY_COMPILE([#include <stdio.h>],
361dnl [FILE *f = stdin; f->_r = 0],
362dnl scm_cv_struct_file_count="_r",
363dnl AC_TRY_COMPILE([#include <stdio.h>],
364dnl [FILE *f = stdin; f->readCount = 0],
365dnl scm_cv_struct_file_count="readCount",
366dnl scm_cv_struct_file_count="")))))
367dnl if test "$scm_cv_struct_file_count"; then
368dnl AC_MSG_RESULT($scm_cv_struct_file_count)
369dnl AC_DEFINE_UNQUOTED(FILE_CNT_FIELD, $scm_cv_struct_file_count)
370dnl else
371dnl AC_CACHE_VAL(scm_cv_struct_file_gptr,
372dnl AC_TRY_COMPILE([#include <stdio.h>],
373dnl [FILE *f = stdin; f->_gptr = f->egptr;],
374dnl scm_cv_struct_file_gptr=1,
375dnl scm_cv_struct_file_gptr=""))
376dnl if test "$scm_cv_struct_gptr"; then
377dnl AC_MSG_RESULT(gptr)
378dnl AC_DEFINE_UNQUOTED(FILE_CNT_GPTR, $scm_cv_struct_file_gptr)
379dnl else
380dnl AC_CACHE_VAL(scm_cv_struct_file_readptr,
381dnl AC_TRY_COMPILE([#include <stdio.h>],
382dnl [FILE *f = stdin; f->_IO_read_ptr = f->_IO_read_end;],
383dnl scm_cv_struct_file_readptr=1))
384dnl if test "$scm_cv_struct_file_readptr"; then
385dnl AC_MSG_RESULT(read_ptr)
386dnl AC_DEFINE_UNQUOTED(FILE_CNT_READPTR, $scm_cv_struct_file_readptr)
387dnl else
388dnl AC_MSG_RESULT(we couldn't do it!)
389dnl fi
390dnl fi
391dnl fi
3a629497
JB
392
393#--------------------------------------------------------------------
394#
395# Flags for thread support
396#
397#--------------------------------------------------------------------
398
539c89a1
JB
399### What thread package has the user asked for?
400AC_ARG_WITH(threads, [ --with-threads thread interface],
401 , with_threads=no)
402
403### Turn $with_threads into either the name of a threads package, like
404### `qt', or `no', meaning that threads should not be supported.
e0f54bcc 405AC_MSG_CHECKING(whether to support threads)
539c89a1
JB
406case "$with_threads" in
407 "yes" | "qt" | "coop" | "")
408 with_threads=qt
409 ;;
410 "no" )
411 ;;
412 * )
413 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
414 ;;
415esac
e0f54bcc 416AC_MSG_RESULT($with_threads)
3a629497 417
539c89a1
JB
418## Make sure the threads package we've chosen is actually supported on
419## the present platform.
420case "${with_threads}" in
421 "qt" )
422 ## This configures the QuickThreads package, and sets or clears
423 ## the THREAD_PACKAGE variable if qthreads don't configure
424 ## correctly.
425 QTHREADS_CONFIGURE
426 ;;
427esac
3a629497 428
539c89a1
JB
429## If we're using threads, bring in some other parts of Guile which
430## work with them.
431if test "${THREAD_PACKAGE}" != "" ; then
432 AC_DEFINE(USE_THREADS, 1)
3a629497 433
539c89a1
JB
434 ## Include the Guile thread interface in the library...
435 LIBOBJS="$LIBOBJS threads.o"
933a7411 436
539c89a1
JB
437 ## ... and tell it which package to talk to.
438 case "${THREAD_PACKAGE}" in
439 "QT" )
440 AC_DEFINE(USE_COOP_THREADS, 1)
441 ;;
442 * )
443 AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
444 ;;
445 esac
446
447 ## Bring in scm_internal_select, if appropriate.
448 if test $ac_cv_func_gettimeofday = yes &&
449 test $ac_cv_func_select = yes; then
450 LIBOBJS="$LIBOBJS iselect.o"
451 AC_DEFINE(GUILE_ISELECT, 1)
452 fi
933a7411
MD
453fi
454
7a11a87c 455
3a629497
JB
456## If we're using GCC, ask for aggressive warnings.
457case "$GCC" in
99be3450 458 yes )
0a1b8b15
JB
459 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
460 ## much stuff with generic function pointers for that to really be
461 ## less than exasperating.
462 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wmissing-prototypes" ;;
3a629497
JB
463esac
464
465AC_PROG_AWK
466
467## If we're creating a shared library (using libtool!), then we'll
468## need to generate a list of .lo files corresponding to the .o files
469## given in LIBOBJS. We'll call it LIBLOBJS.
470LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
471
7c86ae05
JB
472AC_SUBST(GUILE_MAJOR_VERSION)
473AC_SUBST(GUILE_MINOR_VERSION)
474AC_SUBST(GUILE_VERSION)
539c89a1 475
bcc695e3 476dnl Tell guile-config what flags guile users should link against.
539c89a1 477GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
daa4f38c 478AC_SUBST(GUILE_LIBS)
7c86ae05 479
3a629497
JB
480AC_SUBST(AWK)
481AC_SUBST(LIBLOBJS)
482
981ad727 483AC_OUTPUT([Makefile libguile/Makefile libguile/guile-snarf libguile/versiondat.h ice-9/Makefile qt/Makefile qt/qt.h qt/md/Makefile qt/time/Makefile guile-config/Makefile doc/Makefile], [chmod +x libguile/guile-snarf])
0f2d19dd 484
3a629497
JB
485dnl Local Variables:
486dnl comment-start: "dnl "
487dnl comment-end: ""
488dnl comment-start-skip: "\\bdnl\\b\\s *"
489dnl End: