1 #
   2 # Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 ifneq ($(OPENJDK_TARGET_OS), windows)
  31   LIBJ2GSS_SRC := $(TOPDIR)/src/java.security.jgss/share/native/libj2gss \
  32       $(TOPDIR)/src/java.security.jgss/$(OPENJDK_TARGET_OS_TYPE)/native/libj2gss \
  33       #
  34 
  35   $(eval $(call SetupJdkLibrary, BUILD_LIBJ2GSS, \
  36       NAME := j2gss, \
  37       SRC := $(LIBJ2GSS_SRC), \
  38       OPTIMIZATION := LOW, \
  39       CFLAGS := $(CFLAGS_JDKLIB) $(addprefix -I, $(LIBJ2GSS_SRC)) \
  40           $(LIBJAVA_HEADER_FLAGS) \
  41           -I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \
  42       LDFLAGS := $(LDFLAGS_JDKLIB) \
  43           $(call SET_SHARED_LIBRARY_ORIGIN), \
  44       LIBS := $(LIBDL), \
  45   ))
  46 
  47   TARGETS += $(BUILD_LIBJ2GSS)
  48 endif
  49 
  50 ################################################################################
  51 
  52 ifneq ($(BUILD_CRYPTO), false)
  53 
  54   ifeq ($(OPENJDK_TARGET_OS), windows)
  55     BUILD_LIBW2K_LSA_AUTH_SRC := $(call FindSrcDirsForLib, $(MODULE), w2k_lsa_auth)
  56 
  57     $(eval $(call SetupJdkLibrary, BUILD_LIBW2K_LSA_AUTH, \
  58         NAME := w2k_lsa_auth, \
  59         SRC := $(BUILD_LIBW2K_LSA_AUTH_SRC), \
  60         OPTIMIZATION := LOW, \
  61         CFLAGS := $(CFLAGS_JDKLIB) \
  62             $(addprefix -I, $(BUILD_LIBW2K_LSA_AUTH_SRC)) \
  63             -I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \
  64         LDFLAGS := $(LDFLAGS_JDKLIB) \
  65             $(call SET_SHARED_LIBRARY_ORIGIN), \
  66         LIBS := advapi32.lib Secur32.lib netapi32.lib kernel32.lib user32.lib \
  67             gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib \
  68             ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib, \
  69     ))
  70 
  71     TARGETS += $(BUILD_LIBW2K_LSA_AUTH)
  72   endif
  73 
  74   ifeq ($(OPENJDK_TARGET_OS), macosx)
  75     BUILD_LIBOSXKRB5_SRC := $(call FindSrcDirsForLib, $(MODULE), osxkrb5)
  76 
  77     # libosxkrb5 needs to call deprecated krb5 APIs so that java
  78     # can use the native credentials cache.
  79     $(eval $(call SetupJdkLibrary, BUILD_LIBOSXKRB5, \
  80         NAME := osxkrb5, \
  81         SRC := $(BUILD_LIBOSXKRB5_SRC), \
  82         OPTIMIZATION := LOW, \
  83         CFLAGS := $(CFLAGS_JDKLIB) \
  84             $(addprefix -I, $(BUILD_LIBOSXKRB5_SRC)) \
  85             -I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \
  86         DISABLED_WARNINGS_clang := deprecated-declarations, \
  87         LDFLAGS := $(LDFLAGS_JDKLIB) \
  88             $(call SET_SHARED_LIBRARY_ORIGIN), \
  89         LIBS := -framework JavaNativeFoundation -framework Cocoa \
  90             -framework SystemConfiguration -framework Kerberos, \
  91     ))
  92 
  93     TARGETS += $(BUILD_LIBOSXKRB5)
  94   endif
  95 endif
  96 
  97 ################################################################################