[master] suppress dlopen on sunos 4

This commit is contained in:
Evan Hunt
2012-10-29 15:56:59 -07:00
parent cb761bbd5f
commit 6f6b1abb10

View File

@@ -3366,6 +3366,11 @@ AC_ARG_WITH(dlopen,
[ --with-dlopen=ARG Support dynamically loadable DLZ drivers],
dlopen="$withval", dlopen="yes")
case $host in
*-sunos*) dlopen="no"
;;
esac
if test "$dlopen" = "yes"; then
AC_CHECK_LIB(dl, dlopen, have_dl=yes, have_dl=no)
if test "$have_dl" = "yes"; then