Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/libsocket/Makefile.com
+++ new/usr/src/lib/libsocket/Makefile.com
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21
22 22 #
23 23 # Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
24 24 # Copyright (c) 2018, Joyent, Inc.
25 25 #
26 26
27 27 LIBRARY = libsocket.a
28 28 VERS = .1
29 29
30 30 INETOBJS = bindresvport.o bootparams_getbyname.o ether_addr.o \
31 31 getaddrinfo.o getnameinfo.o getnetent.o getnetent_r.o \
32 32 getprotoent.o getprotoent_r.o getservbyname_r.o getservent.o \
33 33 getservent_r.o inet6_opt.o inet6_rthdr.o interface_id.o \
34 34 link_addr.o netmasks.o rcmd.o rexec.o ruserpass.o \
35 35 sourcefilter.o getifaddrs.o
36 36 SOCKOBJS = _soutil.o sockatmark.o socket.o socketpair.o weaks.o
37 37 OBJECTS = $(INETOBJS) $(SOCKOBJS)
38 38
39 39 include ../../Makefile.lib
40 40
41 41 # install this library in the root filesystem
42 42 include ../../Makefile.rootfs
43 43
44 44 LIBS = $(DYNLIB) $(LINTLIB)
45 45
46 46 SRCS = $(INETOBJS:%.o=../inet/%.c) $(SOCKOBJS:%.o=../socket/%.c)
47 47 LDLIBS += -lnsl -lc
48 48
49 49 SRCDIR = ../common
↓ open down ↓ |
49 lines elided |
↑ open up ↑ |
50 50 $(LINTLIB):= SRCS = $(SRCDIR)/$(LINTSRC)
51 51
52 52 # Make string literals read-only to save memory.
53 53 CFLAGS += $(XSTRCONST)
54 54 CFLAGS64 += $(XSTRCONST)
55 55
56 56 CPPFLAGS += -DSYSV -D_REENTRANT -I../../common/inc
57 57 %/rcmd.o := CPPFLAGS += -DNIS
58 58
59 59 CERRWARN += -_gcc=-Wno-type-limits
60 -CERRWARN += -_gcc=-Wno-uninitialized
60 +CERRWARN += $(CNOWARN_UNINIT)
61 61 CERRWARN += -_gcc=-Wno-unused-variable
62 62 CERRWARN += -_gcc=-Wno-parentheses
63 63
64 64 # not linted
65 65 SMATCH=off
66 66
67 67 .KEEP_STATE:
68 68
69 69 all:
70 70
71 71 lint: lintcheck
72 72
73 73 # libsocket build rules
74 74 pics/%.o: ../inet/%.c
75 75 $(COMPILE.c) -o $@ $<
76 76 $(POST_PROCESS_O)
77 77
78 78 pics/%.o: ../socket/%.c
79 79 $(COMPILE.c) -o $@ $<
80 80 $(POST_PROCESS_O)
81 81
82 82 include ../../Makefile.targ
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX