- (dtucker) [configure.ac] Bug #1148: Fix "crippled AES" test so that it
works with picky compilers. Patch from alex.kiernan at thus.net.
This commit is contained in:
parent
bfd52192f3
commit
cc7c212830
|
@ -1,3 +1,7 @@
|
||||||
|
20060202
|
||||||
|
- (dtucker) [configure.ac] Bug #1148: Fix "crippled AES" test so that it
|
||||||
|
works with picky compilers. Patch from alex.kiernan at thus.net.
|
||||||
|
|
||||||
20060201
|
20060201
|
||||||
- (djm) [regress/test-exec.sh] Try 'logname' as well as 'whoami' to
|
- (djm) [regress/test-exec.sh] Try 'logname' as well as 'whoami' to
|
||||||
determine the user's login name - needed for regress tests on Solaris
|
determine the user's login name - needed for regress tests on Solaris
|
||||||
|
@ -3818,4 +3822,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4118 2006/02/01 11:32:17 djm Exp $
|
$Id: ChangeLog,v 1.4119 2006/02/02 07:44:19 dtucker Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# $Id: configure.ac,v 1.322 2006/01/29 13:22:39 dtucker Exp $
|
# $Id: configure.ac,v 1.323 2006/02/02 07:44:19 dtucker Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 1999-2004 Damien Miller
|
# Copyright (c) 1999-2004 Damien Miller
|
||||||
#
|
#
|
||||||
|
@ -1832,7 +1832,7 @@ AC_COMPILE_IFELSE(
|
||||||
[AC_LANG_SOURCE([[
|
[AC_LANG_SOURCE([[
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <openssl/evp.h>
|
#include <openssl/evp.h>
|
||||||
int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL)}
|
int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);}
|
||||||
]])],
|
]])],
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
|
|
Loading…
Reference in New Issue