. Update to 7u71.

This commit is contained in:
Greg Lewis 2014-11-01 20:18:09 +00:00
parent 7ab5bb5f5d
commit ba2e9ae12a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=372038
3 changed files with 13218 additions and 2147 deletions

View File

@ -35,8 +35,8 @@ DEBUG_DESC= Enable extra debugging info
POLICY_DESC= Install the Unlimited Strength Policy Files
TZUPDATE_DESC= Update the time zone data
PORT_MINOR_VERSION= 65
PORT_BUILD_NUMBER= 17
PORT_MINOR_VERSION= 71
PORT_BUILD_NUMBER= 14
JDK_MAJOR_VERSION= 7
JDK_MINOR_VERSION= 40
JDK_BUILD_NUMBER= 43

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +0,0 @@
--- jdk/src/share/native/com/sun/java/util/jar/pack/zip.cpp.orig 2014-07-12 09:24:56.000000000 -0700
+++ jdk/src/share/native/com/sun/java/util/jar/pack/zip.cpp 2014-07-12 09:28:38.000000000 -0700
@@ -33,6 +33,10 @@
#include <stdlib.h>
+#ifdef _ALLBSD_SOURCE
+#include <machine/endian.h>
+#endif
+
#ifndef _MSC_VER
#include <strings.h>
#endif
@@ -62,7 +66,7 @@
#endif // End of ZLIB
-#ifdef _BIG_ENDIAN
+#if (BYTE_ORDER == BIG_ENDIAN)
#define SWAP_BYTES(a) \
((((a) << 8) & 0xff00) | 0x00ff) & (((a) >> 8) | 0xff00)
#else