hurd: Avoid PLT ref for __pthread_get_cleanup_stack
[glibc.git] / resolv / Makefile
blobea395ac3eb4332e190a46ac57f08204027212ee1
1 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
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.
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.
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/>.
19 # Sub-makefile for resolv portion of the library.
21 subdir := resolv
23 include ../Makeconfig
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
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
34 tests = tst-aton tst-leaks tst-inet_ntop
35 xtests = tst-leaks2
37 generate := mtrace-tst-leaks.out tst-leaks.mtrace tst-leaks2.mtrace
39 extra-libs := libresolv libnss_dns
40 ifeq ($(have-thread-library),yes)
41 extra-libs += libanl
42 routines += gai_sigqueue
44 tests += \
45 tst-bug18665 \
46 tst-bug18665-tcp \
47 tst-ns_name \
48 tst-ns_name_compress \
49 tst-ns_name_pton \
50 tst-res_hconf_reorder \
51 tst-res_hnok \
52 tst-res_use_inet6 \
53 tst-resolv-basic \
54 tst-resolv-binary \
55 tst-resolv-edns \
56 tst-resolv-network \
57 tst-resolv-res_init-multi \
58 tst-resolv-search \
60 # These tests need libdl.
61 ifeq (yes,$(build-shared))
62 tests += \
63 tst-resolv-ai_idn \
64 tst-resolv-ai_idn-latin1 \
65 tst-resolv-ai_idn-nolibidn2 \
66 tst-resolv-canonname \
68 # uses DEPRECATED_RES_USE_INET6 from <resolv-internal.h>.
69 tests-internal += \
70 tst-resolv-res_init \
71 tst-resolv-res_init-thread \
73 # Needs resolv_context.
74 tests-internal += \
75 tst-resolv-res_ninit \
76 tst-resolv-threads \
78 # Used by tst-resolv-ai_idn-nolibidn2 to disable libidn2 (by not
79 # providing any functions in libidn2.so.0).
80 modules-names += tst-no-libidn2
81 extra-test-objs += tst-no-libidn2.os
82 LDFLAGS-tst-no-libidn2.so = -Wl,-soname,libidn2.so.0
84 endif # $(build-shared)
86 # This test accesses __inet_ntop_length, an internal libc function.
87 tests-internal += tst-inet_pton
89 # This test accesses the __p_secstodate compat symbol.
90 tests-internal += tst-p_secstodate
92 # This test sends millions of packets and is rather slow.
93 xtests += tst-resolv-qtypes
95 # This test has dropped packet tests and runs for a long time.
96 xtests += tst-resolv-rotate
97 endif
98 extra-libs-others = $(extra-libs)
99 libresolv-routines := res_comp res_debug \
100 res_data res_mkquery res_query res_send \
101 inet_net_ntop inet_net_pton inet_neta base64 \
102 ns_parse ns_name ns_netint ns_ttl ns_print \
103 ns_samedomain ns_date \
104 compat-hooks compat-gethnamaddr
106 libanl-routines := gai_cancel gai_error gai_misc gai_notify gai_suspend \
107 getaddrinfo_a
109 subdir-dirs = nss_dns
110 vpath %.c nss_dns
112 libnss_dns-routines := dns-host dns-network dns-canon
113 libnss_dns-inhibit-o = $(filter-out .os,$(object-suffixes))
114 ifeq ($(build-static-nss),yes)
115 routines += $(libnss_dns-routines) $(libresolv-routines)
116 static-only-routines += $(libnss_dns-routines) $(libresolv-routines)
117 endif
119 ifeq ($(run-built-tests),yes)
120 ifneq (no,$(PERL))
121 tests-special += $(objpfx)mtrace-tst-leaks.out
122 xtests-special += $(objpfx)mtrace-tst-leaks2.out
123 tests-special += $(objpfx)mtrace-tst-resolv-res_ninit.out
124 endif
125 endif
127 ifeq (,$(filter sunrpc,$(subdirs)))
128 # The netdb.h we install does '#include <rpc/netdb.h>', so one must exist.
129 # If sunrpc/ is built in this configuration, it installs a real <rpc/netdb.h>.
130 # If that's not going to happen, install our dummy file.
131 headers += rpc/netdb.h
132 endif
134 generated += mtrace-tst-leaks.out tst-leaks.mtrace \
135 mtrace-tst-leaks2.out tst-leaks2.mtrace \
136 mtrace-tst-resolv-res_ninit.out tst-resolv-res_ninit.mtrace \
138 include ../Rules
140 LOCALES := en_US.UTF-8 en_US.ISO-8859-1
141 include ../gen-locales.mk
143 CFLAGS-res_hconf.c += -fexceptions
145 # The DNS NSS modules needs the resolver.
146 $(objpfx)libnss_dns.so: $(objpfx)libresolv.so
148 # The asynchronous name lookup code needs the thread library.
149 $(objpfx)libanl.so: $(shared-thread-library)
151 $(objpfx)tst-res_hconf_reorder: $(libdl) $(shared-thread-library)
152 tst-res_hconf_reorder-ENV = RESOLV_REORDER=on
154 $(objpfx)tst-leaks: $(objpfx)libresolv.so
155 tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace
156 $(objpfx)mtrace-tst-leaks.out: $(objpfx)tst-leaks.out
157 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@; \
158 $(evaluate-test)
160 tst-leaks2-ENV = MALLOC_TRACE=$(objpfx)tst-leaks2.mtrace
161 $(objpfx)mtrace-tst-leaks2.out: $(objpfx)tst-leaks2.out
162 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks2.mtrace > $@; \
163 $(evaluate-test)
165 tst-resolv-res_ninit-ENV = MALLOC_TRACE=$(objpfx)tst-resolv-res_ninit.mtrace
166 $(objpfx)mtrace-tst-resolv-res_ninit.out: $(objpfx)tst-resolv-res_ninit.out
167 $(common-objpfx)malloc/mtrace \
168 $(objpfx)tst-resolv-res_ninit.mtrace > $@; \
169 $(evaluate-test)
171 $(objpfx)tst-bug18665-tcp: $(objpfx)libresolv.so $(shared-thread-library)
172 $(objpfx)tst-bug18665: $(objpfx)libresolv.so $(shared-thread-library)
173 $(objpfx)tst-res_use_inet6: $(objpfx)libresolv.so $(shared-thread-library)
174 $(objpfx)tst-resolv-ai_idn: \
175 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
176 $(objpfx)tst-resolv-ai_idn-latin1: \
177 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
178 $(objpfx)tst-resolv-ai_idn-nolibidn2: \
179 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
180 $(objpfx)tst-resolv-ai_idn.out: $(gen-locales)
181 $(objpfx)tst-resolv-ai_idn-latin1.out: $(gen-locales)
182 $(objpfx)tst-resolv-ai_idn-nolibidn2.out: \
183 $(gen-locales) $(objpfx)tst-no-libidn2.so
184 $(objpfx)tst-resolv-basic: $(objpfx)libresolv.so $(shared-thread-library)
185 $(objpfx)tst-resolv-binary: $(objpfx)libresolv.so $(shared-thread-library)
186 $(objpfx)tst-resolv-edns: $(objpfx)libresolv.so $(shared-thread-library)
187 $(objpfx)tst-resolv-network: $(objpfx)libresolv.so $(shared-thread-library)
188 $(objpfx)tst-resolv-res_init: $(libdl) $(objpfx)libresolv.so
189 $(objpfx)tst-resolv-res_init-multi: $(objpfx)libresolv.so \
190 $(shared-thread-library)
191 $(objpfx)tst-resolv-res_init-thread: $(libdl) $(objpfx)libresolv.so \
192 $(shared-thread-library)
193 $(objpfx)tst-resolv-qtypes: $(objpfx)libresolv.so $(shared-thread-library)
194 $(objpfx)tst-resolv-rotate: $(objpfx)libresolv.so $(shared-thread-library)
195 $(objpfx)tst-resolv-search: $(objpfx)libresolv.so $(shared-thread-library)
196 $(objpfx)tst-resolv-threads: \
197 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
198 $(objpfx)tst-resolv-canonname: \
199 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
201 $(objpfx)tst-ns_name: $(objpfx)libresolv.so
202 $(objpfx)tst-ns_name.out: tst-ns_name.data
203 $(objpfx)tst-ns_name_compress: $(objpfx)libresolv.so
204 $(objpfx)tst-ns_name_pton: $(objpfx)libresolv.so
205 $(objpfx)tst-res_hnok: $(objpfx)libresolv.so
206 $(objpfx)tst-p_secstodate: $(objpfx)libresolv.so
209 # This test case uses the deprecated RES_USE_INET6 resolver option.
210 CFLAGS-tst-res_use_inet6.c += -Wno-error