1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

ext/standard: enabling feature detection auxiliary vector on OpenBSD.

close gh-15175
This commit is contained in:
David Carlier
2024-07-30 23:26:42 +01:00
parent fcd4d391fa
commit d5c7f3b0e6
3 changed files with 3 additions and 2 deletions

1
NEWS
View File

@@ -58,6 +58,7 @@ PHP NEWS
- Standard:
. Unserializing the uppercase 'S' tag is now deprecated. (timwolla)
. Enables crc32 auxiliary detection on OpenBSD. (David Carlier)
- Streams:
. Implemented GH-15155 (Stream context is lost when custom stream wrapper is

View File

@@ -346,7 +346,7 @@ dnl
PHP_CHECK_FUNC(res_search, resolv, socket)
AC_CHECK_FUNCS([posix_spawn_file_actions_addchdir_np])
AC_CHECK_FUNCS([posix_spawn_file_actions_addchdir_np elf_aux_info])
dnl
dnl Obsolete check for strptime() declaration. The strptime, where available,

View File

@@ -28,7 +28,7 @@
# include <asm/hwcap.h>
# elif defined(__APPLE__)
# include <sys/sysctl.h>
# elif defined(__FreeBSD__)
# elif defined(HAVE_ELF_AUX_INFO)
# include <sys/auxv.h>
static unsigned long getauxval(unsigned long key) {