diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-09-29 20:16:51 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-09-29 20:16:51 +1000 |
commit | 5e8381ee8626c0f0052241926abacf031b5187ec (patch) | |
tree | 1cf3cff103724360905f9204cca12b36c1706b44 | |
parent | 23dd658e5701ba611229ca1a95dd3ab2c00fb316 (diff) |
- (dtucker) [configure.ac] Bug #1239: Fix configure test for OpenSSH engine
support. Patch from andrew.benham at thus net.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20060929 | ||
2 | - (dtucker) [configure.ac] Bug #1239: Fix configure test for OpenSSH engine | ||
3 | support. Patch from andrew.benham at thus net. | ||
4 | |||
1 | 20060928 | 5 | 20060928 |
2 | - (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error | 6 | - (dtucker) [entropy.c] Bug #1238: include signal.h to fix compilation error |
3 | on Solaris 8 w/out /dev/random or prngd. Patch from rl at | 7 | on Solaris 8 w/out /dev/random or prngd. Patch from rl at |
@@ -2502,4 +2506,4 @@ | |||
2502 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 2506 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
2503 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 2507 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
2504 | 2508 | ||
2505 | $Id: ChangeLog,v 1.4563 2006/09/28 09:40:20 dtucker Exp $ | 2509 | $Id: ChangeLog,v 1.4564 2006/09/29 10:16:51 dtucker Exp $ |
diff --git a/configure.ac b/configure.ac index cfcd0272d..883708559 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.367 2006/09/24 19:08:59 tim Exp $ | 1 | # $Id: configure.ac,v 1.368 2006/09/29 10:16:51 dtucker Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) | 17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) |
18 | AC_REVISION($Revision: 1.367 $) | 18 | AC_REVISION($Revision: 1.368 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | 20 | ||
21 | AC_CONFIG_HEADER(config.h) | 21 | AC_CONFIG_HEADER(config.h) |
@@ -1916,7 +1916,7 @@ AC_ARG_WITH(ssl-engine, | |||
1916 | AC_TRY_COMPILE( | 1916 | AC_TRY_COMPILE( |
1917 | [ #include <openssl/engine.h>], | 1917 | [ #include <openssl/engine.h>], |
1918 | [ | 1918 | [ |
1919 | int main(void){ENGINE_load_builtin_engines();ENGINE_register_all_complete();} | 1919 | ENGINE_load_builtin_engines();ENGINE_register_all_complete(); |
1920 | ], | 1920 | ], |
1921 | [ AC_MSG_RESULT(yes) | 1921 | [ AC_MSG_RESULT(yes) |
1922 | AC_DEFINE(USE_OPENSSL_ENGINE, 1, | 1922 | AC_DEFINE(USE_OPENSSL_ENGINE, 1, |