From: Evan Hunt Date: Mon, 29 Oct 2012 22:56:59 +0000 (-0700) Subject: [master] suppress dlopen on sunos 4 X-Git-Tag: v9.10.0a1~752 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f6b1abb106d970f1b0c5e959cddfabc9cc3b4ae;p=thirdparty%2Fbind9.git [master] suppress dlopen on sunos 4 --- diff --git a/configure.in b/configure.in index ae37c7d1358..a38d6175333 100644 --- a/configure.in +++ b/configure.in @@ -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