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

Remove libbind from build system (#12991)

Linking with -lbind is no longer relevant. The libbind was once part of
the ISC project bind9. In 2013, maintenance was moved to NetBSD which
integrated it into netresolv.

[1]: https://www.isc.org/othersoftware/#libbind
[2]: https://wiki.netbsd.org/individual-software-releases/netresolv/
This commit is contained in:
Peter Kokot
2024-01-04 10:23:46 -08:00
committed by GitHub
parent 0b7cd1423a
commit 2caa2fe00d
2 changed files with 8 additions and 8 deletions

View File

@@ -378,8 +378,8 @@ case $host_alias in
;;
esac
dnl Check for inet_aton in -lc, -lbind and -lresolv.
PHP_CHECK_FUNC(inet_aton, resolv, bind)
dnl Check for inet_aton in -lc and -lresolv.
PHP_CHECK_FUNC(inet_aton, resolv)
dnl Then headers.
dnl ----------------------------------------------------------------------------

View File

@@ -352,17 +352,17 @@ dnl Detect library functions needed by php dns_xxx functions
dnl ext/standard/php_dns.h will collect these in a single define
dnl HAVE_FULL_DNS_FUNCS
dnl
PHP_CHECK_FUNC(res_nsearch, resolv, bind, socket)
PHP_CHECK_FUNC(res_ndestroy, resolv, bind, socket)
PHP_CHECK_FUNC(dns_search, resolv, bind, socket)
PHP_CHECK_FUNC(dn_expand, resolv, bind, socket)
PHP_CHECK_FUNC(dn_skipname, resolv, bind, socket)
PHP_CHECK_FUNC(res_nsearch, resolv, socket)
PHP_CHECK_FUNC(res_ndestroy, resolv, socket)
PHP_CHECK_FUNC(dns_search, resolv, socket)
PHP_CHECK_FUNC(dn_expand, resolv, socket)
PHP_CHECK_FUNC(dn_skipname, resolv, socket)
dnl
dnl These are old deprecated functions
dnl
PHP_CHECK_FUNC(res_search, resolv, bind, socket)
PHP_CHECK_FUNC(res_search, resolv, socket)
PHP_CHECK_FUNC(posix_spawn_file_actions_addchdir_np)