2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

use double, not single quote

This commit is contained in:
Michael Graff 2000-08-03 20:16:50 +00:00
parent e8892697f9
commit 5080f1b235
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -15,7 +15,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# From configure.in Revision: 1.172
# From configure.in Revision: 1.173
## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*-
## Copyright (C) 1996-1999 Free Software Foundation, Inc.
@ -1204,7 +1204,7 @@ if test "X$openssl" = "X" ; then
else
DST_PRIVATEOPENSSL=''
dst_privateopenssl=''
DST_OPENSSL_INC='-I$openssl/include'
DST_OPENSSL_INC="-I$openssl/include"
DNS_OPENSSL_LIBS="-L$openssl/lib -lssl -lcrypto"
DST_OPENSSL_LIB=''
echo "$ac_t""using openssl from $openssl/lib and $openssl/include" 1>&6

View File

@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.172 $)
AC_REVISION($Revision: 1.173 $)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.13)
@ -201,7 +201,7 @@ if test "X$openssl" = "X" ; then
else
DST_PRIVATEOPENSSL=''
dst_privateopenssl=''
DST_OPENSSL_INC='-I$openssl/include'
DST_OPENSSL_INC="-I$openssl/include"
DNS_OPENSSL_LIBS="-L$openssl/lib -lssl -lcrypto"
DST_OPENSSL_LIB=''
AC_MSG_RESULT(using openssl from $openssl/lib and $openssl/include)