Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joey Salazar
BIND
Commits
0c03a0fb
Commit
0c03a0fb
authored
Sep 20, 2017
by
Mukund Sivaraman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show configure message for "checking whether to use OpenSSL hash functions..."
parent
db22b3ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
23 deletions
+26
-23
configure
configure
+17
-15
configure.in
configure.in
+9
-8
No files found.
configure
View file @
0c03a0fb
...
...
@@ -1000,9 +1000,9 @@ with_ecdsa
with_gost
with_eddsa
with_aes
enable_openssl_hash
with_cc_alg
enable_openssl_version_check
enable_openssl_hash
enable_crypto_rand
with_lmdb
with_libxml2
...
...
@@ -1695,9 +1695,9 @@ Optional Features:
--enable-devpoll use /dev/poll when available [default=yes]
--enable-threads enable multithreading
--enable-native-pkcs11 use native PKCS11 for all crypto [default=no]
--enable-openssl-hash use OpenSSL for hash functions [default=yes]
--enable-openssl-version-check
check OpenSSL version [default=yes]
--enable-openssl-hash use OpenSSL for hash functions [default=yes]
--enable-crypto-rand use the crypto provider for random [default=yes]
--enable-largefile 64-bit file support
--enable-backtrace log stack backtrace on abort [default=yes]
...
...
@@ -15843,17 +15843,6 @@ else
fi
#
# was --enable-openssl-hash specified?
#
# Check whether --enable-openssl-hash was given.
if test "${enable_openssl_hash+set}" = set; then :
enableval=$enable_openssl_hash; want_openssl_hash="$enableval"
else
want_openssl_hash="whenossl"
fi
#
# Client Cookie algorithm choice
#
...
...
@@ -16610,8 +16599,8 @@ fi
# Choose Client Cookie algorithm
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the
A
lgorithm for Client Cookie" >&5
$as_echo_n "checking for the
A
lgorithm for Client Cookie... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for the
a
lgorithm for Client Cookie" >&5
$as_echo_n "checking for the
a
lgorithm for Client Cookie... " >&6; }
if test "auto" = "$with_cc_alg"
then
if test "yes" = "$with_aes"
...
...
@@ -16649,6 +16638,19 @@ esac
# Use OpenSSL for hash functions
#
#
# was --enable-openssl-hash specified?
#
# Check whether --enable-openssl-hash was given.
if test "${enable_openssl_hash+set}" = set; then :
enableval=$enable_openssl_hash; want_openssl_hash="$enableval"
else
want_openssl_hash="whenossl"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use OpenSSL hash functions" >&5
$as_echo_n "checking whether to use OpenSSL hash functions... " >&6; }
ISC_PLATFORM_OPENSSLHASH="#undef ISC_PLATFORM_OPENSSLHASH"
if test "whenossl" = "$want_openssl_hash"
then
...
...
configure.in
View file @
0c03a0fb
...
...
@@ -1467,13 +1467,6 @@ AC_ARG_WITH(eddsa, [ --with-eddsa Crypto EDDSA [yes|all|no].],
AC_ARG_WITH(aes, [ --with-aes Crypto AES],
with_aes="$withval", with_aes="checkcc")
#
# was --enable-openssl-hash specified?
#
AC_ARG_ENABLE(openssl-hash,
[ --enable-openssl-hash use OpenSSL for hash functions [[default=yes]]],
want_openssl_hash="$enableval", want_openssl_hash="whenossl")
#
# Client Cookie algorithm choice
#
...
...
@@ -2049,7 +2042,7 @@ AC_SUBST(ISC_PLATFORM_WANTAES)
# Choose Client Cookie algorithm
#
AC_MSG_CHECKING(for the
A
lgorithm for Client Cookie)
AC_MSG_CHECKING(for the
a
lgorithm for Client Cookie)
if test "auto" = "$with_cc_alg"
then
if test "yes" = "$with_aes"
...
...
@@ -2081,6 +2074,14 @@ esac
# Use OpenSSL for hash functions
#
#
# was --enable-openssl-hash specified?
#
AC_ARG_ENABLE(openssl-hash,
[ --enable-openssl-hash use OpenSSL for hash functions [[default=yes]]],
want_openssl_hash="$enableval", want_openssl_hash="whenossl")
AC_MSG_CHECKING(whether to use OpenSSL hash functions)
ISC_PLATFORM_OPENSSLHASH="#undef ISC_PLATFORM_OPENSSLHASH"
if test "whenossl" = "$want_openssl_hash"
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment