Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/krb5/kdb/Makefile.com
+++ new/usr/src/lib/krb5/kdb/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 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 23 # Use is subject to license terms.
24 24 #
25 25 # Copyright (c) 2018, Joyent, Inc.
26 26
27 27 LIBRARY= libkdb.a
28 28 VERS= .1
29 29
30 30 # kdb
31 31 KDBOBJS= \
32 32 keytab.o \
33 33 encrypt_key.o \
34 34 decrypt_key.o \
35 35 kdb_convert.o \
36 36 kdb_cpw.o \
37 37 kdb_default.o \
38 38 kdb_log.o \
39 39 kdb5.o
40 40
41 41 DERIVED_OBJS= \
42 42 iprop_xdr.o
43 43
44 44 # Definitions needed to rpcgen iprop-related files
45 45 ISRCHDR= ../iprop.h
46 46 ISRCXDR= ../iprop_xdr.c
47 47 KRB5IPROPDIR= $(SRC)/cmd/krb5/iprop
48 48 CMD= grep -v "usr/src/cmd/krb5/iprop" > $@
49 49
50 50 # libkdb5 needs to link against some files from kadm5
51 51 KADM5DIR= $(SRC)/lib/krb5/kadm5
52 52 KADM5OBJS= alt_prof.o str_conv.o
53 53 KADM5SRCS= $(KADM5DIR)/$(KADM5OBJS:%.o=%.c)
54 54
55 55 OBJECTS= $(KDBOBJS) $(KADM5OBJS) $(DERIVED_OBJS)
56 56
57 57 # include library definitions
58 58 include ../../Makefile.lib
59 59
60 60 SRCS= $(KDBOBJS:%.o=../%.c)
61 61 SRCS+= $(DERIVED_OBJS:%.o=../%.c)
62 62 SRCS+= $(KADM5SRCS)
63 63
64 64 LIBS= $(DYNLIB)
65 65
66 66 include $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
67 67
68 68 POFILE = $(LIBRARY:%.a=%.po)
69 69 POFILES = generic.po
70 70
71 71 # override liblink
72 72 INS.liblink= -$(RM) $@; $(SYMLINK) $(LIBLINKS)$(VERS) $@
73 73
74 74 CPPFLAGS += -DHAVE_CONFIG_H -DHAVE_BT_RSEQ \
75 75 -I$(KRB5IPROPDIR) \
76 76 -I$(SRC)/lib/krb5 \
77 77 -I$(SRC)/lib/gss_mechs/mech_krb5/include \
↓ open down ↓ |
77 lines elided |
↑ open up ↑ |
78 78 -I$(SRC)/lib/gss_mechs/mech_krb5/krb5/os \
79 79 -I$(SRC)/lib/gss_mechs/mech_krb5/include/krb5 \
80 80 -I$(SRC)/uts/common/gssapi/include/ \
81 81 -I$(SRC)/uts/common/gssapi/mechs/krb5/include
82 82
83 83 CFLAGS += $(CCVERBOSE) -I..
84 84
85 85 CERRWARN += -_gcc=-Wno-unused-variable
86 86 CERRWARN += -_gcc=-Wno-unused-function
87 87 CERRWARN += -_gcc=-Wno-type-limits
88 -CERRWARN += -_gcc=-Wno-uninitialized
88 +CERRWARN += $(CNOWARN_UNINIT)
89 89 CERRWARN += -_gcc=-Wno-parentheses
90 90
91 91 SMOFF += indenting,all_func_returns,deref_check,signed
92 92
93 93 DYNFLAGS += $(KRUNPATH) $(KMECHLIB)
94 94 LDLIBS += -lc -lnsl
95 95
96 96 .KEEP_STATE:
97 97
98 98 all: $(LIBS)
99 99
100 100 # Rules to rpcgen-erate derived files from the iprop.x spec file
101 101 $(ISRCHDR): $(KRB5IPROPDIR)/iprop.x
102 102 $(RM) $@
103 103 $(RPCGEN) -h $(KRB5IPROPDIR)/iprop.x > $@
104 104
105 105 $(ISRCXDR): $(ISRCHDR) $(KRB5IPROPDIR)/iprop.x
106 106 $(RM) $@
107 107 $(RPCGEN) -c $(KRB5IPROPDIR)/iprop.x | $(CMD)
108 108
109 109 CLEANFILES += $(ISRCHDR) $(ISRCXDR)
110 110
111 111 # Explicitly state the dependancy on iprop.h
112 112 $(LIBS): $(ISRCHDR)
113 113
114 114 # We turn off ptr-cast warnings, since we're doing mmapping in kdb_log
115 115 LINTFLAGS += -erroff=E_BAD_PTR_CAST_ALIGN
116 116
117 117 lint: lintcheck
118 118
119 119 # include library targets
120 120 include ../../Makefile.targ
121 121
122 122 FRC:
123 123
124 124 generic.po: FRC
125 125 $(RM) messages.po
126 126 $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext ../*.[ch]`
127 127 $(SED) "/^domain/d" messages.po > $@
128 128 $(RM) messages.po
↓ open down ↓ |
30 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX