From 346166a44c7989380e4b1ca096fb6afceda47df2 Mon Sep 17 00:00:00 2001 From: stolz Date: Wed, 15 Sep 2004 13:51:00 +0000 Subject: [PATCH] [project @ 2004-09-15 13:50:59 by stolz] - Remove configure tests for SIG{POLL,INFO,WINCH}: Testing via #ifdef SIGFOO should be sufficient. - Change #if HAVE_SIGPOLL to #ifdef SIGPOLL - Remove SIGINFO/WINCH from package base: they'll reappear in package unix in System/Posix/Signals.Exts. --- configure.ac | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/configure.ac b/configure.ac index 75c4011..bdccd70 100644 --- a/configure.ac +++ b/configure.ac @@ -1410,31 +1410,4 @@ FPTOOLS_LD_X FP_EMPTY_STRUCTS -AC_MSG_CHECKING([for SIGPOLL]) -AC_EGREP_CPP(we_have_sigpoll, -[#include -#ifdef SIGPOLL -we_have_sigpoll -#endif -], AC_DEFINE([HAVE_SIGPOLL], [1], [Define to 1 if you have the sigpoll() function.]) haveSIGPOLL=yes, haveSIGPOLL=no) -AC_MSG_RESULT([$haveSIGPOLL]) - -AC_MSG_CHECKING([for SIGINFO]) -AC_EGREP_CPP(we_have_siginfo, -[#include -#ifdef SIGINFO -we_have_siginfo -#endif -], AC_DEFINE([HAVE_SIGINFO], [1], [Define to 1 if you have the INFO-signal.]) haveSIGINFO=yes, haveSIGINFO=no) -AC_MSG_RESULT([$haveSIGINFO]) - -AC_MSG_CHECKING([for SIGWINCH]) -AC_EGREP_CPP(we_have_sigwinch, -[#include -#ifdef SIGWINCH -we_have_sigwinch -#endif -], AC_DEFINE([HAVE_SIGWINCH], [1], [Define to 1 if you have the WINCH-signal.]) haveSIGWINCH=yes, haveSIGWINCH=no) -AC_MSG_RESULT([$haveSIGWINCH]) - AC_OUTPUT(mk/config.mk, echo timestamp > mk/stamp-h ) -- 1.7.10.4