* acconfig.h: Added HAVE_S_ISLNK.
[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
219a5a5b 133AC_CHECK_FUNCS(ctermid ftime getcwd geteuid gettimeofday lstat mkdir mknod nice readlink rename rmdir select setegid seteuid setlocale setpgid setsid sigaction strftime strptime symlink sync tcgetpgrp tcsetpgrp times uname waitpid bzero strdup system usleep)
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
e1a191a8
GH
211AC_CACHE_CHECK([for restartable system calls], scm_cv_restarts,
212 if test $ac_cv_func_sigaction = yes; then
213 [AC_TRY_COMPILE([#include <signal.h>],
214 [int a = SA_RESTART],
215 scm_cv_restarts=yes,
216 scm_cv_restarts=no)]
217 else
218 scm_cv_restarts=no
219 fi)
220if test $scm_cv_restarts = yes; then
221 AC_DEFINE(HAVE_RESTARTS)
222fi
223
e9cd5d2f
MD
224if test "$ac_cv_header_regex_h" = yes ||
225 test "$ac_cv_header_rxposix_h" = yes ||
226 test "$ac_cv_header_rx_rxposix_h" = yes; then
0b89e78e
MD
227 GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],
228 [AC_CHECK_LIB(rx, main)
229 GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"])]
230 )
e9cd5d2f
MD
231 dnl The following should not be necessary, but for some reason
232 dnl autoheader misses it if we don't include it!
0b89e78e
MD
233 if test "$ac_cv_func_regcomp_norx" = yes ||
234 test "$ac_cv_func_regcomp_rx" = yes; then
e9cd5d2f
MD
235 AC_DEFINE(HAVE_REGCOMP)
236 fi
da88f0cb 237fi
8e1bfcd0 238
3a629497
JB
239AC_REPLACE_FUNCS(inet_aton putenv strerror)
240
4a5fa91c
TP
241# When testing for the presence of alloca, we need to add alloca.o
242# explicitly to LIBOBJS to make sure that it is translated to
243# `alloca.lo' for libtool later on. This can and should be done more cleanly.
3a629497 244AC_FUNC_ALLOCA
4a5fa91c 245if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
3a629497
JB
246
247AC_STRUCT_ST_RDEV
248AC_STRUCT_ST_BLKSIZE
075edbde
JB
249
250# We could use AC_STRUCT_ST_BLOCKS here, but that adds fileblocks.o to
251# LIBOBJS, which we don't need. This seems more direct.
252AC_CACHE_CHECK([for st_blocks in struct stat], ac_cv_struct_st_blocks,
253[AC_TRY_COMPILE([#include <sys/types.h>
254#include <sys/stat.h>], [struct stat s; s.st_blocks;],
255ac_cv_struct_st_blocks=yes, ac_cv_struct_st_blocks=no)])
256if test $ac_cv_struct_st_blocks = yes; then
257 AC_DEFINE(HAVE_ST_BLOCKS)
258fi
259
3a629497
JB
260AC_STRUCT_TIMEZONE
261GUILE_STRUCT_UTIMBUF
262
3a629497
JB
263#--------------------------------------------------------------------
264#
265# Which way does the stack grow?
266#
267#--------------------------------------------------------------------
268
269AC_TRY_RUN(aux (l) unsigned long l;
270 { int x; exit (l >= ((unsigned long)&x)); }
271 main () { int q; aux((unsigned long)&q); },
272 AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
273
3a171311
JB
274AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
275 [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
276 [guile_cv_type_float_fits_long=yes],
277 [guile_cv_type_float_fits_long=no],
278 [guile_cv_type_float_fits_long=guess-yes])])
279case $guile_cv_type_float_fits_long in
280 "yes" )
281 AC_DEFINE(SCM_SINGLES)
282 ;;
283 "guess-yes" )
284 AC_DEFINE(SCM_SINGLES)
285 AC_MSG_WARN([guessing that sizeof(long) == sizeof(float)])
286 AC_MSG_WARN([see SCM_SINGLES in scmconfig.h.in])
287 ;;
288esac
3a629497 289
3a629497
JB
290
291AC_MSG_CHECKING(for struct linger)
292AC_CACHE_VAL(scm_cv_struct_linger,
293 AC_TRY_COMPILE([
294#include <sys/types.h>
295#include <sys/socket.h>],
296 [struct linger lgr; lgr.l_linger = 100],
297 scm_cv_struct_linger="yes",
298 scm_cv_struct_linger="no"))
299AC_MSG_RESULT($scm_cv_struct_linger)
300if test $scm_cv_struct_linger = yes; then
301 AC_DEFINE(HAVE_STRUCT_LINGER)
302fi
303
304#--------------------------------------------------------------------
305#
306# How can you violate a stdio abstraction by setting a stream's fd?
307#
308#--------------------------------------------------------------------
309
6c951427
GH
310dnl AC_MSG_CHECKING(how to set a stream file descriptor)
311dnl AC_CACHE_VAL(scm_cv_fd_setter,
312dnl AC_TRY_COMPILE([#include <stdio.h>],
313dnl [stdout->_file = 1],
314dnl scm_cv_fd_setter="_file",
315dnl AC_TRY_COMPILE([#include <stdio.h>],
316dnl [stdout->__file = 1],
317dnl scm_cv_fd_setter="__file",
318dnl AC_TRY_COMPILE([#include <stdio.h>],
319dnl [stdout->_fileno = 1],
320dnl scm_cv_fd_setter="_fileno",
321dnl scm_cv_fd_setter=""))))
322
323dnl if test "$scm_cv_fd_setter"; then
324dnl AC_MSG_RESULT($scm_cv_fd_setter)
325dnl AC_DEFINE_UNQUOTED(FD_SETTER, $scm_cv_fd_setter)
326dnl else
327dnl AC_MSG_RESULT(we couldn't do it!)
328dnl fi
3a629497
JB
329
330#--------------------------------------------------------------------
331# How to find out whether a FILE structure contains buffered data.
332# From Tk we have the following list:
333# _cnt: Most UNIX systems
fe75dfc5 334# __cnt: HPUX and SCO
3a629497
JB
335# _r: BSD
336# readCount: Sprite
337# Or, in GNU libc there are two fields, _gptr and _egptr, which
338# have to be compared.
339# These can also be known as _IO_read_ptr and _IO_read_end.
340#--------------------------------------------------------------------
341
6c951427
GH
342dnl AC_MSG_CHECKING(how to get buffer char count from FILE structure)
343dnl AC_CACHE_VAL(scm_cv_struct_file_count,
344dnl AC_TRY_COMPILE([#include <stdio.h>],
345dnl [FILE *f = stdin; f->_cnt = 0],
346dnl scm_cv_struct_file_count="_cnt",
347dnl AC_TRY_COMPILE([#include <stdio.h>],
348dnl [FILE *f = stdin; f->__cnt = 0],
349dnl scm_cv_struct_file_count="__cnt",
350dnl AC_TRY_COMPILE([#include <stdio.h>],
351dnl [FILE *f = stdin; f->_r = 0],
352dnl scm_cv_struct_file_count="_r",
353dnl AC_TRY_COMPILE([#include <stdio.h>],
354dnl [FILE *f = stdin; f->readCount = 0],
355dnl scm_cv_struct_file_count="readCount",
356dnl scm_cv_struct_file_count="")))))
357dnl if test "$scm_cv_struct_file_count"; then
358dnl AC_MSG_RESULT($scm_cv_struct_file_count)
359dnl AC_DEFINE_UNQUOTED(FILE_CNT_FIELD, $scm_cv_struct_file_count)
360dnl else
361dnl AC_CACHE_VAL(scm_cv_struct_file_gptr,
362dnl AC_TRY_COMPILE([#include <stdio.h>],
363dnl [FILE *f = stdin; f->_gptr = f->egptr;],
364dnl scm_cv_struct_file_gptr=1,
365dnl scm_cv_struct_file_gptr=""))
366dnl if test "$scm_cv_struct_gptr"; then
367dnl AC_MSG_RESULT(gptr)
368dnl AC_DEFINE_UNQUOTED(FILE_CNT_GPTR, $scm_cv_struct_file_gptr)
369dnl else
370dnl AC_CACHE_VAL(scm_cv_struct_file_readptr,
371dnl AC_TRY_COMPILE([#include <stdio.h>],
372dnl [FILE *f = stdin; f->_IO_read_ptr = f->_IO_read_end;],
373dnl scm_cv_struct_file_readptr=1))
374dnl if test "$scm_cv_struct_file_readptr"; then
375dnl AC_MSG_RESULT(read_ptr)
376dnl AC_DEFINE_UNQUOTED(FILE_CNT_READPTR, $scm_cv_struct_file_readptr)
377dnl else
378dnl AC_MSG_RESULT(we couldn't do it!)
379dnl fi
380dnl fi
381dnl fi
3a629497
JB
382
383#--------------------------------------------------------------------
384#
385# Flags for thread support
386#
387#--------------------------------------------------------------------
388
539c89a1
JB
389### What thread package has the user asked for?
390AC_ARG_WITH(threads, [ --with-threads thread interface],
391 , with_threads=no)
392
393### Turn $with_threads into either the name of a threads package, like
394### `qt', or `no', meaning that threads should not be supported.
e0f54bcc 395AC_MSG_CHECKING(whether to support threads)
539c89a1
JB
396case "$with_threads" in
397 "yes" | "qt" | "coop" | "")
398 with_threads=qt
399 ;;
400 "no" )
401 ;;
402 * )
403 AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
404 ;;
405esac
e0f54bcc 406AC_MSG_RESULT($with_threads)
3a629497 407
539c89a1
JB
408## Make sure the threads package we've chosen is actually supported on
409## the present platform.
410case "${with_threads}" in
411 "qt" )
412 ## This configures the QuickThreads package, and sets or clears
413 ## the THREAD_PACKAGE variable if qthreads don't configure
414 ## correctly.
415 QTHREADS_CONFIGURE
416 ;;
417esac
3a629497 418
539c89a1
JB
419## If we're using threads, bring in some other parts of Guile which
420## work with them.
421if test "${THREAD_PACKAGE}" != "" ; then
422 AC_DEFINE(USE_THREADS, 1)
3a629497 423
539c89a1
JB
424 ## Include the Guile thread interface in the library...
425 LIBOBJS="$LIBOBJS threads.o"
933a7411 426
539c89a1
JB
427 ## ... and tell it which package to talk to.
428 case "${THREAD_PACKAGE}" in
429 "QT" )
430 AC_DEFINE(USE_COOP_THREADS, 1)
431 ;;
432 * )
433 AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
434 ;;
435 esac
436
437 ## Bring in scm_internal_select, if appropriate.
438 if test $ac_cv_func_gettimeofday = yes &&
439 test $ac_cv_func_select = yes; then
440 LIBOBJS="$LIBOBJS iselect.o"
441 AC_DEFINE(GUILE_ISELECT, 1)
442 fi
933a7411
MD
443fi
444
7a11a87c 445
3a629497
JB
446## If we're using GCC, ask for aggressive warnings.
447case "$GCC" in
99be3450 448 yes )
0a1b8b15
JB
449 ## We had -Wstrict-prototypes in here for a bit, but Guile does too
450 ## much stuff with generic function pointers for that to really be
451 ## less than exasperating.
452 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wmissing-prototypes" ;;
3a629497
JB
453esac
454
455AC_PROG_AWK
456
457## If we're creating a shared library (using libtool!), then we'll
458## need to generate a list of .lo files corresponding to the .o files
459## given in LIBOBJS. We'll call it LIBLOBJS.
460LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
461
7c86ae05
JB
462AC_SUBST(GUILE_MAJOR_VERSION)
463AC_SUBST(GUILE_MINOR_VERSION)
464AC_SUBST(GUILE_VERSION)
539c89a1 465
bcc695e3 466dnl Tell guile-config what flags guile users should link against.
539c89a1 467GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
daa4f38c 468AC_SUBST(GUILE_LIBS)
7c86ae05
JB
469
470dnl timestamping the interpreter and scheme libraries:
471dnl
472dnl Help us notice when we're running one version of the Guile
473dnl interpreter against a different version of the ice-9 Scheme code.
474dnl This will definitely detect version skew due to differing
475dnl snapshots and releases, but may not catch skew for the developers.
476dnl Hopefully it will not detect skew when there is none; if that
477dnl happens, the warnings will be useless, and we should remove this.
478GUILE_STAMP="`date`"
479AC_SUBST(GUILE_STAMP)
3a629497
JB
480
481AC_SUBST(AWK)
482AC_SUBST(LIBLOBJS)
483
0e6d926d 484AC_OUTPUT([Makefile libguile/Makefile libguile/guile-snarf libguile/versiondat.h ice-9/Makefile ice-9/version.scm qt/Makefile qt/qt.h qt/md/Makefile qt/time/Makefile guile-config/Makefile doc/Makefile], [chmod +x libguile/guile-snarf])
0f2d19dd 485
3a629497
JB
486dnl Local Variables:
487dnl comment-start: "dnl "
488dnl comment-end: ""
489dnl comment-start-skip: "\\bdnl\\b\\s *"
490dnl End: