author | ihse |
Tue, 15 Dec 2015 11:02:12 +0100 | |
changeset 34695 | 7a6cc9982d22 |
parent 33406 | 4680f7495292 |
child 35276 | 50b3cdcef339 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
27799
diff
changeset
|
2 |
# Copyright (c) 2011, 2015, 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) |
|
31 |
LIBJ2GSS_SRC := $(JDK_TOPDIR)/src/java.security.jgss/share/native/libj2gss \ |
|
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
32 |
$(JDK_TOPDIR)/src/java.security.jgss/$(OPENJDK_TARGET_OS_TYPE)/native/libj2gss \ |
25859 | 33 |
# |
34 |
||
35 |
$(eval $(call SetupNativeCompilation,BUILD_LIBJ2GSS, \ |
|
36 |
LIBRARY := j2gss, \ |
|
37 |
OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \ |
|
38 |
SRC := $(LIBJ2GSS_SRC), \ |
|
39 |
OPTIMIZATION := LOW, \ |
|
40 |
CFLAGS := $(CFLAGS_JDKLIB) $(addprefix -I, $(LIBJ2GSS_SRC)) \ |
|
41 |
$(LIBJAVA_HEADER_FLAGS) \ |
|
27565 | 42 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \ |
25859 | 43 |
MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libj2gss/mapfile-vers, \ |
44 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
45 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33406 | 46 |
LIBS := $(LIBDL), \ |
47 |
LIBS_solaris := -lc, \ |
|
27565 | 48 |
OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libj2gss, \ |
25859 | 49 |
DEBUG_SYMBOLS := $(DEBUG_ALL_BINARIES))) |
50 |
||
27565 | 51 |
TARGETS += $(BUILD_LIBJ2GSS) |
25859 | 52 |
endif |
53 |
||
54 |
################################################################################ |
|
55 |
||
56 |
ifneq ($(BUILD_CRYPTO), no) |
|
57 |
BUILD_LIBKRB5_NAME := |
|
58 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
59 |
BUILD_LIBKRB5_NAME := w2k_lsa_auth |
|
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
60 |
BUILD_LIBKRB5_SRC := $(JDK_TOPDIR)/src/java.security.jgss/$(OPENJDK_TARGET_OS_TYPE)/native/libw2k_lsa_auth |
25859 | 61 |
BUILD_LIBKRB5_LIBS := advapi32.lib Secur32.lib netapi32.lib kernel32.lib user32.lib \ |
62 |
gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib \ |
|
63 |
ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib wsock32.lib |
|
64 |
else ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
65 |
BUILD_LIBKRB5_NAME := osxkrb5 |
|
66 |
BUILD_LIBKRB5_SRC := $(JDK_TOPDIR)/src/java.security.jgss/macosx/native/libosxkrb5 |
|
67 |
BUILD_LIBKRB5_LIBS := \ |
|
68 |
-framework JavaNativeFoundation \ |
|
69 |
-framework Cocoa \ |
|
70 |
-framework SystemConfiguration \ |
|
71 |
-framework Kerberos |
|
72 |
endif |
|
73 |
||
74 |
ifneq ($(BUILD_LIBKRB5_NAME), ) |
|
29491 | 75 |
# libosxkrb5 needs to call deprecated krb5 APIs so that java |
76 |
# can use the native credentials cache. |
|
25859 | 77 |
$(eval $(call SetupNativeCompilation,BUILD_LIBKRB5, \ |
78 |
LIBRARY := $(BUILD_LIBKRB5_NAME), \ |
|
79 |
OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \ |
|
80 |
SRC := $(BUILD_LIBKRB5_SRC), \ |
|
81 |
OPTIMIZATION := LOW, \ |
|
82 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
83 |
$(addprefix -I, $(BUILD_LIBKRB5_SRC)) \ |
|
27565 | 84 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.security.jgss, \ |
29491 | 85 |
DISABLED_WARNINGS_clang := deprecated-declarations, \ |
25859 | 86 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
87 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33406 | 88 |
LIBS := $(BUILD_LIBKRB5_LIBS), \ |
25859 | 89 |
VERSIONINFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE), \ |
90 |
RC_FLAGS := $(RC_FLAGS) \ |
|
91 |
-D "JDK_FNAME=$(BUILD_LIBKRB5_NAME).dll" \ |
|
92 |
-D "JDK_INTERNAL_NAME=$(BUILD_LIBKRB5_NAME)" \ |
|
93 |
-D "JDK_FTYPE=0x2L", \ |
|
27565 | 94 |
OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libkrb5, \ |
25859 | 95 |
DEBUG_SYMBOLS := $(DEBUG_ALL_BINARIES))) |
96 |
||
27565 | 97 |
TARGETS += $(BUILD_LIBKRB5) |
25859 | 98 |
endif |
99 |
endif |
|
100 |
||
101 |
################################################################################ |