mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 21:50:32 -04:00
copy. This should have the following effects: . Fix problems experienced by programmes that dynamically create their own copy of the JVM and are linked against the system's zlib (e.g., eclipse). . Reduce the potential for zlib based security problems affecting the JDK. Submitted by: mi@
16 lines
459 B
Text
16 lines
459 B
Text
--- ../../j2se/make/common/Program.gmk Tue Oct 19 14:44:50 2004
|
|
+++ ../../j2se/make/common/Program.gmk Sat Oct 15 12:37:38 2005
|
|
@@ -17,5 +17,4 @@
|
|
LAUNCHER_SHARE_SRC = $(SHARE_SRC)
|
|
endif
|
|
-ZIP_SRC = $(SHARE_SRC)/native/java/util/zip/zlib-1.1.3
|
|
|
|
.PHONY: all optimized debug classes clean clobber
|
|
@@ -47,5 +46,6 @@
|
|
$(OBJDIR)/zutil.$(OBJECT_SUFFIX)
|
|
|
|
-FILES_o = $(LAUNCHER_o) $(ZLIB_o)
|
|
+FILES_o = $(LAUNCHER_o)
|
|
+LDFLAGS += -lz
|
|
|
|
ifeq ($(PLATFORM), windows)
|