ossp-pkg/pth/configure.ac 1.6 -> 1.7
--- configure.ac 2002/10/20 11:45:10 1.6
+++ configure.ac 2002/10/20 13:49:29 1.7
@@ -400,6 +400,13 @@
fi
AC_SUBST(PTH_STACK_GROWTH)
+dnl # GNU Hurd has a broken libc which has stubs for sigaltstack and
+dnl # sigstack. When the following Autoconf checks for them are run, it
+dnl # even crashes the system. So we have to disable these checks here.
+case $PLATFORM in
+ *86-*-gnu0* ) ac_cv_func_sigaltstack="no"; ac_cv_func_sigstack="no" ;;
+esac
+
dnl # how to specify stacks for the various functions
AC_CHECK_STACKSETUP(makecontext, pth_skaddr_makecontext, pth_sksize_makecontext)
AC_CHECK_STACKSETUP(sigaltstack, pth_skaddr_sigaltstack, pth_sksize_sigaltstack)
|
|