* guile-aclocal.sh: deleted in favor of ACLOCAL_AMFLAGS in
[bpt/guile.git] / configure.in
index 787f242..4225eaa 100644 (file)
@@ -1,7 +1,7 @@
 dnl   configuration script for Guile
 dnl   Process this file with autoconf to produce configure.
 dnl
-dnl  Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+dnl  Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
 dnl
 dnl  This file is part of GUILE
 dnl
@@ -43,15 +43,16 @@ AC_CONFIG_SUBDIRS(guile-readline)
 #
 #--------------------------------------------------------------------
 
+GUILE_ERROR_ON_WARNING="yes"
+
 AC_ARG_ENABLE(error-on-warning,
   [  --enable-error-on-warning    treat compile warnings as errors],
   [case "${enableval}" in
-     yes | y) CFLAGS="${CFLAGS} -Werror"; enable_compile_warnings=no ;;
-     no | n)  ;;
+     yes | y) GUILE_ERROR_ON_WARNING="yes" ;;
+     no | n)  GUILE_ERROR_ON_WARNING="no" ;;
      *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
    esac])
 
-
 AC_ARG_ENABLE(debug-freelist,
   [  --enable-debug-freelist include garbage collector freelist debugging code],
   if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
@@ -139,6 +140,11 @@ AC_DEFINE(DEBUG_EXTENSIONS, 1,
 AC_DEFINE(READER_EXTENSIONS, 1,
   [Define if you want support for debugging Scheme programs.])
 
+dnl These two used to be optional, too, but now they are always
+dnl defined.
+AC_DEFINE(USE_THREADS, 1, [Deprecated, always defined.])
+AC_DEFINE(GUILE_ISELECT, 1, [Deprecated, always defined.])
+
 AC_ARG_ENABLE(elisp,
   [  --disable-elisp         omit Emacs Lisp support],,
   enable_elisp=yes)
@@ -150,13 +156,10 @@ AC_CYGWIN
 AC_MINGW32
 AC_LIBTOOL_WIN32_DLL
 
-AC_LIBLTDL_INSTALLABLE
-AC_CONFIG_SUBDIRS(libltdl)
-
 AC_PROG_INSTALL
 AC_PROG_CC
 AC_PROG_CPP
-AC_LIBTOOL_DLOPEN
+AC_PROG_AWK
 
 AC_AIX
 AC_ISC_POSIX
@@ -164,9 +167,9 @@ AC_MINIX
 
 AM_PROG_CC_STDC
 
-## Needed for building DLLs on Cygwin, before AM_PROG_LIBTOOL
-AC_LIBTOOL_WIN32_DLL
+AC_LIBTOOL_DLOPEN
 AM_PROG_LIBTOOL
+AC_LIB_LTDL
 
 AC_CHECK_PROG(have_makeinfo, makeinfo, yes, no)
 AM_CONDITIONAL(HAVE_MAKEINFO, test "$have_makeinfo" = yes)
@@ -264,7 +267,13 @@ AC_HEADER_STDC
 AC_HEADER_DIRENT
 AC_HEADER_TIME
 AC_HEADER_SYS_WAIT
-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/stdtypes.h sys/types.h sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h direct.h)
+
+AC_CHECK_HEADERS([io.h libc.h limits.h malloc.h memory.h string.h \
+regex.h rxposix.h rx/rxposix.h sys/dir.h sys/ioctl.h sys/select.h \
+sys/time.h sys/timeb.h sys/times.h sys/stdtypes.h sys/types.h \
+sys/utime.h time.h unistd.h utime.h pwd.h grp.h sys/utsname.h \
+direct.h])
+
 GUILE_HEADER_LIBC_WITH_UNISTD
 
 AC_TYPE_GETGROUPS
@@ -276,6 +285,7 @@ AC_CHECK_FUNCS(gethostbyname)
 if test $ac_cv_func_gethostbyname = no; then
     AC_CHECK_LIB(nsl, gethostbyname)
 fi
+
 AC_CHECK_FUNCS(connect)
 if test $ac_cv_func_connect = no; then
     AC_CHECK_LIB(socket, connect)
@@ -305,11 +315,15 @@ if test "$MINGW32" = "yes" ; then
 fi
 AC_SUBST(EXTRA_DEFS)
 
-AC_SUBST(INCLTDL)
-AC_SUBST(LIBLTDL)
+# FIXME: check to see if we still need these.
+#AC_SUBST(INCLTDL)
+#AC_SUBST(LIBLTDL)
+
 AC_SUBST(DLPREOPEN)
 
-AC_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 chown link fcntl ttyname getpwent getgrent kill getppid getpgrp fork setitimer getitimer)
+AC_CHECK_HEADERS([assert.h])
+
+AC_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 chown link fcntl ttyname getpwent getgrent kill getppid getpgrp fork setitimer getitimer strchr strcmp index bcopy memcpy rindex])
 
 AC_CHECK_HEADERS(crypt.h sys/resource.h sys/file.h)
 AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
@@ -367,6 +381,18 @@ AC_CHECK_FUNCS(sethostent   gethostent   endhostent   dnl
               inet_lnaof inet_makeaddr inet_netof hstrerror dnl
               inet_pton inet_ntop)
 
+AC_MSG_CHECKING(for __libc_stack_end)
+AC_TRY_LINK([extern char *__libc_stack_end;],
+            [char *p = __libc_stack_end;],
+            have_libc_stack_end=yes,
+            have_libc_stack_end=no)
+AC_MSG_RESULT($have_libc_stack_end)
+
+if test $have_libc_stack_end = yes; then
+  AC_DEFINE(HAVE_LIBC_STACK_END, 1,
+           [Define if you have the __libc_stack_end variable.])
+fi
+
 dnl Some systems do not declare this.  Some systems do declare it, as a
 dnl macro.  With cygwin it may be in a DLL.
 
@@ -613,70 +639,80 @@ fi
 
 ### What thread package has the user asked for?
 AC_ARG_WITH(threads, [  --with-threads          thread interface],
-            , with_threads=no)
+            , with_threads=yes)
+
+case "$with_threads" in
+  "yes" | "pthread" | "pthreads" | "pthread-threads" | "")
+    AC_CHECK_LIB(pthread, main,
+      LIBS="-lpthread $LIBS"
+      AC_DEFINE(USE_PTHREAD_THREADS, 1,
+        [Define if using pthread multithreading.])
+      with_threads="pthreads",
+      with_threads="null")
+      
+    if test $GCC = yes; then
+    AC_DEFINE(_THREAD_SAFE, 1,
+      [Use thread safe versions of GNU Libc functions.])
+    fi
+    
+    AC_MSG_CHECKING(if pthread_mutexattr_settype is declared)
+    AC_CACHE_VAL(guile_cv_mutexattr_settype_declared,
+      [AC_TRY_COMPILE([#include <pthread.h>],
+         [int pthread_mutexattr_settype (int, int);],
+         guile_cv_mutexattr_settype_declared=no,
+         guile_cv_mutexattr_settype_declared=yes)])
+    AC_MSG_RESULT($guile_cv_mutexattr_settype_declared)
+    if test $guile_cv_mutexattr_settype_declared = yes; then
+      AC_DEFINE(SCM_MUTEXATTR_SETTYPE_DECLARED, 1,
+         [Define if pthread.h declares pthread_mutexattr_settype.])
+    fi
+    
+    AC_MSG_CHECKING(how to get a fast mutex)
+    AC_CACHE_VAL(guile_cv_have_mutex_fast,
+      [AC_TRY_COMPILE([#include <pthread.h>],
+         [int a = PTHREAD_MUTEX_ADAPTIVE_NP;],
+         guile_cv_have_mutex_fast=PTHREAD_MUTEX_ADAPTIVE_NP,
+         guile_cv_have_mutex_fast=none)])
+    AC_MSG_RESULT($guile_cv_have_mutex_fast)
+    if test ! $guile_cv_have_mutex_fast = none; then
+      AC_DEFINE_UNQUOTED(SCM_MUTEX_FAST, $guile_cv_have_mutex_fast,
+         [The mutex kind enum for fast mutexes.])
+    fi
+    
+    AC_MSG_CHECKING(how to get a recursive mutex)
+    AC_CACHE_VAL(guile_cv_have_mutex_recursive,
+      [AC_TRY_COMPILE([#include <pthread.h>],
+        [int a = PTHREAD_MUTEX_RECURSIVE_NP;],
+         guile_cv_have_mutex_recursive=PTHREAD_MUTEX_RECURSIVE_NP)
+      if test -z "$guile_cv_have_mutex_recursive"; then
+         AC_TRY_COMPILE([#include <pthread.h>],
+           [int a = PTHREAD_MUTEX_RECURSIVE;],
+           guile_cv_have_mutex_recursive=PTHREAD_MUTEX_RECURSIVE,
+           guile_cv_have_mutex_recursive=none)
+       fi])
+    AC_MSG_RESULT($guile_cv_have_mutex_recursive)
+    if test ! $guile_cv_have_mutex_recursive = none; then
+      AC_DEFINE_UNQUOTED(SCM_MUTEX_RECURSIVE, $guile_cv_have_mutex_recursive,
+        [The mutex kind enum for recursive mutexes.])
+    fi
+  ;;
+esac
 
-### Turn $with_threads into either the name of a threads package, like
-### `qt', or `no', meaning that threads should not be supported.
-AC_MSG_CHECKING(whether to support threads)
 case "$with_threads" in
-  "yes" | "qt" | "coop" | "")
-    with_threads=qt
+  "pthreads")
   ;;
-  "no" )
+  "no" | "null")
+    AC_DEFINE(USE_NULL_THREADS, 1,
+      [Define if using one-thread 'multi'threading.])
+    with_threads="null-threads"
   ;;
   * )
     AC_MSG_ERROR(invalid value for --with-threads: $with_threads)
   ;;
 esac
