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 LIBJ2GSS_SRC := $(TOPDIR)/src/java.security.jgss/share/native/libj2gss \
  31   #
  32 
  33 $(eval $(call SetupJdkLibrary, BUILD_LIBJ2GSS, \
  34     NAME := j2gss, \
  35     SRC := $(LIBJ2GSS_SRC), \
  36     OPTIMIZATION := LOW, \
  37     CFLAGS := $(CFLAGS_JDKLIB) $(addprefix -I, $(LIBJ2GSS_SRC)) \
  38         $(LIBJAVA_HEADER_FLAGS) \
  39         -I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \
  40     LDFLAGS := $(LDFLAGS_JDKLIB) \
  41         $(call SET_SHARED_LIBRARY_ORIGIN), \
  42     LIBS := $(LIBDL), \
  43 ))
  44 
  45 TARGETS += $(BUILD_LIBJ2GSS)
  46 
  47 ################################################################################
  48 
  49 ifneq ($(BUILD_CRYPTO), false)
  50 
  51   ifeq ($(OPENJDK_TARGET_OS), windows)
  52     BUILD_LIBW2K_LSA_AUTH_SRC := $(call FindSrcDirsForLib, $(MODULE), w2k_lsa_auth)
  53 
  54     $(eval $(call SetupJdkLibrary, BUILD_LIBW2K_LSA_AUTH, \
  55         NAME := w2k_lsa_auth, \
  56         SRC := $(BUILD_LIBW2K_LSA_AUTH_SRC), \
  57         OPTIMIZATION := LOW, \
  58         CFLAGS := $(CFLAGS_JDKLIB) \
  59             $(addprefix -I, $(BUILD_LIBW2K_LSA_AUTH_SRC)) \
  60             -I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \
  61         LDFLAGS := $(LDFLAGS_JDKLIB) \
  62             $(call SET_SHARED_LIBRARY_ORIGIN), \
  63         LIBS := advapi32.lib Secur32.lib netapi32.lib kernel32.lib user32.lib \
  64             gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib \
  65             ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib, \
  66     ))
  67 
  68     TARGETS += $(BUILD_LIBW2K_LSA_AUTH)
  69   endif
  70 
  71   ifeq ($(OPENJDK_TARGET_OS), macosx)
  72     BUILD_LIBOSXKRB5_SRC := $(call FindSrcDirsForLib, $(MODULE), osxkrb5)
  73 
  74     # libosxkrb5 needs to call deprecated krb5 APIs so that java
  75     # can use the native credentials cache.
  76     $(eval $(call SetupJdkLibrary, BUILD_LIBOSXKRB5, \
  77         NAME := osxkrb5, \
  78         SRC := $(BUILD_LIBOSXKRB5_SRC), \
  79         OPTIMIZATION := LOW, \
  80         CFLAGS := $(CFLAGS_JDKLIB) \
  81             $(addprefix -I, $(BUILD_LIBOSXKRB5_SRC)) \
  82             -I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \
  83         DISABLED_WARNINGS_clang := deprecated-declarations, \
  84         LDFLAGS := $(LDFLAGS_JDKLIB) \
  85             $(call SET_SHARED_LIBRARY_ORIGIN), \
  86         LIBS := -framework JavaNativeFoundation -framework Cocoa \
  87             -framework SystemConfiguration -framework Kerberos, \
  88     ))
  89 
  90     TARGETS += $(BUILD_LIBOSXKRB5)
  91   endif
  92 endif
  93 
  94 ################################################################################