1 #
   2 # Copyright (c) 2011, 2014, 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 ifeq ($(OPENJDK_TARGET_OS_API), posix)
  31 
  32   ifeq (, $(filter $(OPENJDK_TARGET_OS), macosx aix))
  33 
  34     # Suppress unused parameters required by exported JNI functions.
  35     SCTP_WERROR := -Werror -Wno-error=unused-parameter
  36     ifeq ($(OPENJDK_TARGET_CPU_ARCH), ppc)
  37       SCTP_WERROR :=
  38     endif
  39 
  40     $(eval $(call SetupNativeCompilation,BUILD_LIBSCTP, \
  41         LIBRARY := sctp, \
  42         OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \
  43         SRC := $(JDK_TOPDIR)/src/jdk.sctp/$(OPENJDK_TARGET_OS_API_DIR)/native/libsctp, \
  44         LANG := C, \
  45         OPTIMIZATION := LOW, \
  46         CFLAGS := $(CFLAGS_JDKLIB) \
  47             -I $(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_API_DIR)/native/libnio/ch \
  48             -I $(JDK_TOPDIR)/src/java.base/share/native/libnio/ch \
  49             $(addprefix -I, $(call FindSrcDirsForLib, java.base, net)) \
  50             $(LIBJAVA_HEADER_FLAGS) \
  51             -I$(JDK_OUTPUTDIR)/gensrc_headers/jdk.sctp \
  52             -I$(JDK_OUTPUTDIR)/gensrc_headers/java.base, \
  53         CFLAGS_linux := $(SCTP_WERROR), \
  54         MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libsctp/mapfile-vers, \
  55         LDFLAGS := $(LDFLAGS_JDKLIB) \
  56             $(call SET_SHARED_LIBRARY_ORIGIN), \
  57         LDFLAGS_SUFFIX_linux := -lpthread $(LIBDL) -ljava -ljvm, \
  58         LDFLAGS_SUFFIX_posix := -lnio -lnet, \
  59         LDFLAGS_SUFFIX_solaris := -lsocket -ljava -ljvm -lc, \
  60         LDFLAGS_SUFFIX_macosx := -ljava -ljvm, \
  61         OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/libsctp, \
  62         DEBUG_SYMBOLS := $(DEBUG_ALL_BINARIES)))
  63 
  64     SCTP_LIBRARIES += $(BUILD_LIBSCTP)
  65 
  66     $(BUILD_LIBSCTP): $(INSTALL_LIBRARIES_HERE)/$(LIBRARY_PREFIX)nio$(SHARED_LIBRARY_SUFFIX)
  67   endif
  68 endif
  69 
  70 ################################################################################
  71 
  72 jdk.sctp: $(SCTP_LIBRARIES)
  73 
  74 all: jdk.sctp
  75 
  76 .PHONY: all jdk.sctp