]> git.ipfire.org Git - thirdparty/glibc.git/blob - resolv/Makefile
tunables: report sbrk() failure
[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 # <https://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-resolv-basic \
56 tst-resolv-binary \
57 tst-resolv-edns \
58 tst-resolv-network \
59 tst-resolv-nondecimal \
60 tst-resolv-res_init-multi \
61 tst-resolv-search \
62 tst-resolv-trailing \
63
64 # These tests need libdl.
65 ifeq (yes,$(build-shared))
66 tests += \
67 tst-resolv-ai_idn \
68 tst-resolv-ai_idn-latin1 \
69 tst-resolv-ai_idn-nolibidn2 \
70 tst-resolv-canonname \
71 tst-resolv-trustad \
72
73 # Needs resolv_context.
74 tests-internal += \
75 tst-resolv-res_init \
76 tst-resolv-res_init-thread \
77 tst-resolv-res_ninit \
78 tst-resolv-threads \
79
80 # Used by tst-resolv-ai_idn-nolibidn2 to disable libidn2 (by not
81 # providing any functions in libidn2.so.0).
82 modules-names += tst-no-libidn2
83 extra-test-objs += tst-no-libidn2.os
84 LDFLAGS-tst-no-libidn2.so = -Wl,-soname,libidn2.so.0
85
86 endif # $(build-shared)
87
88 # This test accesses __inet_ntop_length, an internal libc function.
89 tests-internal += tst-inet_pton
90
91 # This test accesses the __p_secstodate compat symbol.
92 tests-internal += tst-p_secstodate
93
94 # This test sends millions of packets and is rather slow.
95 xtests += tst-resolv-qtypes
96
97 # This test has dropped packet tests and runs for a long time.
98 xtests += tst-resolv-rotate
99 endif
100 extra-libs-others = $(extra-libs)
101 libresolv-routines := res_comp res_debug \
102 res_data res_mkquery res_query res_send \
103 inet_net_ntop inet_net_pton inet_neta base64 \
104 ns_parse ns_name ns_netint ns_ttl ns_print \
105 ns_samedomain ns_date res_enable_icmp \
106 compat-hooks compat-gethnamaddr
107
108 libanl-routines := gai_cancel gai_error gai_misc gai_notify gai_suspend \
109 getaddrinfo_a
110
111 subdir-dirs = nss_dns
112 vpath %.c nss_dns
113
114 libnss_dns-routines := dns-host dns-network dns-canon
115 libnss_dns-inhibit-o = $(filter-out .os,$(object-suffixes))
116 ifeq ($(build-static-nss),yes)
117 routines += $(libnss_dns-routines) $(libresolv-routines)
118 static-only-routines += $(libnss_dns-routines) $(libresolv-routines)
119 endif
120
121 ifeq ($(run-built-tests),yes)
122 ifneq (no,$(PERL))
123 tests-special += $(objpfx)mtrace-tst-leaks.out
124 xtests-special += $(objpfx)mtrace-tst-leaks2.out
125 tests-special += $(objpfx)mtrace-tst-resolv-res_ninit.out
126 endif
127 endif
128
129 ifeq (,$(filter sunrpc,$(subdirs)))
130 # The netdb.h we install does '#include <rpc/netdb.h>', so one must exist.
131 # If sunrpc/ is built in this configuration, it installs a real <rpc/netdb.h>.
132 # If that's not going to happen, install our dummy file.
133 headers += rpc/netdb.h
134 endif
135
136 generated += mtrace-tst-leaks.out tst-leaks.mtrace \
137 mtrace-tst-leaks2.out tst-leaks2.mtrace \
138 mtrace-tst-resolv-res_ninit.out tst-resolv-res_ninit.mtrace \
139
140 include ../Rules
141
142 LOCALES := en_US.UTF-8 en_US.ISO-8859-1
143 include ../gen-locales.mk
144
145 CFLAGS-res_hconf.c += -fexceptions
146
147 # The DNS NSS modules needs the resolver.
148 $(objpfx)libnss_dns.so: $(objpfx)libresolv.so
149
150 # The asynchronous name lookup code needs the thread library.
151 $(objpfx)libanl.so: $(shared-thread-library)
152
153 $(objpfx)tst-res_hconf_reorder: $(libdl) $(shared-thread-library)
154 tst-res_hconf_reorder-ENV = RESOLV_REORDER=on
155
156 $(objpfx)tst-leaks: $(objpfx)libresolv.so
157 tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace
158 $(objpfx)mtrace-tst-leaks.out: $(objpfx)tst-leaks.out
159 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@; \
160 $(evaluate-test)
161
162 tst-leaks2-ENV = MALLOC_TRACE=$(objpfx)tst-leaks2.mtrace
163 $(objpfx)mtrace-tst-leaks2.out: $(objpfx)tst-leaks2.out
164 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks2.mtrace > $@; \
165 $(evaluate-test)
166
167 tst-resolv-res_ninit-ENV = MALLOC_TRACE=$(objpfx)tst-resolv-res_ninit.mtrace
168 $(objpfx)mtrace-tst-resolv-res_ninit.out: $(objpfx)tst-resolv-res_ninit.out
169 $(common-objpfx)malloc/mtrace \
170 $(objpfx)tst-resolv-res_ninit.mtrace > $@; \
171 $(evaluate-test)
172
173 $(objpfx)tst-bug18665-tcp: $(objpfx)libresolv.so $(shared-thread-library)
174 $(objpfx)tst-bug18665: $(objpfx)libresolv.so $(shared-thread-library)
175 $(objpfx)tst-resolv-ai_idn: \
176 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
177 $(objpfx)tst-resolv-ai_idn-latin1: \
178 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
179 $(objpfx)tst-resolv-ai_idn-nolibidn2: \
180 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
181 $(objpfx)tst-resolv-ai_idn.out: $(gen-locales)
182 $(objpfx)tst-resolv-ai_idn-latin1.out: $(gen-locales)
183 $(objpfx)tst-resolv-ai_idn-nolibidn2.out: \
184 $(gen-locales) $(objpfx)tst-no-libidn2.so
185 $(objpfx)tst-resolv-basic: $(objpfx)libresolv.so $(shared-thread-library)
186 $(objpfx)tst-resolv-binary: $(objpfx)libresolv.so $(shared-thread-library)
187 $(objpfx)tst-resolv-edns: $(objpfx)libresolv.so $(shared-thread-library)
188 $(objpfx)tst-resolv-network: $(objpfx)libresolv.so $(shared-thread-library)
189 $(objpfx)tst-resolv-res_init: $(libdl) $(objpfx)libresolv.so
190 $(objpfx)tst-resolv-res_init-multi: $(objpfx)libresolv.so \
191 $(shared-thread-library)
192 $(objpfx)tst-resolv-res_init-thread: $(libdl) $(objpfx)libresolv.so \
193 $(shared-thread-library)
194 $(objpfx)tst-resolv-nondecimal: $(objpfx)libresolv.so $(shared-thread-library)
195 $(objpfx)tst-resolv-qtypes: $(objpfx)libresolv.so $(shared-thread-library)
196 $(objpfx)tst-resolv-rotate: $(objpfx)libresolv.so $(shared-thread-library)
197 $(objpfx)tst-resolv-search: $(objpfx)libresolv.so $(shared-thread-library)
198 $(objpfx)tst-resolv-trailing: $(objpfx)libresolv.so $(shared-thread-library)
199 $(objpfx)tst-resolv-threads: \
200 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
201 $(objpfx)tst-resolv-canonname: \
202 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
203 $(objpfx)tst-resolv-trustad: $(objpfx)libresolv.so $(shared-thread-library)
204
205 $(objpfx)tst-ns_name: $(objpfx)libresolv.so
206 $(objpfx)tst-ns_name.out: tst-ns_name.data
207 $(objpfx)tst-ns_name_compress: $(objpfx)libresolv.so
208 $(objpfx)tst-ns_name_pton: $(objpfx)libresolv.so
209 $(objpfx)tst-res_hnok: $(objpfx)libresolv.so
210 $(objpfx)tst-p_secstodate: $(objpfx)libresolv.so