Skip to content

Commit 6f3888f

Browse files
authored
Remove root library check for dlopen() and dlsym() (#13086)
The root library was added here for the Haiku system, to check dlopen() and dlsym(). However, the root library is already explicitly linked in the system, and it does not need to be checked neither linked anymore, since at least ~2013.
1 parent 2fec3e7 commit 6f3888f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ PHP_CHECK_FUNC(socketpair, socket, network)
365365
PHP_CHECK_FUNC(htonl, socket, network)
366366
PHP_CHECK_FUNC(gethostname, nsl, network)
367367
PHP_CHECK_FUNC(gethostbyaddr, nsl, network)
368-
PHP_CHECK_FUNC(dlopen, dl, root)
369-
PHP_CHECK_FUNC(dlsym, dl, root)
368+
PHP_CHECK_FUNC(dlopen, dl)
369+
PHP_CHECK_FUNC(dlsym, dl)
370370
if test "$ac_cv_func_dlopen" = "yes"; then
371371
AC_DEFINE(HAVE_LIBDL, 1, [ ])
372372
fi

0 commit comments

Comments
 (0)