mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 23:09:59 -04:00
solaris spectify -R for openssl linking
This commit is contained in:
parent
7360d06313
commit
964a803b2e
1 changed files with 9 additions and 2 deletions
11
configure.in
11
configure.in
|
|
@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
|
|||
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
|
||||
AC_DIVERT_POP()dnl
|
||||
|
||||
AC_REVISION($Revision: 1.348 $)
|
||||
AC_REVISION($Revision: 1.349 $)
|
||||
|
||||
AC_INIT(lib/dns/name.c)
|
||||
AC_PREREQ(2.13)
|
||||
|
|
@ -361,7 +361,14 @@ case "$use_openssl" in
|
|||
fi
|
||||
USE_OPENSSL='-DOPENSSL'
|
||||
DST_OPENSSL_INC="-I$use_openssl/include"
|
||||
DNS_OPENSSL_LIBS="-L$use_openssl/lib -lcrypto"
|
||||
case $host in
|
||||
*-solaris*)
|
||||
DNS_OPENSSL_LIBS="-L$use_openssl/lib -R$use_openssl/lib -lcrypto"
|
||||
;;
|
||||
*)
|
||||
DNS_OPENSSL_LIBS="-L$use_openssl/lib -lcrypto"
|
||||
;;
|
||||
esac
|
||||
AC_MSG_RESULT(using openssl from $use_openssl/lib and $use_openssl/include)
|
||||
|
||||
saved_cflags="$CFLAGS"
|
||||
|
|
|
|||
Loading…
Reference in a new issue