* acconfig.h: Added HAVE_S_ISLNK.
[bpt/guile.git] / configure.in
1 dnl configuration script for Guile
2 dnl Process this file with autoconf to produce configure.
3 dnl
4 dnl Copyright (C) 1998, 1999 Free Software Foundation, Inc.
5 dnl
6 dnl This file is part of GUILE
7 dnl
8 dnl GUILE is free software; you can redistribute it and/or modify it
9 dnl under the terms of the GNU General Public License as published by
10 dnl the Free Software Foundation; either version 2, or (at your
11 dnl option) any later version.
12 dnl
13 dnl GUILE is distributed in the hope that it will be useful, but
14 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
15 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 dnl General Public License for more details.
17 dnl
18 dnl You should have received a copy of the GNU General Public License
19 dnl along with GUILE; see the file COPYING. If not, write to the
20 dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 dnl Boston, MA 02111-1307, USA.
22
23 AC_INIT(Makefile.in)
24 . $srcdir/GUILE-VERSION
25 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
26 AM_MAINTAINER_MODE
27 AM_CONFIG_HEADER(libguile/scmconfig.h)
28
29 #--------------------------------------------------------------------
30 #
31 # Independent Subdirectories
32 #
33 #--------------------------------------------------------------------
34
35 AC_CONFIG_SUBDIRS(guile-readline)
36
37 #--------------------------------------------------------------------
38 #
39 # User options
40 #
41 #--------------------------------------------------------------------
42
43 AC_ARG_ENABLE(dynamic-linking,
44 [ --enable-dynamic-linking Include support for dynamic linking],,
45 enable_dynamic_linking=yes)
46
47 AC_ARG_ENABLE(guile-debug,
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
53 dnl The --disable-debug used to control these two. But now they are
54 dnl a required part of the distribution.
55 AC_DEFINE(DEBUG_EXTENSIONS)
56 AC_DEFINE(READER_EXTENSIONS)
57
58 #--------------------------------------------------------------------
59
60 AC_PROG_CC
61 AC_PROG_CPP
62 AM_PROG_LIBTOOL
63
64 AC_AIX
65 AC_ISC_POSIX
66 AC_MINIX
67
68 AM_PROG_CC_STDC
69
70 AC_C_CONST
71 AC_C_INLINE
72 AC_CHECK_SIZEOF(int)
73 AC_CHECK_SIZEOF(long)
74 AC_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))
79 if test "$scm_cv_long_longs" = yes; then
80 AC_DEFINE(HAVE_LONG_LONGS)
81 fi
82
83 AC_HEADER_STDC
84 AC_HEADER_DIRENT
85 AC_HEADER_TIME
86 AC_HEADER_SYS_WAIT
87 AC_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)
88 GUILE_HEADER_LIBC_WITH_UNISTD
89
90 AC_TYPE_GETGROUPS
91 AC_TYPE_SIGNAL
92 AC_TYPE_MODE_T
93
94 AC_CHECK_LIB(m, main)
95 AC_CHECK_FUNCS(gethostbyname)
96 if test $ac_cv_func_gethostbyname = no; then
97 AC_CHECK_LIB(nsl, gethostbyname)
98 fi
99 AC_CHECK_FUNCS(connect)
100 if test $ac_cv_func_connect = no; then
101 AC_CHECK_LIB(socket, connect)
102 fi
103
104 # Checks for dynamic linking
105
106 if test "$enable_dynamic_linking" = "yes"; then
107
108 AC_CHECK_LIB(dl,dlopen)
109 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
110 AC_CHECK_FUNCS(dlopen)
111 AC_DEFINE(DYNAMIC_LINKING)
112 else
113 AC_CHECK_LIB(dld,dld_link)
114 if test "$ac_cv_lib_dld_dld_link" = "yes"; then
115 AC_DEFINE(DYNAMIC_LINKING)
116 else
117 AC_CHECK_FUNCS(shl_load)
118 if test "$ac_cv_func_shl_load" = "yes"; then
119 AC_DEFINE(DYNAMIC_LINKING)
120 else
121 AC_CHECK_FUNCS(dlopen)
122 if test "$ac_cv_func_dlopen" = "yes"; then
123 AC_DEFINE(DYNAMIC_LINKING)
124 fi
125 fi
126 fi
127 fi
128
129 fi
130
131 GUILE_DLSYM_USCORE
132
133 AC_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)
134
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.
142 AC_DEFUN(GUILE_FUNC_DECLARED, [
143 AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
144 AC_EGREP_HEADER($1, $2,
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
148 AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])
149 fi
150 ])
151
152 GUILE_FUNC_DECLARED(strptime, time.h)
153 GUILE_FUNC_DECLARED(bzero, string.h)
154 GUILE_FUNC_DECLARED(sleep, unistd.h)
155 GUILE_FUNC_DECLARED(usleep, unistd.h)
156
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.
159 AC_CACHE_CHECK([return type of usleep], guile_cv_func_usleep_return_type,
160 [AC_EGREP_HEADER(changequote(<, >)<void[ ]+usleep>changequote([, ]),
161 /usr/include/unistd.h,
162 [guile_cv_func_usleep_return_type=void],
163 [guile_cv_func_usleep_return_type=int])])
164 case "$guile_cv_func_usleep_return_type" in
165 "void" )
166 AC_DEFINE(USLEEP_RETURNS_VOID)
167 ;;
168 esac
169
170 dnl <GNU-WIN32 hacks>
171
172 AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
173 if test -n "$have_sys_un_h" ; then
174 AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)
175 fi
176
177 AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
178
179 dnl I don't know what this prefixing of cygwin32_ is for.
180 dnl scmconfig.h wasn't updated with the test results.
181 dnl so use AC_CHECK_FUNCS for now.
182
183 dnl how about:
184 dnl save confdefs.h
185 dnl if test $ac_cv_cigwin = yes; then
186 dnl modify confdefs.h
187 dnl fi
188 dnl AC_CHECK_FUNCS...
189 dnl restore confdefs.h
190
191 dnl cp confdefs.h confdefs.h.bak
192 dnl for func in gethostent sethostent endhostent getnetent setnetent endnetent getprotoent setprotoent endprotoent getservent setservent endservent getnetbyaddr getnetbyname inet_lnaof inet_makeaddr inet_netof ; do
193 dnl cp confdefs.h.bak confdefs.h
194 dnl cat >> confdefs.h << EOF
195 dnl #ifdef __CYGWIN32__
196 dnl #define $func cygwin32_$func
197 dnl #endif
198 dnl EOF
199 dnl AC_CHECK_FUNC($func)
200 dnl done
201 dnl cp confdefs.h.bak confdefs.h
202
203 AC_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)
208
209 dnl </GNU-WIN32 hacks>
210
211 AC_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)
220 if test $scm_cv_restarts = yes; then
221 AC_DEFINE(HAVE_RESTARTS)
222 fi
223
224 if 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
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 )
231 dnl The following should not be necessary, but for some reason
232 dnl autoheader misses it if we don't include it!
233 if test "$ac_cv_func_regcomp_norx" = yes ||
234 test "$ac_cv_func_regcomp_rx" = yes; then
235 AC_DEFINE(HAVE_REGCOMP)
236 fi
237 fi
238
239 AC_REPLACE_FUNCS(inet_aton putenv strerror)
240
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.
244 AC_FUNC_ALLOCA
245 if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi
246
247 AC_STRUCT_ST_RDEV
248 AC_STRUCT_ST_BLKSIZE
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.
252 AC_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;],
255 ac_cv_struct_st_blocks=yes, ac_cv_struct_st_blocks=no)])
256 if test $ac_cv_struct_st_blocks = yes; then
257 AC_DEFINE(HAVE_ST_BLOCKS)
258 fi
259
260 AC_STRUCT_TIMEZONE
261 GUILE_STRUCT_UTIMBUF
262
263 #--------------------------------------------------------------------
264 #
265 # Which way does the stack grow?
266 #
267 #--------------------------------------------------------------------
268
269 AC_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
274 AC_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])])
279 case $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 ;;
288 esac
289
290
291 AC_MSG_CHECKING(for struct linger)
292 AC_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"))
299 AC_MSG_RESULT($scm_cv_struct_linger)
300 if test $scm_cv_struct_linger = yes; then
301 AC_DEFINE(HAVE_STRUCT_LINGER)
302 fi
303
304 #--------------------------------------------------------------------
305 #
306 # How can you violate a stdio abstraction by setting a stream's fd?
307 #
308 #--------------------------------------------------------------------
309
310 dnl AC_MSG_CHECKING(how to set a stream file descriptor)
311 dnl AC_CACHE_VAL(scm_cv_fd_setter,
312 dnl AC_TRY_COMPILE([#include <stdio.h>],
313 dnl [stdout->_file = 1],
314 dnl scm_cv_fd_setter="_file",
315 dnl AC_TRY_COMPILE([#include <stdio.h>],
316 dnl [stdout->__file = 1],
317 dnl scm_cv_fd_setter="__file",
318 dnl AC_TRY_COMPILE([#include <stdio.h>],
319 dnl [stdout->_fileno = 1],
320 dnl scm_cv_fd_setter="_fileno",
321 dnl scm_cv_fd_setter=""))))
322
323 dnl if test "$scm_cv_fd_setter"; then
324 dnl AC_MSG_RESULT($scm_cv_fd_setter)
325 dnl AC_DEFINE_UNQUOTED(FD_SETTER, $scm_cv_fd_setter)
326 dnl else
327 dnl AC_MSG_RESULT(we couldn't do it!)
328 dnl fi
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
334 # __cnt: HPUX and SCO
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
342 dnl AC_MSG_CHECKING(how to get buffer char count from FILE structure)
343 dnl AC_CACHE_VAL(scm_cv_struct_file_count,
344 dnl AC_TRY_COMPILE([#include <stdio.h>],
345 dnl [FILE *f = stdin; f->_cnt = 0],
346 dnl scm_cv_struct_file_count="_cnt",
347 dnl AC_TRY_COMPILE([#include <stdio.h>],
348 dnl [FILE *f = stdin; f->__cnt = 0],
349 dnl scm_cv_struct_file_count="__cnt",
350 dnl AC_TRY_COMPILE([#include <stdio.h>],
351 dnl [FILE *f = stdin; f->_r = 0],
352 dnl scm_cv_struct_file_count="_r",
353 dnl AC_TRY_COMPILE([#include <stdio.h>],
354 dnl [FILE *f = stdin; f->readCount = 0],
355 dnl scm_cv_struct_file_count="readCount",
356 dnl scm_cv_struct_file_count="")))))
357 dnl if test "$scm_cv_struct_file_count"; then
358 dnl AC_MSG_RESULT($scm_cv_struct_file_count)
359 dnl AC_DEFINE_UNQUOTED(FILE_CNT_FIELD, $scm_cv_struct_file_count)
360 dnl else
361 dnl AC_CACHE_VAL(scm_cv_struct_file_gptr,
362 dnl AC_TRY_COMPILE([#include <stdio.h>],
363 dnl [FILE *f = stdin; f->_gptr = f->egptr;],
364 dnl scm_cv_struct_file_gptr=1,
365 dnl scm_cv_struct_file_gptr=""))
366 dnl if test "$scm_cv_struct_gptr"; then
367 dnl AC_MSG_RESULT(gptr)
368 dnl AC_DEFINE_UNQUOTED(FILE_CNT_GPTR, $scm_cv_struct_file_gptr)
369 dnl else
370 dnl AC_CACHE_VAL(scm_cv_struct_file_readptr,
371 dnl AC_TRY_COMPILE([#include <stdio.h>],
372 dnl [FILE *f = stdin; f->_IO_read_ptr = f->_IO_read_end;],
373 dnl scm_cv_struct_file_readptr=1))
374 dnl if test "$scm_cv_struct_file_readptr"; then
375 dnl AC_MSG_RESULT(read_ptr)
376 dnl AC_DEFINE_UNQUOTED(FILE_CNT_READPTR, $scm_cv_struct_file_readptr)
377 dnl else
378 dnl AC_MSG_RESULT(we couldn't do it!)
379 dnl fi
380 dnl fi
381 dnl fi
382
383 #--------------------------------------------------------------------
384 #
385 # Flags for thread support
386 #
387 #--------------------------------------------------------------------
388
389 ### What thread package has the user asked for?
390 AC_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.
395 AC_MSG_CHECKING(whether to support threads)
396 case "$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 ;;
405 esac
406 AC_MSG_RESULT($with_threads)
407
408 ## Make sure the threads package we've chosen is actually supported on
409 ## the present platform.
410 case "${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 ;;
417 esac
418
419 ## If we're using threads, bring in some other parts of Guile which
420 ## work with them.
421 if test "${THREAD_PACKAGE}" != "" ; then
422 AC_DEFINE(USE_THREADS, 1)
423
424 ## Include the Guile thread interface in the library...
425 LIBOBJS="$LIBOBJS threads.o"
426
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
443 fi
444
445
446 ## If we're using GCC, ask for aggressive warnings.
447 case "$GCC" in
448 yes )
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" ;;
453 esac
454
455 AC_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.
460 LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"
461
462 AC_SUBST(GUILE_MAJOR_VERSION)
463 AC_SUBST(GUILE_MINOR_VERSION)
464 AC_SUBST(GUILE_VERSION)
465
466 dnl Tell guile-config what flags guile users should link against.
467 GUILE_LIBS="$LDFLAGS $THREAD_LIBS_INSTALLED $LIBS"
468 AC_SUBST(GUILE_LIBS)
469
470 dnl timestamping the interpreter and scheme libraries:
471 dnl
472 dnl Help us notice when we're running one version of the Guile
473 dnl interpreter against a different version of the ice-9 Scheme code.
474 dnl This will definitely detect version skew due to differing
475 dnl snapshots and releases, but may not catch skew for the developers.
476 dnl Hopefully it will not detect skew when there is none; if that
477 dnl happens, the warnings will be useless, and we should remove this.
478 GUILE_STAMP="`date`"
479 AC_SUBST(GUILE_STAMP)
480
481 AC_SUBST(AWK)
482 AC_SUBST(LIBLOBJS)
483
484 AC_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])
485
486 dnl Local Variables:
487 dnl comment-start: "dnl "
488 dnl comment-end: ""
489 dnl comment-start-skip: "\\bdnl\\b\\s *"
490 dnl End: