diff options
Diffstat (limited to '')
-rw-r--r-- | external/unbound/configure_checks.cmake | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/external/unbound/configure_checks.cmake b/external/unbound/configure_checks.cmake index 6b812858e..edb64c788 100644 --- a/external/unbound/configure_checks.cmake +++ b/external/unbound/configure_checks.cmake @@ -49,6 +49,7 @@ if (WIN32) ws2_32) endif () +check_function_exists(_beginthreadex HAVE__BEGINTHREADEX) check_function_exists(arc4random HAVE_ARC4RANDOM) check_function_exists(arc4random_uniform HAVE_ARC4RANDOM_UNIFORM) check_function_exists(chown HAVE_CHOWN) @@ -60,17 +61,20 @@ check_function_exists(endservent HAVE_ENDSERVENT) check_function_exists(fnctl HAVE_FNCTL) check_function_exists(fork HAVE_FORK) check_function_exists(fseeko HAVE_FSEEKO) +check_function_exists(fsync HAVE_FSYNC) check_function_exists(getauxval HAVE_GETAUXVAL) check_function_exists(getentropy HAVE_GETENTROPY) check_function_exists(getpwnam HAVE_GETPWNAM) check_function_exists(getrlimit HAVE_GETRLIMIT) check_function_exists(glob HAVE_GLOB) check_function_exists(gmtime_r HAVE_GMTIME_R) +check_function_exists(fcntl HAVE_FCNTL) check_function_exists(inet_aton HAVE_INET_ATON) check_function_exists(inet_ntop HAVE_INET_NTOP) check_function_exists(inet_pton HAVE_INET_PTON) check_function_exists(initgroups HAVE_INITGROUPS) check_function_exists(ioctlsocket HAVE_IOCTLSOCKET) +check_function_exists(isblank HAVE_ISBLANK) check_function_exists(kill HAVE_KILL) check_function_exists(localtime_r HAVE_LOCALTIME_R) check_function_exists(malloc HAVE_MALLOC) @@ -211,7 +215,7 @@ set(UNBOUND_PIDFILE "${CMAKE_INSTALL_PREFIX}/etc/unbound/unbound.pid" # Copied from configure.ac. set(WINVER 0x0502) -set(PACKAGE_VERSION "1.4.23") +set(PACKAGE_VERSION "1.5.8") set(PACKAGE_NAME "${PROJECT_NAME}") set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") set(MAXSYSLOGMSGLEN 10240) |