author | anazarov |
Thu, 05 Apr 2018 17:04:16 -0700 | |
changeset 49538 | 707553fcca04 |
parent 49440 | 396ea30afbd5 |
child 49682 | 2918e1146106 |
child 56421 | 92bea2b7732a |
permissions | -rw-r--r-- |
25859 | 1 |
# |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
47217
diff
changeset
|
2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
25859 | 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) |
|
47217 | 31 |
LIBJ2GSS_SRC := $(TOPDIR)/src/java.security.jgss/share/native/libj2gss \ |
32 |
$(TOPDIR)/src/java.security.jgss/$(OPENJDK_TARGET_OS_TYPE)/native/libj2gss \ |
|
25859 | 33 |
# |
34 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
35 |
$(eval $(call SetupJdkLibrary, BUILD_LIBJ2GSS, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
47217
diff
changeset
|
36 |
NAME := j2gss, \ |
25859 | 37 |
SRC := $(LIBJ2GSS_SRC), \ |
38 |
OPTIMIZATION := LOW, \ |
|
39 |
CFLAGS := $(CFLAGS_JDKLIB) $(addprefix -I, $(LIBJ2GSS_SRC)) \ |
|
40 |
$(LIBJAVA_HEADER_FLAGS) \ |
|
27565 | 41 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \ |
25859 | 42 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
43 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33406 | 44 |
LIBS := $(LIBDL), \ |
35276 | 45 |
)) |
25859 | 46 |
|
27565 | 47 |
TARGETS += $(BUILD_LIBJ2GSS) |
25859 | 48 |
endif |
49 |
||
50 |
################################################################################ |
|
51 |
||
43510
491c481539af
8004842: Unify values of boolean make variables set in configure to true/false
ihse
parents:
35276
diff
changeset
|
52 |
ifneq ($(BUILD_CRYPTO), false) |
49246
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
53 |
|
25859 | 54 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
49246
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
55 |
BUILD_LIBW2K_LSA_AUTH_SRC := $(call FindSrcDirsForLib, $(MODULE), w2k_lsa_auth) |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
56 |
|
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
57 |
$(eval $(call SetupJdkLibrary, BUILD_LIBW2K_LSA_AUTH, \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
58 |
NAME := w2k_lsa_auth, \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
59 |
SRC := $(BUILD_LIBW2K_LSA_AUTH_SRC), \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
60 |
OPTIMIZATION := LOW, \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
61 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
62 |
$(addprefix -I, $(BUILD_LIBW2K_LSA_AUTH_SRC)) \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
63 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
64 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
65 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
66 |
LIBS := advapi32.lib Secur32.lib netapi32.lib kernel32.lib user32.lib \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
67 |
gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
68 |
ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib, \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
69 |
)) |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
70 |
|
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
71 |
TARGETS += $(BUILD_LIBW2K_LSA_AUTH) |
25859 | 72 |
endif |
73 |
||
49246
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
74 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
75 |
BUILD_LIBOSXKRB5_SRC := $(call FindSrcDirsForLib, $(MODULE), osxkrb5) |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
76 |
|
29491 | 77 |
# libosxkrb5 needs to call deprecated krb5 APIs so that java |
78 |
# can use the native credentials cache. |
|
49246
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
79 |
$(eval $(call SetupJdkLibrary, BUILD_LIBOSXKRB5, \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
80 |
NAME := osxkrb5, \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
81 |
SRC := $(BUILD_LIBOSXKRB5_SRC), \ |
25859 | 82 |
OPTIMIZATION := LOW, \ |
83 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
49246
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
84 |
$(addprefix -I, $(BUILD_LIBOSXKRB5_SRC)) \ |
27565 | 85 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \ |
29491 | 86 |
DISABLED_WARNINGS_clang := deprecated-declarations, \ |
25859 | 87 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
88 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
49246
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
89 |
LIBS := -framework JavaNativeFoundation -framework Cocoa \ |
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
90 |
-framework SystemConfiguration -framework Kerberos, \ |
35276 | 91 |
)) |
25859 | 92 |
|
49246
be5eab692a2f
8199640: Split up BUILD_LIBKRB5 into the two, unrelated compilations it consists of
ihse
parents:
49244
diff
changeset
|
93 |
TARGETS += $(BUILD_LIBOSXKRB5) |
25859 | 94 |
endif |
95 |
endif |
|
96 |
||
97 |
################################################################################ |