author | duke |
Wed, 05 Jul 2017 17:56:44 +0200 | |
changeset 11078 | 736a63b854f3 |
parent 10596 | 39b3a979e600 |
child 12047 | 320a714614e9 |
permissions | -rw-r--r-- |
2 | 1 |
# |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
8583
diff
changeset
|
2 |
# Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
# |
|
5506 | 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. |
|
2 | 24 |
# |
25 |
||
26 |
BUILDDIR = ../.. |
|
27 |
PACKAGE = java.net |
|
28 |
LIBRARY = net |
|
29 |
PRODUCT = sun |
|
10596
39b3a979e600
7090158: Networking Libraries don't build with javac -Werror
chegar
parents:
9050
diff
changeset
|
30 |
JAVAC_MAX_WARNINGS = true |
39b3a979e600
7090158: Networking Libraries don't build with javac -Werror
chegar
parents:
9050
diff
changeset
|
31 |
JAVAC_WARNINGS_FATAL = true |
39b3a979e600
7090158: Networking Libraries don't build with javac -Werror
chegar
parents:
9050
diff
changeset
|
32 |
JAVAC_LINT_OPTIONS = -Xlint:all,-deprecation |
2 | 33 |
include $(BUILDDIR)/common/Defs.gmk |
34 |
||
35 |
# |
|
36 |
# Files |
|
37 |
# |
|
38 |
include FILES_c.gmk |
|
39 |
||
40 |
AUTO_FILES_JAVA_DIRS = java/net |
|
41 |
||
42 |
ifeq ($(PLATFORM), windows) |
|
43 |
FILES_c += NTLMAuthSequence.c |
|
44 |
FILES_c += NetworkInterface_winXP.c |
|
6525 | 45 |
else |
46 |
FILES_c += SdpSupport.c |
|
2 | 47 |
endif |
48 |
||
49 |
FILES_export = \ |
|
50 |
java/net/Socket.java \ |
|
51 |
java/net/SocketOptions.java \ |
|
52 |
java/net/SocketImpl.java \ |
|
53 |
java/net/AbstractPlainSocketImpl.java \ |
|
54 |
java/net/PlainSocketImpl.java \ |
|
55 |
java/net/ServerSocket.java \ |
|
56 |
java/net/InetAddress.java \ |
|
57 |
java/net/Inet4Address.java \ |
|
58 |
java/net/Inet6Address.java \ |
|
59 |
java/net/InetAddressImpl.java \ |
|
60 |
java/net/Inet4AddressImpl.java \ |
|
61 |
java/net/Inet6AddressImpl.java \ |
|
62 |
java/net/NetworkInterface.java \ |
|
63 |
java/net/SocketInputStream.java \ |
|
64 |
java/net/SocketOutputStream.java \ |
|
65 |
java/net/DefaultDatagramSocketImplFactory.java \ |
|
66 |
java/net/DatagramPacket.java \ |
|
67 |
java/net/DatagramSocket.java \ |
|
68 |
java/net/DatagramSocketImpl.java \ |
|
69 |
java/net/AbstractPlainDatagramSocketImpl.java \ |
|
70 |
java/net/MulticastSocket.java \ |
|
71 |
java/net/UnknownHostException.java \ |
|
72 |
java/net/ProtocolException.java \ |
|
73 |
sun/net/spi/DefaultProxySelector.java |
|
74 |
||
75 |
ifeq ($(PLATFORM), windows) |
|
76 |
FILES_export += java/net/TwoStacksPlainSocketImpl.java |
|
77 |
FILES_export += java/net/DualStackPlainSocketImpl.java |
|
78 |
FILES_export += java/net/TwoStacksPlainDatagramSocketImpl.java |
|
79 |
FILES_export += java/net/DualStackPlainDatagramSocketImpl.java |
|
80 |
else |
|
81 |
FILES_export += java/net/PlainDatagramSocketImpl.java |
|
82 |
endif |
|
83 |
||
84 |
# |
|
85 |
# Find platform specific native code |
|
86 |
# |
|
6525 | 87 |
vpath %.c $(PLATFORM_SRC)/native/sun/net/dns $(PLATFORM_SRC)/native/sun/net/www/protocol/http/ntlm \ |
88 |
$(PLATFORM_SRC)/native/sun/net/sdp $(PLATFORM_SRC)/native/sun/net/spi |
|
2 | 89 |
|
90 |
# |
|
91 |
# Include rules |
|
92 |
# |
|
93 |
include $(BUILDDIR)/common/Mapfile-vers.gmk |
|
94 |
||
95 |
include $(BUILDDIR)/common/Library.gmk |
|
96 |
||
97 |
ifeq ($(PLATFORM), windows) |
|
9003
e1b0f0099915
7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents:
8583
diff
changeset
|
98 |
OTHER_LDLIBS = ws2_32.lib $(JVMLIB) \ |
e1b0f0099915
7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents:
8583
diff
changeset
|
99 |
secur32.lib iphlpapi.lib delayimp.lib \ |
e1b0f0099915
7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents:
8583
diff
changeset
|
100 |
/DELAYLOAD:secur32.dll /DELAYLOAD:iphlpapi.dll |
2 | 101 |
else |
5780 | 102 |
OTHER_LDLIBS = $(LIBSOCKET) $(LIBNSL) -ldl $(JVMLIB) |
2 | 103 |
endif |
104 |
ifeq ($(PLATFORM), linux) |
|
105 |
OTHER_LDLIBS += -lpthread |
|
106 |
endif |
|
107 |
||
108 |
CLASSES.export += java.lang.Integer java.io.FileDescriptor java.net.InetAddressImplFactory java.net.Inet4AddressImpl java.net.Inet6AddressImpl |
|
109 |
||
110 |
# |
|
111 |
# Resources |
|
112 |
# |
|
113 |
LOCALE_SET_DEFINITION = jre |
|
114 |
||
2446 | 115 |
MISC_FILES = $(LIBDIR) $(LIBDIR)/net.properties |
2 | 116 |
|
117 |
$(LIBDIR)/net.properties: $(SHARE_SRC)/lib/net.properties |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
4157
diff
changeset
|
118 |
$(install-file) |
2 | 119 |
|
2446 | 120 |
# |
121 |
# SDP configuration template |
|
122 |
# |
|
123 |
ifeq ($(PLATFORM), solaris) |
|
124 |
SDP_PATH = sdp/sdp.conf.template |
|
125 |
SDP_CONF = $(LIBDIR)/$(SDP_PATH) |
|
126 |
$(SDP_CONF): $(PLATFORM_SRC)/lib/$(SDP_PATH) |
|
127 |
@$(RM) $* |
|
128 |
$(install-file) |
|
2 | 129 |
|
2446 | 130 |
MISC_FILES += $(SDP_CONF) |
131 |
endif |
|
132 |
||
133 |
build: $(MISC_FILES) |
|
134 |