123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526 |
- diff -Nur icedtea-2.3.9.orig/Makefile.in icedtea-2.3.9/Makefile.in
- --- icedtea-2.3.9.orig/Makefile.in 2013-04-21 22:48:31.000000000 +0200
- +++ icedtea-2.3.9/Makefile.in 2013-11-15 12:28:32.000000000 +0100
- @@ -90,7 +90,6 @@
- @WITH_ALT_HSBUILD_TRUE@ patches/hotspot/$(HSBUILD)/7089790-bsd_port.patch \
- @WITH_ALT_HSBUILD_TRUE@ patches/hotspot/$(HSBUILD)/7098194-macosx_port.patch \
- @WITH_ALT_HSBUILD_TRUE@ patches/hotspot/$(HSBUILD)/7116189-setnativethreadname.patch \
- -@WITH_ALT_HSBUILD_TRUE@ patches/hotspot/$(HSBUILD)/6924259-string_offset.patch \
- @WITH_ALT_HSBUILD_TRUE@ patches/hotspot/$(HSBUILD)/revert_arm_debug.patch
-
- @WITH_RHINO_TRUE@am__append_9 = \
- @@ -657,7 +656,7 @@
- $(am__append_17) $(am__append_18) $(DISTRIBUTION_PATCHES)
-
- # Bootstrapping patches
- -ICEDTEA_BOOT_PATCHES = patches/boot/javafiles.patch \
- +ICEDTEA_BOOT_PATCHES = patches/openadk.patch patches/boot/javafiles.patch \
- patches/boot/ant-javac.patch patches/boot/corba-idlj.patch \
- patches/boot/corba-no-gen.patch patches/boot/corba-orb.patch \
- patches/boot/demos.patch patches/boot/ecj-fphexconstants.patch \
- @@ -2050,7 +2049,7 @@
- # Optional native ecj
- stamps/native-ecj.stamp:
- mkdir -p stamps
- -@BUILD_NATIVE_ECJ_TRUE@ ${GCJ} $(IT_CFLAGS) -Wl,-Bsymbolic -findirect-dispatch -o native-ecj \
- +@BUILD_NATIVE_ECJ_TRUE@ ${GCJ} -lgcj -Wl,-Bsymbolic -findirect-dispatch -o native-ecj \
- @BUILD_NATIVE_ECJ_TRUE@ --main=org.eclipse.jdt.internal.compiler.batch.Main ${ECJ_JAR}
- touch $@
-
- diff -Nur icedtea-2.3.9.orig/patches/openadk.patch icedtea-2.3.9/patches/openadk.patch
- --- icedtea-2.3.9.orig/patches/openadk.patch 1970-01-01 01:00:00.000000000 +0100
- +++ icedtea-2.3.9/patches/openadk.patch 2013-11-15 13:52:27.000000000 +0100
- @@ -0,0 +1,493 @@
- +diff -Nur openjdk.orig/hotspot/src/os/linux/vm/os_linux.cpp openjdk/hotspot/src/os/linux/vm/os_linux.cpp
- +--- openjdk.orig/hotspot/src/os/linux/vm/os_linux.cpp 2013-03-15 17:33:37.000000000 +0100
- ++++ openjdk/hotspot/src/os/linux/vm/os_linux.cpp 2013-11-15 13:51:09.000000000 +0100
- +@@ -115,7 +115,6 @@
- + # include <string.h>
- + # include <syscall.h>
- + # include <sys/sysinfo.h>
- +-# include <gnu/libc-version.h>
- + # include <sys/ipc.h>
- + # include <sys/shm.h>
- + # include <link.h>
- +@@ -644,9 +643,7 @@
- + os::Linux::set_glibc_version(str);
- + } else {
- + // _CS_GNU_LIBC_VERSION is not supported, try gnu_get_libc_version()
- +- static char _gnu_libc_version[32];
- +- jio_snprintf(_gnu_libc_version, sizeof(_gnu_libc_version),
- +- "glibc %s %s", gnu_get_libc_version(), gnu_get_libc_release());
- ++ static char _gnu_libc_version[32] = "2.9";
- + os::Linux::set_glibc_version(_gnu_libc_version);
- + }
- +
- +@@ -2640,10 +2637,7 @@
- + // If we are running with earlier version, which did not have symbol versions,
- + // we should use the base version.
- + void* os::Linux::libnuma_dlsym(void* handle, const char *name) {
- +- void *f = dlvsym(handle, name, "libnuma_1.1");
- +- if (f == NULL) {
- +- f = dlsym(handle, name);
- +- }
- ++ void *f = dlsym(handle, name);
- + return f;
- + }
- +
- +@@ -4908,7 +4902,21 @@
- + // Linux doesn't yet have a (official) notion of processor sets,
- + // so just return the system wide load average.
- + int os::loadavg(double loadavg[], int nelem) {
- +- return ::getloadavg(loadavg, nelem);
- ++ FILE *LOADAVG;
- ++ double avg[3] = { 0.0, 0.0, 0.0 };
- ++ int i, res = -1;;
- ++
- ++ if ((LOADAVG = fopen("/proc/loadavg", "r"))) {
- ++ fscanf(LOADAVG, "%lf %lf %lf", &avg[0], &avg[1], &avg[2]);
- ++ res = 0;
- ++ fclose(LOADAVG);
- ++ }
- ++
- ++ for (i = 0; (i < nelem) && (i < 3); i++) {
- ++ loadavg[i] = avg[i];
- ++ }
- ++
- ++ return res;
- + }
- +
- + void os::pause() {
- +diff -Nur openjdk.orig/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp openjdk/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
- +--- openjdk.orig/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp 2013-03-15 17:33:37.000000000 +0100
- ++++ openjdk/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp 2013-11-15 13:51:57.000000000 +0100
- +@@ -253,7 +253,7 @@
- + #elif defined(__APPLE__)
- + inline int g_isnan(double f) { return isnan(f); }
- + #elif defined(LINUX) || defined(_ALLBSD_SOURCE)
- +-inline int g_isnan(float f) { return isnanf(f); }
- ++inline int g_isnan(float f) { return __isnanf(f); }
- + inline int g_isnan(double f) { return isnan(f); }
- + #else
- + #error "missing platform-specific definition here"
- +@@ -267,8 +267,8 @@
- +
- + // Checking for finiteness
- +
- +-inline int g_isfinite(jfloat f) { return finite(f); }
- +-inline int g_isfinite(jdouble f) { return finite(f); }
- ++inline int g_isfinite(jfloat f) { return isfinite(f); }
- ++inline int g_isfinite(jdouble f) { return isfinite(f); }
- +
- +
- + // Wide characters
- +diff -Nur openjdk.orig/jdk/make/com/sun/java/pack/Makefile openjdk/jdk/make/com/sun/java/pack/Makefile
- +--- openjdk.orig/jdk/make/com/sun/java/pack/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/com/sun/java/pack/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -80,7 +80,7 @@
- + LDDFLAGS += $(ZIPOBJS)
- + endif
- + else
- +- OTHER_CXXFLAGS += -DNO_ZLIB -DUNPACK_JNI
- ++ CXXFLAGS_COMMON += -DNO_ZLIB -DUNPACK_JNI
- + OTHER_LDLIBS += $(JVMLIB)
- + endif
- +
- +diff -Nur openjdk.orig/jdk/make/com/sun/nio/sctp/Makefile openjdk/jdk/make/com/sun/nio/sctp/Makefile
- +--- openjdk.orig/jdk/make/com/sun/nio/sctp/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/com/sun/nio/sctp/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -64,7 +64,7 @@
- + COMPILER_WARNINGS_FATAL=true
- + endif
- + #OTHER_LDLIBS += -L$(LIBDIR)/$(LIBARCH) -ljava -lnet -lpthread -ldl
- +-OTHER_LDLIBS += -L$(LIBDIR)/$(LIBARCH) -lnio -lnet -lpthread -ldl
- ++OTHER_LDLIBS += -L$(LIBDIR)/$(LIBARCH) -lnio -ljavanet -lpthread -ldl
- + endif
- + ifeq ($(PLATFORM), solaris)
- + #LIBSCTP = -lsctp
- +diff -Nur openjdk.orig/jdk/make/common/Defs.gmk openjdk/jdk/make/common/Defs.gmk
- +--- openjdk.orig/jdk/make/common/Defs.gmk 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/common/Defs.gmk 2013-11-15 13:51:09.000000000 +0100
- +@@ -204,7 +204,7 @@
- + ifeq ($(PLATFORM), macosx)
- + FREETYPE_HEADERS_PATH = /usr/X11R6/include
- + else
- +- FREETYPE_HEADERS_PATH = /usr/include
- ++ FREETYPE_HEADERS_PATH = /usr/include/disabled
- + endif
- + endif
- + endif
- +diff -Nur openjdk.orig/jdk/make/common/shared/Platform.gmk openjdk/jdk/make/common/shared/Platform.gmk
- +--- openjdk.orig/jdk/make/common/shared/Platform.gmk 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/common/shared/Platform.gmk 2013-11-15 13:51:09.000000000 +0100
- +@@ -160,9 +160,6 @@
- + else
- + mach := $(shell uname -m)
- + endif
- +- ifneq (,$(wildcard /usr/bin/dpkg-architecture))
- +- mach := $(shell (dpkg-architecture -qDEB_BUILD_ARCH_CPU 2>/dev/null || echo $(mach)) | sed 's/powerpc$$/ppc/;s/hppa/parisc/')
- +- endif
- + archExpr = case "$(mach)" in \
- + i[3-9]86) \
- + echo i586 \
- +diff -Nur openjdk.orig/jdk/make/java/instrument/Makefile openjdk/jdk/make/java/instrument/Makefile
- +--- openjdk.orig/jdk/make/java/instrument/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/java/instrument/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -140,6 +140,8 @@
- + # We don't want to link against -ljava
- + JAVALIB=
- +
- ++OTHER_LDLIBS += -liconv
- ++
- + #
- + # Add to ambient vpath so we pick up the library files
- + #
- +diff -Nur openjdk.orig/jdk/make/java/net/Makefile openjdk/jdk/make/java/net/Makefile
- +--- openjdk.orig/jdk/make/java/net/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/java/net/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -25,7 +25,7 @@
- +
- + BUILDDIR = ../..
- + PACKAGE = java.net
- +-LIBRARY = net
- ++LIBRARY = javanet
- + PRODUCT = sun
- + include $(BUILDDIR)/common/Defs.gmk
- +
- +diff -Nur openjdk.orig/jdk/make/java/nio/Makefile openjdk/jdk/make/java/nio/Makefile
- +--- openjdk.orig/jdk/make/java/nio/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/java/nio/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -369,7 +369,7 @@
- + endif
- +
- + ifeq ($(PLATFORM), linux)
- +- OTHER_LDLIBS += -L$(LIBDIR)/$(LIBARCH) -ljava -lnet -lpthread $(LIBDL)
- ++ OTHER_LDLIBS += -L$(LIBDIR)/$(LIBARCH) -ljava -ljavanet -lpthread $(LIBDL)
- + ifdef USE_SYSTEM_GIO
- + OTHER_LDLIBS += $(GIO_LIBS)
- + OTHER_INCLUDES += $(GIO_CFLAGS) -DUSE_SYSTEM_GIO
- +@@ -923,7 +923,7 @@
- +
- + $(GENSOR_EXE) : $(TEMPDIR)/$(GENSOR_SRC)
- + $(prep-target)
- +- ($(CD) $(TEMPDIR); $(NIO_CC) $(CPPFLAGS) $(LDDFLAGS) \
- ++ ($(CD) $(TEMPDIR); $(HOST_CC) $(CPPFLAGS_FOR_BUILD) $(LDDFLAGS) \
- + -o genSocketOptionRegistry$(EXE_SUFFIX) $(GENSOR_SRC))
- +
- + ifdef NIO_PLATFORM_CLASSES_ROOT_DIR
- +@@ -959,7 +959,7 @@
- +
- + $(GENUC_EXE) : $(GENUC_SRC)
- + $(prep-target)
- +- $(NIO_CC) $(CPPFLAGS) -o $@ $(GENUC_SRC)
- ++ $(HOST_CC) $(CPPFLAGS_FOR_BUILD) -o $@ $(GENUC_SRC)
- +
- + ifdef NIO_PLATFORM_CLASSES_ROOT_DIR
- + $(SFS_GEN)/UnixConstants.java: $(NIO_PLATFORM_CLASSES_ROOT_DIR)/sun/nio/fs/UnixConstants-$(PLATFORM)-$(ARCH).java
- +diff -Nur openjdk.orig/jdk/make/java/npt/Makefile openjdk/jdk/make/java/npt/Makefile
- +--- openjdk.orig/jdk/make/java/npt/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/java/npt/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -64,6 +64,8 @@
- + # We don't want to link against -ljava
- + JAVALIB=
- +
- ++OTHER_LDLIBS += -liconv
- ++
- + # Add -export options to explicitly spell exported symbols
- + ifeq ($(PLATFORM), windows)
- + OTHER_LCF += -export:nptInitialize -export:nptTerminate
- +diff -Nur openjdk.orig/jdk/make/sun/awt/mawt.gmk openjdk/jdk/make/sun/awt/mawt.gmk
- +--- openjdk.orig/jdk/make/sun/awt/mawt.gmk 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/sun/awt/mawt.gmk 2013-11-15 13:51:09.000000000 +0100
- +@@ -151,22 +151,6 @@
- + #endif
- +
- + LIBXTST = -lXtst
- +-ifeq ($(PLATFORM), linux)
- +- ifeq ($(ARCH_DATA_MODEL), 64)
- +- # XXX what about the rest of them?
- +- LIBXT = -lXt
- +- else
- +- # Allows for builds on Debian GNU Linux, X11 is in a different place
- +- LIBXT = $(firstword $(wildcard $(OPENWIN_LIB)/libXt.a) \
- +- $(wildcard /usr/lib/libXt.a))
- +- LIBSM = $(firstword $(wildcard $(OPENWIN_LIB)/libSM.a) \
- +- $(wildcard /usr/lib/libSM.a))
- +- LIBICE = $(firstword $(wildcard $(OPENWIN_LIB)/libICE.a) \
- +- $(wildcard /usr/lib/libICE.a))
- +- LIBXTST = $(firstword $(wildcard $(OPENWIN_LIB)/libXtst.a) \
- +- $(wildcard /usr/lib/libXtst.a))
- +- endif
- +-endif
- +
- + # Use -lXmu for EditRes support
- + LIBXMU_DBG = -lXmu
- +@@ -181,7 +165,7 @@
- + OTHER_CFLAGS += -DMLIB_NO_LIBSUNMATH
- + # XXX what is this define below? Isn't it motif-related?
- + OTHER_CFLAGS += -DXMSTRINGDEFINES=1
- +-OTHER_LDLIBS = $(LIBXMU) $(LIBXTST) -lXext $(LIBXT) $(LIBSM) $(LIBICE) -lX11 -lXi
- ++OTHER_LDLIBS = $(LIBXMU) $(LIBXTST) -lXext -lXt -lSM -lICE -lX11 -lXi
- + endif
- +
- + endif
- +@@ -230,11 +214,6 @@
- + CPPFLAGS += -I$(PLATFORM_SRC)/native/common/deps/fontconfig2
- + endif
- +
- +-ifndef HEADLESS
- +-CPPFLAGS += -I$(OPENWIN_HOME)/include
- +-LDFLAGS += -L$(OPENWIN_LIB)
- +-
- +-endif # !HEADLESS
- +
- + CPPFLAGS += -I$(SHARE_SRC)/native/$(PKGDIR)/debug \
- + -I$(SHARE_SRC)/native/$(PKGDIR)/../font \
- +@@ -269,11 +248,6 @@
- + endif # !HEADLESS
- + endif # PLATFORM
- +
- +-ifeq ($(PLATFORM), linux)
- +- # Checking for the X11/extensions headers at the additional location
- +- CPPFLAGS += -I$(firstword $(wildcard $(OPENWIN_HOME)/include/X11/extensions) \
- +- $(wildcard /usr/include/X11/extensions))
- +-endif
- +
- + ifeq ($(PLATFORM), macosx))
- + CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions \
- +diff -Nur openjdk.orig/jdk/make/sun/splashscreen/Makefile openjdk/jdk/make/sun/splashscreen/Makefile
- +--- openjdk.orig/jdk/make/sun/splashscreen/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/sun/splashscreen/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -55,6 +55,8 @@
- +
- + JAVALIB=
- +
- ++OTHER_LDLIBS += -liconv
- ++
- + #
- + # C Flags
- + #
- +diff -Nur openjdk.orig/jdk/make/sun/xawt/Makefile openjdk/jdk/make/sun/xawt/Makefile
- +--- openjdk.orig/jdk/make/sun/xawt/Makefile 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/make/sun/xawt/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -292,16 +292,10 @@
- + SIZERS = $(SIZER).32
- + SIZERS_C = $(SIZER_32_C)
- + SIZES = $(WRAPPER_GENERATOR_DIR)/sizes.32
- +-ifdef CROSS_COMPILE_ARCH
- +-CFLAGS_32 = -m32
- +-endif
- + else # !32
- + SIZERS = $(SIZER).64
- + SIZERS_C = $(SIZER_64_C)
- + SIZES = $(WRAPPER_GENERATOR_DIR)/sizes.64
- +-ifdef CROSS_COMPILE_ARCH
- +-CFLAGS_64 = -m64
- +-endif
- + endif # 32
- + endif # !macosx
- + endif # solaris
- +@@ -337,11 +331,7 @@
- + WRAPPER_GENERATOR_CLASS=$(WRAPPER_GENERATOR_TEMPDIR)/WrapperGenerator.class
- + XLIBTYPES=$(PLATFORM_SRC)/classes/sun/awt/X11/generator/xlibtypes.txt
- +
- +-ifndef CROSS_COMPILE_ARCH
- +-SIZERS_CC = $(CC)
- +-else
- +-SIZERS_CC = $(HOST_CC)
- +-endif
- ++SIZERS_CC = $(CC) -static
- +
- + $(SIZERS): $(SIZERS_C)
- + $(prep-target)
- +@@ -364,7 +354,7 @@
- + $(CHMOD) +w $@;\
- + else \
- + $(ECHO) GENERATING $@; \
- +- $(WRAPPER_GENERATOR_DIR)/sizer$(suffix $@) > $@; \
- ++ $(QEMU) $(WRAPPER_GENERATOR_DIR)/sizer$(suffix $@) > $@; \
- + fi
- + @if [ "$(DOCOMPARE)$(suffix $@)" = "true.64" ]; then \
- + $(ECHO) COMPARING $@ and $(STORED_SIZES_TMPL_$(PLATFORM)_$(LIBARCH)); \
- +diff -Nur openjdk.orig/jdk/src/share/classes/java/net/AbstractPlainDatagramSocketImpl.java openjdk/jdk/src/share/classes/java/net/AbstractPlainDatagramSocketImpl.java
- +--- openjdk.orig/jdk/src/share/classes/java/net/AbstractPlainDatagramSocketImpl.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/java/net/AbstractPlainDatagramSocketImpl.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -69,7 +69,7 @@
- + */
- + static {
- + java.security.AccessController.doPrivileged(
- +- new sun.security.action.LoadLibraryAction("net"));
- ++ new sun.security.action.LoadLibraryAction("javanet"));
- + }
- +
- + /**
- +diff -Nur openjdk.orig/jdk/src/share/classes/java/net/AbstractPlainSocketImpl.java openjdk/jdk/src/share/classes/java/net/AbstractPlainSocketImpl.java
- +--- openjdk.orig/jdk/src/share/classes/java/net/AbstractPlainSocketImpl.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/java/net/AbstractPlainSocketImpl.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -78,7 +78,7 @@
- + */
- + static {
- + java.security.AccessController.doPrivileged(
- +- new sun.security.action.LoadLibraryAction("net"));
- ++ new sun.security.action.LoadLibraryAction("javanet"));
- + }
- +
- + /**
- +diff -Nur openjdk.orig/jdk/src/share/classes/java/net/DatagramPacket.java openjdk/jdk/src/share/classes/java/net/DatagramPacket.java
- +--- openjdk.orig/jdk/src/share/classes/java/net/DatagramPacket.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/java/net/DatagramPacket.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -47,7 +47,7 @@
- + */
- + static {
- + java.security.AccessController.doPrivileged(
- +- new sun.security.action.LoadLibraryAction("net"));
- ++ new sun.security.action.LoadLibraryAction("javanet"));
- + init();
- + }
- +
- +diff -Nur openjdk.orig/jdk/src/share/classes/java/net/InetAddress.java openjdk/jdk/src/share/classes/java/net/InetAddress.java
- +--- openjdk.orig/jdk/src/share/classes/java/net/InetAddress.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/java/net/InetAddress.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -260,7 +260,7 @@
- + static {
- + preferIPv6Address = java.security.AccessController.doPrivileged(
- + new GetBooleanAction("java.net.preferIPv6Addresses")).booleanValue();
- +- AccessController.doPrivileged(new LoadLibraryAction("net"));
- ++ AccessController.doPrivileged(new LoadLibraryAction("javanet"));
- + init();
- + }
- +
- +diff -Nur openjdk.orig/jdk/src/share/classes/java/net/NetworkInterface.java openjdk/jdk/src/share/classes/java/net/NetworkInterface.java
- +--- openjdk.orig/jdk/src/share/classes/java/net/NetworkInterface.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/java/net/NetworkInterface.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -53,7 +53,7 @@
- + private static final int defaultIndex; /* index of defaultInterface */
- +
- + static {
- +- AccessController.doPrivileged(new LoadLibraryAction("net"));
- ++ AccessController.doPrivileged(new LoadLibraryAction("javanet"));
- + init();
- + defaultInterface = DefaultInterface.getDefault();
- + if (defaultInterface != null) {
- +diff -Nur openjdk.orig/jdk/src/share/classes/sun/net/sdp/SdpSupport.java openjdk/jdk/src/share/classes/sun/net/sdp/SdpSupport.java
- +--- openjdk.orig/jdk/src/share/classes/sun/net/sdp/SdpSupport.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/sun/net/sdp/SdpSupport.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -76,6 +76,6 @@
- +
- + static {
- + AccessController.doPrivileged(
- +- new sun.security.action.LoadLibraryAction("net"));
- ++ new sun.security.action.LoadLibraryAction("javanet"));
- + }
- + }
- +diff -Nur openjdk.orig/jdk/src/share/classes/sun/net/spi/DefaultProxySelector.java openjdk/jdk/src/share/classes/sun/net/spi/DefaultProxySelector.java
- +--- openjdk.orig/jdk/src/share/classes/sun/net/spi/DefaultProxySelector.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/sun/net/spi/DefaultProxySelector.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -95,7 +95,7 @@
- + }});
- + if (b != null && b.booleanValue()) {
- + java.security.AccessController.doPrivileged(
- +- new sun.security.action.LoadLibraryAction("net"));
- ++ new sun.security.action.LoadLibraryAction("javanet"));
- + hasSystemProxies = init();
- + }
- + }
- +diff -Nur openjdk.orig/jdk/src/share/classes/sun/nio/ch/Util.java openjdk/jdk/src/share/classes/sun/nio/ch/Util.java
- +--- openjdk.orig/jdk/src/share/classes/sun/nio/ch/Util.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/share/classes/sun/nio/ch/Util.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -483,7 +483,7 @@
- + return;
- + loaded = true;
- + java.security.AccessController
- +- .doPrivileged(new sun.security.action.LoadLibraryAction("net"));
- ++ .doPrivileged(new sun.security.action.LoadLibraryAction("javanet"));
- + java.security.AccessController
- + .doPrivileged(new sun.security.action.LoadLibraryAction("nio"));
- + // IOUtil must be initialized; Its native methods are called from
- +diff -Nur openjdk.orig/jdk/src/solaris/classes/sun/net/dns/ResolverConfigurationImpl.java openjdk/jdk/src/solaris/classes/sun/net/dns/ResolverConfigurationImpl.java
- +--- openjdk.orig/jdk/src/solaris/classes/sun/net/dns/ResolverConfigurationImpl.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/solaris/classes/sun/net/dns/ResolverConfigurationImpl.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -247,7 +247,7 @@
- +
- + static {
- + java.security.AccessController.doPrivileged(
- +- new sun.security.action.LoadLibraryAction("net"));
- ++ new sun.security.action.LoadLibraryAction("javanet"));
- + }
- +
- + }
- +diff -Nur openjdk.orig/jdk/src/solaris/native/sun/awt/awt_InputMethod.c openjdk/jdk/src/solaris/native/sun/awt/awt_InputMethod.c
- +--- openjdk.orig/jdk/src/solaris/native/sun/awt/awt_InputMethod.c 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/solaris/native/sun/awt/awt_InputMethod.c 2013-11-15 13:51:09.000000000 +0100
- +@@ -246,7 +246,8 @@
- + if (wcs == NULL)
- + return NULL;
- +
- +- n = len*MB_CUR_MAX + 1;
- ++ //evil hack for uclibc
- ++ n = len*1 + 1;
- +
- + mbs = (char *) malloc(n * sizeof(char));
- + if (mbs == NULL) {
- +diff -Nur openjdk.orig/jdk/src/solaris/native/sun/xawt/XToolkit.c openjdk/jdk/src/solaris/native/sun/xawt/XToolkit.c
- +--- openjdk.orig/jdk/src/solaris/native/sun/xawt/XToolkit.c 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/solaris/native/sun/xawt/XToolkit.c 2013-11-15 13:51:09.000000000 +0100
- +@@ -27,9 +27,6 @@
- + #include <X11/Xutil.h>
- + #include <X11/Xos.h>
- + #include <X11/Xatom.h>
- +-#ifdef __linux__
- +-#include <execinfo.h>
- +-#endif
- +
- + #include <jvm.h>
- + #include <jni.h>
- +@@ -785,25 +782,6 @@
- + return ret;
- + }
- +
- +-#ifdef __linux__
- +-void print_stack(void)
- +-{
- +- void *array[10];
- +- size_t size;
- +- char **strings;
- +- size_t i;
- +-
- +- size = backtrace (array, 10);
- +- strings = backtrace_symbols (array, size);
- +-
- +- fprintf (stderr, "Obtained %zd stack frames.\n", size);
- +-
- +- for (i = 0; i < size; i++)
- +- fprintf (stderr, "%s\n", strings[i]);
- +-
- +- free (strings);
- +-}
- +-#endif
- +
- + Window get_xawt_root_shell(JNIEnv *env) {
- + static jclass classXRootWindow = NULL;
- +diff -Nur openjdk.orig/jdk/src/windows/classes/sun/net/dns/ResolverConfigurationImpl.java openjdk/jdk/src/windows/classes/sun/net/dns/ResolverConfigurationImpl.java
- +--- openjdk.orig/jdk/src/windows/classes/sun/net/dns/ResolverConfigurationImpl.java 2013-04-16 00:41:13.000000000 +0200
- ++++ openjdk/jdk/src/windows/classes/sun/net/dns/ResolverConfigurationImpl.java 2013-11-15 13:51:09.000000000 +0100
- +@@ -159,7 +159,7 @@
- +
- + static {
- + java.security.AccessController.doPrivileged(
- +- new sun.security.action.LoadLibraryAction("net"));
- ++ new sun.security.action.LoadLibraryAction("javanet"));
- + init0();
- +
- + // start the address listener thread
- +diff -Nur openjdk.orig/Makefile openjdk/Makefile
- +--- openjdk.orig/Makefile 2013-03-08 17:04:19.000000000 +0100
- ++++ openjdk/Makefile 2013-11-15 13:51:09.000000000 +0100
- +@@ -53,9 +53,7 @@
- + REL_JDK_DEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-debug)/$(JDK_IMAGE_DIRNAME)
- + REL_JDK_FASTDEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-fastdebug)/$(JDK_IMAGE_DIRNAME)
- +
- +-ifndef TOPDIR
- +- TOPDIR:=.
- +-endif
- ++TOPDIR:=.
- +
- + ifndef JDK_TOPDIR
- + JDK_TOPDIR=$(TOPDIR)/jdk
|