< prev index next >

make/lib/Lib-java.base.gmk

Print this page

        

*** 97,107 **** $(BUILD_LIBNIO): $(BUILD_LIBNET) ################################################################################ # Create the macosx security library ! ifeq ($(OPENJDK_TARGET_OS), macosx) # JavaNativeFoundation framework not supported in static builds ifneq ($(STATIC_BUILD), true) $(eval $(call SetupJdkLibrary, BUILD_LIBOSXSECURITY, \ NAME := osxsecurity, \ --- 97,107 ---- $(BUILD_LIBNIO): $(BUILD_LIBNET) ################################################################################ # Create the macosx security library ! ifeq ($(call isTargetOs, macosx), true) # JavaNativeFoundation framework not supported in static builds ifneq ($(STATIC_BUILD), true) $(eval $(call SetupJdkLibrary, BUILD_LIBOSXSECURITY, \ NAME := osxsecurity, \
*** 128,138 **** endif ################################################################################ # Create the jsig library ! ifeq ($(OPENJDK_TARGET_OS_TYPE), unix) ifeq ($(STATIC_BUILD), false) $(eval $(call SetupJdkLibrary, BUILD_LIBJSIG, \ NAME := jsig, \ OPTIMIZATION := LOW, \ CFLAGS := $(CFLAGS_JDKLIB) $(LIBJSIG_CFLAGS), \ --- 128,138 ---- endif ################################################################################ # Create the jsig library ! ifeq ($(call isTargetOsType, unix), true) ifeq ($(STATIC_BUILD), false) $(eval $(call SetupJdkLibrary, BUILD_LIBJSIG, \ NAME := jsig, \ OPTIMIZATION := LOW, \ CFLAGS := $(CFLAGS_JDKLIB) $(LIBJSIG_CFLAGS), \
*** 203,213 **** endif ################################################################################ # Copy tzmappings file for Windows ! ifeq ($(OPENJDK_TARGET_OS), windows) $(eval $(call SetupCopyFiles, COPY_TZMAPPINGS, \ FILES := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/windows/conf/tzmappings, \ DEST := $(call FindLibDirForModule, $(MODULE)), \ )) TARGETS += $(COPY_TZMAPPINGS) --- 203,213 ---- endif ################################################################################ # Copy tzmappings file for Windows ! ifeq ($(call isTargetOs, windows), true) $(eval $(call SetupCopyFiles, COPY_TZMAPPINGS, \ FILES := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/windows/conf/tzmappings, \ DEST := $(call FindLibDirForModule, $(MODULE)), \ )) TARGETS += $(COPY_TZMAPPINGS)
< prev index next >