make/lib/SecurityLibraries.gmk
author dholmes
Mon, 09 Oct 2017 01:23:13 -0400
changeset 47604 a5abbaac6165
parent 47217 72e3ae9a25eb
child 49070 d7859531621b
permissions -rw-r--r--
8185529: JCK api/java_lang/Object/WaitTests failed with jdk10/hs nightly Reviewed-by: dcubed, ccheung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     1
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     2
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     4
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    10
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    15
# accompanied this code).
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    16
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    20
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    23
# questions.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    24
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    25
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    26
include LibCommon.gmk
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    27
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    28
ifeq ($(OPENJDK_TARGET_OS), macosx)
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    29
  # JavaNativeFoundation framework not supported in static builds 
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    30
  ifneq ($(STATIC_BUILD), true)
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    31
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    32
  ################################################################################
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    33
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    34
    LIBOSXSECURITY_DIRS := $(TOPDIR)/src/java.base/macosx/native/libosxsecurity
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    35
    LIBOSXSECURITY_CFLAGS := -I$(LIBOSXSECURITY_DIRS) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    36
        $(LIBJAVA_HEADER_FLAGS) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    37
        -I$(SUPPORT_OUTPUTDIR)/headers/java.base \
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    38
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    39
    $(eval $(call SetupNativeCompilation,BUILD_LIBOSXSECURITY, \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    40
        LIBRARY := osxsecurity, \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    41
        OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    42
        SRC := $(LIBOSXSECURITY_DIRS), \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    43
        OPTIMIZATION := LOW, \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    44
        CFLAGS := $(CFLAGS_JDKLIB) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    45
            $(LIBOSXSECURITY_CFLAGS), \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    46
        DISABLED_WARNINGS_clang := deprecated-declarations, \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    47
        LDFLAGS := $(LDFLAGS_JDKLIB) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    48
            -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base \
33661
jwilhelm
parents: 33653 33406
diff changeset
    49
            $(call SET_SHARED_LIBRARY_ORIGIN) \
jwilhelm
parents: 33653 33406
diff changeset
    50
            -fobjc-link-runtime, \
jwilhelm
parents: 33653 33406
diff changeset
    51
        LIBS := \
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    52
            -framework JavaNativeFoundation \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    53
            -framework CoreServices \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    54
            -framework Security \
33661
jwilhelm
parents: 33653 33406
diff changeset
    55
            $(JDKLIB_LIBS), \
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    56
        OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libosxsecurity, \
35276
50b3cdcef339 8145596: Enable debug symbols for all libraries
ihse
parents: 33661
diff changeset
    57
    ))
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    58
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    59
    $(BUILD_LIBOSXSECURITY): $(BUILD_LIBJAVA)
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    60
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    61
    TARGETS += $(BUILD_LIBOSXSECURITY)
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    62
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    63
  ################################################################################
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    64
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    65
  endif
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    66
endif