Use <syslog.h>, not <sys/syslog.h>.
Jarkko Hietaniemi [Fri, 4 Feb 2000 19:13:10 +0000 (19:13 +0000)]
p4raw-id: //depot/cfgperl@4992

Configure
ext/Sys/Syslog/Syslog.xs

index 2c81abb..25a149c 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
 
 # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
 #
-# Generated on Fri Feb  4 21:06:42 EET 2000 [metaconfig 3.0 PL70]
+# Generated on Fri Feb  4 21:15:39 EET 2000 [metaconfig 3.0 PL70]
 # (with additional metaconfig patches by perlbug@perl.com)
 
 cat >/tmp/c1$$ <<EOF
index ac5220c..d227343 100644 (file)
@@ -2,7 +2,9 @@
 #include "perl.h"
 #include "XSUB.h"
 
-#include <sys/syslog.h>
+#ifdef I_SYSLOG
+#include <syslog.h>
+#endif
 
 static double
 constant_LOG_NO(char *name, int len, int arg)