]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix to update config tests to fix checking if nonblocking sockets
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 1 Sep 2022 07:16:05 +0000 (09:16 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 1 Sep 2022 07:16:05 +0000 (09:16 +0200)
  work on OpenBSD.

acx_nlnetlabs.m4
configure
doc/Changelog

index 1574f97bfe027ea92d920bf7033afa2780db659c..cf436ec54bb6c7b94dfe781eca79ac641c66b071 100644 (file)
@@ -2,7 +2,8 @@
 # Copyright 2009, Wouter Wijngaards, NLnet Labs.   
 # BSD licensed.
 #
-# Version 43
+# Version 44
+# 2022-09-01 fix checking if nonblocking sockets work on OpenBSD.
 # 2021-08-17 fix sed script in ssldir split handling.
 # 2021-08-17 fix for openssl to detect split version, with ssldir_include
 #           and ssldir_lib output directories.
@@ -963,6 +964,9 @@ AC_LANG_SOURCE([[
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
 #ifdef HAVE_SYS_SOCKET_H
 #include <sys/socket.h>
 #endif
index 5e489d4baed177444effa07003d0896dae071b52..cd44265fb12436cc7dc3c03b58f6d825dbcdd23a 100755 (executable)
--- a/configure
+++ b/configure
@@ -16031,6 +16031,9 @@ else
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
 #ifdef HAVE_SYS_SOCKET_H
 #include <sys/socket.h>
 #endif
index 2ea68e1a22e3a6fc967e6ff56b48d4f46385ba91..b3f532698a5e9c940bfb175f06d2f1d58c711c93 100644 (file)
@@ -1,3 +1,7 @@
+1 September 2022: Wouter
+       - Fix to update config tests to fix checking if nonblocking sockets
+         work on OpenBSD.
+
 31 August 2022: Wouter
        - Fix to avoid process wide fcntl calls mixed with nonblocking
          operations after a blocked write.