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
589
Issues
589
List
Boards
Labels
Service Desk
Milestones
Merge Requests
113
Merge Requests
113
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
ISC Open Source Projects
BIND
Commits
8f80420c
Commit
8f80420c
authored
Feb 20, 2014
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't set want_openssl_aes unless CRYPTO = -DOPENSSL
parent
5b7dbbf1
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
config.h.in
config.h.in
+3
-0
configure
configure
+4
-1
configure.in
configure.in
+4
-1
No files found.
config.h.in
View file @
8f80420c
...
...
@@ -188,6 +188,9 @@ int sigwait(const unsigned int *set, int *sig);
MSVC and with C++ compilers. */
#undef FLEXIBLE_ARRAY_MEMBER
/* Define to 1 if you have the `AES_encrypt' function. */
#undef HAVE_AES_ENCRYPT
/* Define to 1 if you have the `chroot' function. */
#undef HAVE_CHROOT
...
...
configure
View file @
8f80420c
...
...
@@ -15684,7 +15684,10 @@ $as_echo "#define HMAC_SHA256_SIT 1" >>confdefs.h
if test "$ac_cv_func_AES_encrypt" = "yes"
then
with_sit_alg="aes"
if test "$CRYPTO" = "-DOPENSSL"
then
want_openssl_aes="yes"
fi
$as_echo "#define AES_SIT 1" >>confdefs.h
...
...
configure.in
View file @
8f80420c
...
...
@@ -1558,7 +1558,10 @@ case $with_sit_alg in
if test "$ac_cv_func_AES_encrypt" = "yes"
then
with_sit_alg="aes"
if test "$CRYPTO" = "-DOPENSSL"
then
want_openssl_aes="yes"
fi
AC_DEFINE(AES_SIT, 1,
[Use AES for Source Identity Token generation])
else
...
...
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