-AC_MSG_RESULT($with_threads)
-
-## Make sure the threads package we've chosen is actually supported on
-## the present platform.
-case "${with_threads}" in
-  "qt" )
-    ## This configures the QuickThreads package, and sets or clears
-    ## the THREAD_PACKAGE variable if qthreads don't configure
-    ## correctly.
-    QTHREADS_CONFIGURE
-   ;;
-esac
 
-## If we're using threads, bring in some other parts of Guile which
-## work with them.
-if test "${THREAD_PACKAGE}" != "" ; then
-  AC_DEFINE(USE_THREADS, 1, [Define if using any sort of threads.])
-
-  ## Include the Guile thread interface in the library...
-  AC_LIBOBJ([threads])
-
-  ## ... and tell it which package to talk to.
-  case "${THREAD_PACKAGE}" in
-    "QT" )
-      AC_DEFINE(USE_COOP_THREADS, 1,
-        [Define if using cooperative multithreading.])
-    ;;
-    * )
-      AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
-    ;;
-  esac
-
-  ## Bring in scm_internal_select, if appropriate.
-  if test $ac_cv_func_gettimeofday = yes &&
-     test $ac_cv_func_select = yes; then
-    AC_DEFINE(GUILE_ISELECT, 1, [Define to implement scm_internal_select.])
-  fi
-
-  AC_ARG_ENABLE(linuxthreads,
-  [  --disable-linuxthreads  disable linuxthreads workaround],,
-  enable_linuxthreads=yes)
-
-  ## Workaround for linuxthreads (optionally disabled)
-  if test $host_os = linux-gnu -a "$enable_linuxthreads" = yes; then
-    AC_DEFINE(GUILE_PTHREAD_COMPAT, 1,
-      [Define to enable workaround for COOP-linuxthreads compatibility.])
-    AC_CHECK_LIB(pthread, main)
-  fi
-fi
+AC_MSG_CHECKING(what kind of threads to support)
+AC_MSG_RESULT($with_threads)
 
 ## Cross building      
 if test "$cross_compiling" = "yes"; then
@@ -726,6 +762,15 @@ if test "$cross_compiling" = "yes"; then
 fi
 AC_SUBST(GUILE_FOR_BUILD)
                        
+# Do this here so we don't screw up any of the tests above that might
+# not be "warning free"
+
+if test "${GUILE_ERROR_ON_WARNING}" = yes
+then
+  CFLAGS="${CFLAGS} -Werror"
+  enable_compile_warnings=no
+fi
+
 ## If we're using GCC, ask for aggressive warnings.
 case "$GCC" in
   yes )
@@ -737,8 +782,6 @@ case "$GCC" in
     CFLAGS="$CFLAGS -Wall -Wmissing-prototypes" ;;
 esac
 
-AC_PROG_AWK
-
 ## NOTE the code below sets LIBOBJS directly and so is now forbidden
 ## -- I'm disabling it for now in the hopes that the newer autoconf
 ## will DTRT -- if not, we need to fix up the sed command to match the
@@ -760,6 +803,7 @@ EXTRA_DOT_X_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.x ,g;s,\.[[^.]]*$,.
 AC_SUBST(GUILE_MAJOR_VERSION)
 AC_SUBST(GUILE_MINOR_VERSION)
 AC_SUBST(GUILE_MICRO_VERSION)
