]> git.ipfire.org Git - thirdparty/glibc.git/blob - resolv/Makefile
elf: Add DF_1_KMOD, DF_1_WEAKFILTER, DF_1_NOCOMMON to <elf.h>
[thirdparty/glibc.git] / resolv / Makefile
1 # Copyright (C) 1994-2019 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
17
18 #
19 # Sub-makefile for resolv portion of the library.
20 #
21 subdir := resolv
22
23 include ../Makeconfig
24
25 headers := resolv.h bits/types/res_state.h \
26 netdb.h bits/netdb.h \
27 arpa/nameser.h arpa/nameser_compat.h \
28 sys/bitypes.h
29
30 routines := herror inet_addr inet_ntop inet_pton nsap_addr res_init \
31 res_hconf res_libc res-state res_randomid res-close \
32 resolv_context resolv_conf
33
34 tests = tst-aton tst-leaks tst-inet_ntop
35 xtests = tst-leaks2
36
37 tests-internal += tst-inet_aton_exact
38
39
40 generate := mtrace-tst-leaks.out tst-leaks.mtrace tst-leaks2.mtrace
41
42 extra-libs := libresolv libnss_dns
43 ifeq ($(have-thread-library),yes)
44 extra-libs += libanl
45 routines += gai_sigqueue
46
47 tests += \
48 tst-bug18665 \
49 tst-bug18665-tcp \
50 tst-ns_name \
51 tst-ns_name_compress \
52 tst-ns_name_pton \
53 tst-res_hconf_reorder \
54 tst-res_hnok \
55 tst-res_use_inet6 \
56 tst-resolv-basic \
57 tst-resolv-binary \
58 tst-resolv-edns \
59 tst-resolv-network \
60 tst-resolv-nondecimal \
61 tst-resolv-res_init-multi \
62 tst-resolv-search \
63 tst-resolv-trailing \
64
65 # These tests need libdl.
66 ifeq (yes,$(build-shared))
67 tests += \
68 tst-resolv-ai_idn \
69 tst-resolv-ai_idn-latin1 \
70 tst-resolv-ai_idn-nolibidn2 \
71 tst-resolv-canonname \
72
73 # uses DEPRECATED_RES_USE_INET6 from <resolv-internal.h>.
74 tests-internal += \
75 tst-resolv-res_init \
76 tst-resolv-res_init-thread \
77
78 # Needs resolv_context.
79 tests-internal += \
80 tst-resolv-res_ninit \
81 tst-resolv-threads \
82
83 # Used by tst-resolv-ai_idn-nolibidn2 to disable libidn2 (by not
84 # providing any functions in libidn2.so.0).
85 modules-names += tst-no-libidn2
86 extra-test-objs += tst-no-libidn2.os
87 LDFLAGS-tst-no-libidn2.so = -Wl,-soname,libidn2.so.0
88
89 endif # $(build-shared)
90
91 # This test accesses __inet_ntop_length, an internal libc function.
92 tests-internal += tst-inet_pton
93
94 # This test accesses the __p_secstodate compat symbol.
95 tests-internal += tst-p_secstodate
96
97 # This test sends millions of packets and is rather slow.
98 xtests += tst-resolv-qtypes
99
100 # This test has dropped packet tests and runs for a long time.
101 xtests += tst-resolv-rotate
102 endif
103 extra-libs-others = $(extra-libs)
104 libresolv-routines := res_comp res_debug \
105 res_data res_mkquery res_query res_send \
106 inet_net_ntop inet_net_pton inet_neta base64 \
107 ns_parse ns_name ns_netint ns_ttl ns_print \
108 ns_samedomain ns_date res_enable_icmp \
109 compat-hooks compat-gethnamaddr
110
111 libanl-routines := gai_cancel gai_error gai_misc gai_notify gai_suspend \
112 getaddrinfo_a
113
114 subdir-dirs = nss_dns
115 vpath %.c nss_dns
116
117 libnss_dns-routines := dns-host dns-network dns-canon
118 libnss_dns-inhibit-o = $(filter-out .os,$(object-suffixes))
119 ifeq ($(build-static-nss),yes)
120 routines += $(libnss_dns-routines) $(libresolv-routines)
121 static-only-routines += $(libnss_dns-routines) $(libresolv-routines)
122 endif
123
124 ifeq ($(run-built-tests),yes)
125 ifneq (no,$(PERL))
126 tests-special += $(objpfx)mtrace-tst-leaks.out
127 xtests-special += $(objpfx)mtrace-tst-leaks2.out
128 tests-special += $(objpfx)mtrace-tst-resolv-res_ninit.out
129 endif
130 endif
131
132 ifeq (,$(filter sunrpc,$(subdirs)))
133 # The netdb.h we install does '#include <rpc/netdb.h>', so one must exist.
134 # If sunrpc/ is built in this configuration, it installs a real <rpc/netdb.h>.
135 # If that's not going to happen, install our dummy file.
136 headers += rpc/netdb.h
137 endif
138
139 generated += mtrace-tst-leaks.out tst-leaks.mtrace \
140 mtrace-tst-leaks2.out tst-leaks2.mtrace \
141 mtrace-tst-resolv-res_ninit.out tst-resolv-res_ninit.mtrace \
142
143 include ../Rules
144
145 LOCALES := en_US.UTF-8 en_US.ISO-8859-1
146 include ../gen-locales.mk
147
148 CFLAGS-res_hconf.c += -fexceptions
149
150 # The DNS NSS modules needs the resolver.
151 $(objpfx)libnss_dns.so: $(objpfx)libresolv.so
152
153 # The asynchronous name lookup code needs the thread library.
154 $(objpfx)libanl.so: $(shared-thread-library)
155
156 $(objpfx)tst-res_hconf_reorder: $(libdl) $(shared-thread-library)
157 tst-res_hconf_reorder-ENV = RESOLV_REORDER=on
158
159 $(objpfx)tst-leaks: $(objpfx)libresolv.so
160 tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace
161 $(objpfx)mtrace-tst-leaks.out: $(objpfx)tst-leaks.out
162 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@; \
163 $(evaluate-test)
164
165 tst-leaks2-ENV = MALLOC_TRACE=$(objpfx)tst-leaks2.mtrace
166 $(objpfx)mtrace-tst-leaks2.out: $(objpfx)tst-leaks2.out
167 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks2.mtrace > $@; \
168 $(evaluate-test)
169
170 tst-resolv-res_ninit-ENV = MALLOC_TRACE=$(objpfx)tst-resolv-res_ninit.mtrace
171 $(objpfx)mtrace-tst-resolv-res_ninit.out: $(objpfx)tst-resolv-res_ninit.out
172 $(common-objpfx)malloc/mtrace \
173 $(objpfx)tst-resolv-res_ninit.mtrace > $@; \
174 $(evaluate-test)
175
176 $(objpfx)tst-bug18665-tcp: $(objpfx)libresolv.so $(shared-thread-library)
177 $(objpfx)tst-bug18665: $(objpfx)libresolv.so $(shared-thread-library)
178 $(objpfx)tst-res_use_inet6: $(objpfx)libresolv.so $(shared-thread-library)
179 $(objpfx)tst-resolv-ai_idn: \
180 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
181 $(objpfx)tst-resolv-ai_idn-latin1: \
182 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
183 $(objpfx)tst-resolv-ai_idn-nolibidn2: \
184 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
185 $(objpfx)tst-resolv-ai_idn.out: $(gen-locales)
186 $(objpfx)tst-resolv-ai_idn-latin1.out: $(gen-locales)
187 $(objpfx)tst-resolv-ai_idn-nolibidn2.out: \
188 $(gen-locales) $(objpfx)tst-no-libidn2.so
189 $(objpfx)tst-resolv-basic: $(objpfx)libresolv.so $(shared-thread-library)
190 $(objpfx)tst-resolv-binary: $(objpfx)libresolv.so $(shared-thread-library)
191 $(objpfx)tst-resolv-edns: $(objpfx)libresolv.so $(shared-thread-library)
192 $(objpfx)tst-resolv-network: $(objpfx)libresolv.so $(shared-thread-library)
193 $(objpfx)tst-resolv-res_init: $(libdl) $(objpfx)libresolv.so
194 $(objpfx)tst-resolv-res_init-multi: $(objpfx)libresolv.so \
195 $(shared-thread-library)
196 $(objpfx)tst-resolv-res_init-thread: $(libdl) $(objpfx)libresolv.so \
197 $(shared-thread-library)
198 $(objpfx)tst-resolv-nondecimal: $(objpfx)libresolv.so $(shared-thread-library)
199 $(objpfx)tst-resolv-qtypes: $(objpfx)libresolv.so $(shared-thread-library)
200 $(objpfx)tst-resolv-rotate: $(objpfx)libresolv.so $(shared-thread-library)
201 $(objpfx)tst-resolv-search: $(objpfx)libresolv.so $(shared-thread-library)
202 $(objpfx)tst-resolv-trailing: $(objpfx)libresolv.so $(shared-thread-library)
203 $(objpfx)tst-resolv-threads: \
204 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
205 $(objpfx)tst-resolv-canonname: \
206 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
207
208 $(objpfx)tst-ns_name: $(objpfx)libresolv.so
209 $(objpfx)tst-ns_name.out: tst-ns_name.data
210 $(objpfx)tst-ns_name_compress: $(objpfx)libresolv.so
211 $(objpfx)tst-ns_name_pton: $(objpfx)libresolv.so
212 $(objpfx)tst-res_hnok: $(objpfx)libresolv.so
213 $(objpfx)tst-p_secstodate: $(objpfx)libresolv.so
214
215
216 # This test case uses the deprecated RES_USE_INET6 resolver option.
217 CFLAGS-tst-res_use_inet6.c += -Wno-error