Sat Jun 22 14:56:05 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
authorRoland McGrath <roland@redhat.com>
Sat, 22 Jun 1996 22:00:31 +0000 (22:00 +0000)
committerRoland McGrath <roland@redhat.com>
Sat, 22 Jun 1996 22:00:31 +0000 (22:00 +0000)
* configure.in: Don't check for _sys_siglist.
* make.h [HAVE__SYS_SIGLIST]: Don't test this; just punt if there is
no strsignal or sys_siglist.

configure.in
make.h

index 164eead27a8095d510c20177fbe0b0b40fe53575..05d80c28c87bf229ba7313ef6b52961bd5d263fe 100644 (file)
@@ -42,7 +42,6 @@ AC_CHECK_FUNCS(psignal mktemp \
               dup2 getcwd sigsetmask getgroups setlinebuf \
               seteuid setegid setreuid setregid strerror strsignal)
 AC_CHECK_SYMBOL(sys_siglist)
-AC_CHECK_SYMBOL(_sys_siglist)
 AC_FUNC_ALLOCA
 AC_FUNC_VFORK
 AC_FUNC_SETVBUF_REVERSED
diff --git a/make.h b/make.h
index 43696531308e06ae3b2ee4cdfeac8b5e498f5328..01ead89f4d48d04b33742fc2e9dd7315da3f4574 100644 (file)
--- a/make.h
+++ b/make.h
@@ -86,15 +86,6 @@ extern int errno;
 #define POSIX
 #endif
 
-#if !defined (HAVE_SYS_SIGLIST) && defined (HAVE__SYS_SIGLIST)
-#define        sys_siglist     _sys_siglist
-#define        HAVE_SYS_SIGLIST        /* Now we have it.  */
-
-/* It was declared in <signal.h>, with who knows what type.
-   Don't declare it again and risk conflicting.  */
-#define        SYS_SIGLIST_DECLARED
-#endif
-
 #ifdef HAVE_SYS_SIGLIST
 #ifndef SYS_SIGLIST_DECLARED
 extern char *sys_siglist[];