]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[master] suppress dlopen on sunos 4
authorEvan Hunt <each@isc.org>
Mon, 29 Oct 2012 22:56:59 +0000 (15:56 -0700)
committerEvan Hunt <each@isc.org>
Mon, 29 Oct 2012 22:56:59 +0000 (15:56 -0700)
configure.in

index ae37c7d1358b28170dfbfedfc79e1bdde218da32..a38d6175333dca514bc5ea9c49e6d307335ea3c8 100644 (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