+AC_SUBST(GUILE_EFFECTIVE_VERSION)
 AC_SUBST(GUILE_VERSION)
 
 #######################################################################
@@ -775,6 +819,11 @@ AC_SUBST(LIBGUILE_INTERFACE_REVISION)
 AC_SUBST(LIBGUILE_INTERFACE_AGE)
 AC_SUBST(LIBGUILE_INTERFACE)
 
+AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_CURRENT)
+AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION)
+AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE_AGE)
+AC_SUBST(LIBGUILE_SRFI_SRFI_1_INTERFACE)
+
 AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_CURRENT)
 AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION)
 AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE)
@@ -799,61 +848,55 @@ AC_SUBST(EXTRA_DOT_X_FILES)
 dnl See also top_builddir in info node: (libtool)AC_PROG_LIBTOOL
 top_builddir_absolute=`pwd`
 AC_SUBST(top_builddir_absolute)
-top_srcdir_absolute=`(cd $srcdir ; pwd)`
+top_srcdir_absolute=`(cd $srcdir && pwd)`
 AC_SUBST(top_srcdir_absolute)
 
 AC_CONFIG_FILES([
   Makefile
   am/Makefile
-  libguile/Makefile
-  libguile/guile-snarf
-  libguile/guile-doc-snarf
-  libguile/guile-func-name-check
-  libguile/guile-snarf-docs
-  libguile/version.h
+  benchmark-suite/Makefile
+  doc/Makefile
+  doc/goops/Makefile
+  doc/r5rs/Makefile
+  doc/ref/Makefile
+  doc/tutorial/Makefile
+  examples/Makefile
+  examples/box-dynamic-module/Makefile
+  examples/box-dynamic/Makefile
+  examples/box-module/Makefile
+  examples/box/Makefile
+  examples/modules/Makefile
+  examples/safe/Makefile
+  examples/scripts/Makefile
+  guile-config/Makefile
   ice-9/Makefile
+  ice-9/debugger/Makefile
+  ice-9/debugger/breakpoints/Makefile
   lang/Makefile
   lang/elisp/Makefile
   lang/elisp/internals/Makefile
   lang/elisp/primitives/Makefile
+  libguile-ltdl/Makefile
+  libguile-ltdl/upstream/Makefile
+  libguile/Makefile
   oop/Makefile
   oop/goops/Makefile
   scripts/Makefile
   srfi/Makefile
-  qt/Makefile
-  qt/qt.h
-  qt/md/Makefile
-  qt/time/Makefile
-  guile-config/Makefile
-  doc/Makefile
-  doc/ref/Makefile
-  doc/tutorial/Makefile
-  doc/goops/Makefile
-  doc/r5rs/Makefile
-  examples/Makefile
-  examples/scripts/Makefile
-  examples/box/Makefile
-  examples/box-module/Makefile
-  examples/box-dynamic/Makefile
-  examples/box-dynamic-module/Makefile
-  examples/modules/Makefile
-  examples/safe/Makefile
-  test-suite/Makefile
-  check-guile
-  benchmark-suite/Makefile
-  benchmark-guile
-  guile-tools
-  pre-inst-guile])
-
-AC_CONFIG_COMMANDS(default,
-  [ chmod +x libguile/guile-snarf \
-             libguile/guile-doc-snarf \
-             libguile/guile-func-name-check \
-             libguile/guile-snarf-docs \
-             check-guile \
-             benchmark-guile \
-             guile-tools \
-             pre-inst-guile])
+  test-suite/Makefile])
+
+AC_CONFIG_FILES([check-guile], [chmod +x check-guile])
+AC_CONFIG_FILES([benchmark-guile], [chmod +x benchmark-guile])
+AC_CONFIG_FILES([guile-tools], [chmod +x guile-tools])
+AC_CONFIG_FILES([pre-inst-guile], [chmod +x pre-inst-guile])
+AC_CONFIG_FILES([libguile/guile-snarf],
+                [chmod +x libguile/guile-snarf])
+AC_CONFIG_FILES([libguile/guile-doc-snarf],
+                [chmod +x libguile/guile-doc-snarf])
+AC_CONFIG_FILES([libguile/guile-func-name-check],
+                [chmod +x libguile/guile-func-name-check])
+AC_CONFIG_FILES([libguile/guile-snarf-docs],
+                [chmod +x libguile/guile-snarf-docs])
 
 AC_OUTPUT