I noticed when building coreutils-5.2.0.tar.gz that configure
doesn't recognize __sys_siglist[] on Tru64 systems.  The problem is the
test program doesn't include signal.h.  One could imagine that the tests
for _sys_siglist[] and sys_siglist[] might also require signal.h to be
included...  (It makes sense that the array would be declared there.)
Anyway, here's the patch to configure for the __sys_siglist[] test:

--- configure.orig      2004-02-08 12:13:01.000000000 -0800
+++ configure   2004-02-27 19:23:21.000000000 -0800
@@ -48238,6 +48238,7 @@
 cat >>conftest.$ac_ext <<_ACEOF
 /* end confdefs.h.  */
 $ac_includes_default
+#include <signal.h>
 int
 main ()
 {

(i.e. just add "#include <signal.h>" to the __sys_siglist check program.)

-Tony

-- 
e-mail: [EMAIL PROTECTED]                 Computerized Vehicle Registration
phone : 503 402-3531                    2525 SW 1st Ave, Suite 450
FAX   : 503 294-1526                    Portland, OR 97201-4760
PGP   : 1024D/145E65E0  456A 740F F14C 64D6 EB07 E70E 037A 1601 145E 65E0


_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to