Commit 3001755d authored by Richard Levitte's avatar Richard Levitte
Browse files

Recent changes from 0.9.6-stable.

parent 46e9a491
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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}:::",
+5 −1
Original line number Diff line number Diff line
@@ -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);