]> granicus.if.org Git - libevent/commitdiff
Use signal.h, not sys/signal.h.
authorNick Mathewson <nickm@torproject.org>
Thu, 23 Apr 2009 00:21:23 +0000 (00:21 +0000)
committerNick Mathewson <nickm@torproject.org>
Thu, 23 Apr 2009 00:21:23 +0000 (00:21 +0000)
This is patch 2673214 from mmadia.  It is correct, since we unconditionally
include signal.h in many other places, and only sometimes include sys/signal.h.
It is necessary to compile on Haiku, I'm told.

svn:r1228

ChangeLog
configure.in
test/bench_cascade.c
test/bench_http.c
test/regress_util.c
test/regress_zlib.c

index a8f77200c3141bd9b67484bc256be0d95513038b..a22d9fe736c1edd0a2ee8441efb181b841de71f0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@ Changes in 2.0.2-alpha:
  o Add a flag to disable checking environment varibles when making an event_base
  o Disallow setting less than 1 priority.
  o Fix a bug when removing a timeout from the heap. [Patch from Marko Kreen]
+ o Use signal.h, not sys/signal.h. [Patch from mmadia]
 
 Changes in 2.0.1-alpha:
  o free minheap on event_base_free(); from Christopher Layne
index c83cd0ae1537cc16a1b909e6c40c894e5974992e..3a0409588673f3253532f5a1cef275a6c6efb770 100644 (file)
@@ -63,7 +63,7 @@ AM_CONDITIONAL(ZLIB_REGRESS, [test "$have_zlib" != "no"])
 
 dnl Checks for header files.
 AC_HEADER_STDC
-AC_CHECK_HEADERS(fcntl.h stdarg.h inttypes.h stdint.h stddef.h poll.h signal.h unistd.h sys/epoll.h sys/time.h sys/queue.h sys/event.h sys/param.h sys/ioctl.h sys/select.h sys/devpoll.h port.h netinet/in.h netinet/in6.h sys/socket.h sys/uio.h arpa/inet.h sys/eventfd.h sys/mman.h sys/sendfile.h)
+AC_CHECK_HEADERS(fcntl.h stdarg.h inttypes.h stdint.h stddef.h poll.h unistd.h sys/epoll.h sys/time.h sys/queue.h sys/event.h sys/param.h sys/ioctl.h sys/select.h sys/devpoll.h port.h netinet/in.h netinet/in6.h sys/socket.h sys/uio.h arpa/inet.h sys/eventfd.h sys/mman.h sys/sendfile.h)
 if test "x$ac_cv_header_sys_queue_h" = "xyes"; then
        AC_MSG_CHECKING(for TAILQ_FOREACH in sys/queue.h)
        AC_EGREP_CPP(yes,
index fe80b9906b2618ca65f3ee9c914f5c0a948d6d16..e9984ae579aafbc701a4391fb666ba11bce0e787 100644 (file)
@@ -36,9 +36,9 @@
 #include <windows.h>
 #else
 #include <sys/socket.h>
-#include <sys/signal.h>
 #include <sys/resource.h>
 #endif
+#include <signal.h>
 #include <fcntl.h>
 #include <stdlib.h>
 #include <stdio.h>
index 44c5716d9bd4adb10f522260977666a979fad40b..260880744f8c10cda102ac8f801c5e406a7d2a67 100644 (file)
@@ -36,7 +36,6 @@
 #include <windows.h>
 #else
 #include <sys/socket.h>
-#include <sys/signal.h>
 #include <sys/resource.h>
 #endif
 #include <fcntl.h>
index 7e2bad71390c42d5db8eeba071a2721380494fdf..f7059b3b72f6044053677bf0c8e62940145cb9f5 100644 (file)
@@ -34,7 +34,6 @@
 #endif
 #ifndef WIN32
 #include <sys/socket.h>
-#include <sys/signal.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <unistd.h>
@@ -42,6 +41,7 @@
 #ifdef _EVENT_HAVE_NETINET_IN6_H
 #include <netinet/in6.h>
 #endif
+#include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 6e6ce504945e00cea8c4a359d8b974c52d1e983b..3f356fe1608cd730fafa54994ee3cb75795f1df9 100644 (file)
 #ifndef WIN32
 #include <sys/socket.h>
 #include <sys/wait.h>
-#include <sys/signal.h>
 #include <unistd.h>
 #include <netdb.h>
 #endif
+#include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>