From: Richard Levitte Date: Mon, 28 Jun 2004 13:05:53 +0000 (+0000) Subject: Recent changes from 0.9.6-stable. X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3001755d45a9a0906031986530aba93a0337de7e;p=oweals%2Fopenssl.git Recent changes from 0.9.6-stable. --- diff --git a/Configure b/Configure index c0f79cac82..47b56aa80b 100755 --- a/Configure +++ b/Configure @@ -376,7 +376,7 @@ my %table=( "qnx6", "cc:-DL_ENDIAN -DTERMIOS::(unknown):-lsocket:${x86_gcc_des} ${x86_gcc_opts}:", # Linux on ARM -"linux-elf-arm","gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT::BN_LLONG::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +"linux-elf-arm","gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT:-ldl:BN_LLONG::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", # UnixWare 2.0x fails destest with -O "unixware-2.0","cc:-DFILIO_H::-Kthread:-lsocket -lnsl -lx:${x86_gcc_des} ${x86_gcc_opts}:::", diff --git a/apps/speed.c b/apps/speed.c index 67c0300be7..27e4b69aad 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -192,7 +192,11 @@ #endif #undef BUFSIZE -#define BUFSIZE ((long)1024*8+1) +/* BUFSIZE needs to be one cipherblock larger than the largest number in the + lengths array (see below), to make space for padding when doing EVP tests. + 1024 extra bytes may seem much, but hey, it doesn't hurt! + -- Richard Levitte */ +#define BUFSIZE ((long)1024*9+1) int run=0; static double Time_F(int s, int usertime);