Skip to content
Snippets Groups Projects
Commit a7f511c4 authored by deuce's avatar deuce
Browse files

Update Cryptlib to the now official 3.4.4 release.

parent ff0f6ba9
Branches
Tags
No related merge requests found
--- misc/os_spec.h.orig 2017-07-11 01:49:00.000000000 -0400 --- misc/os_spec.h.orig 2018-01-10 01:39:04.000000000 -0500
+++ misc/os_spec.h 2018-01-03 03:19:26.025930000 -0500 +++ misc/os_spec.h 2018-01-29 14:29:27.367319000 -0500
@@ -222,10 +222,11 @@ @@ -223,10 +223,11 @@
preprocessors get confused if they aren't defined */ preprocessors get confused if they aren't defined */
#define VC_16BIT( version ) 0 #define VC_16BIT( version ) 0
#define VC_LE_VC6( version ) 0 #define VC_LE_VC6( version ) 0
...@@ -14,15 +14,12 @@ ...@@ -14,15 +14,12 @@
#define VC_GE_2010( version ) 0 #define VC_GE_2010( version ) 0
#define VC_GE_2012( version ) 0 #define VC_GE_2012( version ) 0
#define VC_GE_2013( version ) 0 #define VC_GE_2013( version ) 0
@@ -933,7 +934,10 @@ @@ -946,6 +947,8 @@
test will tell us the endianness under Unix */ #if defined( __APPLE__ )
#include <machine/endian.h>
#ifdef __GNUC__ #elif defined( __NetBSD__ )
- #include <endian.h> + #include <sys/endian.h>
+ /* I suspect the above was supposed to be #ifndef */ + #elif defined( __FreeBSD__ )
+ #if !(defined(BIG_ENDIAN) || defined(__BYTE_ORDER__) || defined(__LITTLE_ENDIAN__) || defined(BYTES_BIG_ENDIAN)) #include <sys/endian.h>
+ #include <endian.h> #else
+ #endif #include <endian.h>
#endif /* GCC */
#if defined( CONFIG_DATA_LITTLEENDIAN ) || defined( CONFIG_DATA_BIGENDIAN )
--- makefile.orig 2018-01-03 01:54:50.601991000 -0500 --- makefile.orig 2018-01-09 22:46:54.000000000 -0500
+++ makefile 2018-01-03 01:55:05.088060000 -0500 +++ makefile 2018-01-29 14:27:27.783443000 -0500
@@ -1879,9 +1879,9 @@ @@ -1894,8 +1894,8 @@
MINGW32_NT-6.1: MINGW32_NT-6.1:
$(MAKE) OSNAME=win32 target-init $(MAKE) OSNAME=win32 target-init
- $(MAKE) $(DEFINES) EXTRAOBJS="$(WIN32ASMOBJS)" \ - $(MAKE) $(DEFINES) EXTRAOBJS="$(WIN32ASMOBJS)" \
- CFLAGS="$(XCFLAGS) -O2 -Wl,--subsystem,windows,--output-def,cl32.def"
+ $(MAKE) OSNAME=win32 $(DEFINES) EXTRAOBJS="$(WIN32ASMOBJS)" \ + $(MAKE) OSNAME=win32 $(DEFINES) EXTRAOBJS="$(WIN32ASMOBJS)" \
CFLAGS="$(XCFLAGS) -fomit-frame-pointer -O3 \ + CFLAGS="$(XCFLAGS) -O2 -Wl,--subsystem,windows,--output-def,cl32.def -DSTATIC_LIB"
- -Wl,--subsystem,windows,--output-def,cl32.def"
+ -Wl,--subsystem,windows,--output-def,cl32.def -DSTATIC_LIB"
# NCR MP-RAS: Use the NCR cc. The "-DNCR_UST" is needed to enable threading # NCR MP-RAS: Use the NCR cc. The "-DNCR_UST" is needed to enable threading
# (User-Space Threads). # (User-Space Threads).
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment