* hooks.c (scm_create_hook): deprecated.
[bpt/guile.git] / configure.in
index 6fb73a2..92d1c54 100644 (file)
@@ -100,12 +100,17 @@ AC_ARG_ENABLE(deprecated,
   [  --disable-deprecated    omit deprecated features [no]])
 
 if test "$enable_deprecated" = no; then
-  AC_DEFINE(SCM_DEBUG_DEPRECATED)
+  AC_DEFINE(SCM_DEBUG_DEPRECATED, 1)
 else
   if test "$enable_deprecated" = yes || test "$enable_deprecated" = ""; then
-    enable_deprecated=summary
+    warn_default=summary
+  elif test "$enable_deprecated" = shutup; then
+    warn_default=no
+  else
+    warn_default=$enable_deprecated
   fi
-  AC_DEFINE_UNQUOTED(GUILE_WARN_DEPRECATED_DEFAULT, "$enable_deprecated")
+  AC_DEFINE(SCM_DEBUG_DEPRECATED, 0)
+  AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default")
 fi
 
 dnl The --disable-debug used to control these two.  But now they are
@@ -156,6 +161,12 @@ AC_C_BIGENDIAN
 
 AC_CHECK_SIZEOF(int)
 AC_CHECK_SIZEOF(long)
+
+dnl by the pre C9X ANSI C standards, size_t & ptrdiff_t have to be
+dnl representable by a standard integral type.  since the largest 
+dnl integer type in the pre-C9X ANSI C standards is long...
+AC_CHECK_TYPE(ptrdiff_t, long)
+
 AC_CACHE_CHECK([for long longs], scm_cv_long_longs,
               AC_TRY_COMPILE(,
                              [long long a],
@@ -163,13 +174,20 @@ AC_CACHE_CHECK([for long longs], scm_cv_long_longs,
                              scm_cv_long_longs=no))
 if test "$scm_cv_long_longs" = yes; then
   AC_DEFINE(HAVE_LONG_LONGS)
+  AC_CHECK_SIZEOF(long long)
+fi
+
+AC_CHECK_SIZEOF(void *)
+
+if test "$ac_cv_sizeof_long" -ne "$ac_cv_sizeof_void_p"; then
+  AC_MSG_ERROR(sizes of long and void* are not identical)
 fi
 
 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/types.h sys/utime.h time.h unistd.h utime.h)
+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)
 GUILE_HEADER_LIBC_WITH_UNISTD
 
 AC_TYPE_GETGROUPS
@@ -225,7 +243,7 @@ AC_CHECK_LIB(crypt, crypt)
 AC_DEFUN(GUILE_FUNC_DECLARED, [
   AC_CACHE_CHECK(for $1 declaration, guile_cv_func_$1_declared,
     AC_EGREP_HEADER($1, $2,
-                   guile_cv_func_$1_declared=yes, 
+                   guile_cv_func_$1_declared=yes,
                    guile_cv_func_$1_declared=no))
   if test [x$guile_cv_func_]$1[_declared] = xno; then
     AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])
@@ -287,6 +305,17 @@ if test $guile_cv_have_uint32_t = yes; then
   AC_DEFINE(HAVE_UINT32_T)
 fi
 
+AC_MSG_CHECKING(for working IPv6 support)
+AC_CACHE_VAL(guile_cv_have_ipv6,
+[AC_TRY_COMPILE([#include <netinet/in.h>
+#include <sys/socket.h>],
+[struct sockaddr_in6 a;  a.sin6_family = AF_INET6;],
+guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])
+AC_MSG_RESULT($guile_cv_have_ipv6)
+if test $guile_cv_have_ipv6 = yes; then
+  AC_DEFINE(HAVE_IPV6)
+fi
+
 # included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
 AC_MSG_CHECKING(whether sockaddr_in6 has sin6_scope_id)
 AC_CACHE_VAL(guile_cv_have_sin6_scope_id,
@@ -386,7 +415,7 @@ AC_STRUCT_ST_RDEV
 AC_STRUCT_ST_BLKSIZE
 
 # We could use AC_STRUCT_ST_BLOCKS here, but that adds fileblocks.o to
-# LIBOBJS, which we don't need.  This seems more direct. 
+# LIBOBJS, which we don't need.  This seems more direct.
 AC_CACHE_CHECK([for st_blocks in struct stat], ac_cv_struct_st_blocks,
 [AC_TRY_COMPILE([#include <sys/types.h>
 #include <sys/stat.h>], [struct stat s; s.st_blocks;],
@@ -417,7 +446,7 @@ GUILE_STRUCT_UTIMBUF
 
 AC_TRY_RUN(aux (l) unsigned long l;
             { int x; exit (l >= ((unsigned long)&x)); }
-          main () { int q; aux((unsigned long)&q); }, 
+          main () { int q; aux((unsigned long)&q); },
           AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))
 
 AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
@@ -558,6 +587,7 @@ EXTRA_DOT_X_FILES="`echo ${LIBOBJS} | sed 's/\.o/.x/g'`"
 
 AC_SUBST(GUILE_MAJOR_VERSION)
 AC_SUBST(GUILE_MINOR_VERSION)
+AC_SUBST(GUILE_MICRO_VERSION)
 AC_SUBST(GUILE_VERSION)
 AC_SUBST(LIBGUILE_MAJOR_VERSION)
 AC_SUBST(LIBGUILE_MINOR_VERSION)
@@ -591,8 +621,9 @@ AC_OUTPUT([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])
+           check-guile
+          guile-tools],
+         [chmod +x libguile/guile-snarf libguile/guile-doc-snarf libguile/guile-func-name-check check-guile guile-tools])
 
 dnl Local Variables:
 dnl comment-start: "dnl "