Remove "[Add new features here]" for 2.27
[glibc.git] / resolv / Makefile
blobec7e4fd146c7d98c065411c21ef4adbfd7b07f34
1 # Copyright (C) 1994-2017 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-res_hconf_reorder \
50 tst-res_use_inet6 \
51 tst-resolv-basic \
52 tst-resolv-edns \
53 tst-resolv-network \
54 tst-resolv-res_init-multi \
55 tst-resolv-search \
57 # These tests need libdl.
58 ifeq (yes,$(build-shared))
59 tests += \
60 tst-resolv-canonname \
62 # uses DEPRECATED_RES_USE_INET6 from <resolv-internal.h>.
63 tests-internal += \
64 tst-resolv-res_init \
65 tst-resolv-res_init-thread \
67 # Needs resolv_context.
68 tests-internal += \
69 tst-resolv-res_ninit \
70 tst-resolv-threads \
72 endif
74 # This test accesses __inet_ntop_range, an internal libc function.
75 tests-internal += tst-inet_pton
77 # This test sends millions of packets and is rather slow.
78 xtests += tst-resolv-qtypes
80 # This test has dropped packet tests and runs for a long time.
81 xtests += tst-resolv-rotate
82 endif
83 extra-libs-others = $(extra-libs)
84 libresolv-routines := res_comp res_debug \
85 res_data res_mkquery res_query res_send \
86 inet_net_ntop inet_net_pton inet_neta base64 \
87 ns_parse ns_name ns_netint ns_ttl ns_print \
88 ns_samedomain ns_date \
89 compat-hooks compat-gethnamaddr
91 libanl-routines := gai_cancel gai_error gai_misc gai_notify gai_suspend \
92 getaddrinfo_a
94 subdir-dirs = nss_dns
95 vpath %.c nss_dns
97 libnss_dns-routines := dns-host dns-network dns-canon
98 libnss_dns-inhibit-o = $(filter-out .os,$(object-suffixes))
99 ifeq ($(build-static-nss),yes)
100 routines += $(libnss_dns-routines) $(libresolv-routines)
101 static-only-routines += $(libnss_dns-routines) $(libresolv-routines)
102 endif
104 ifeq (yesyes,$(build-shared)$(have-thread-library))
105 tests: $(objpfx)ga_test
106 endif
108 ifeq ($(run-built-tests),yes)
109 ifneq (no,$(PERL))
110 tests-special += $(objpfx)mtrace-tst-leaks.out
111 xtests-special += $(objpfx)mtrace-tst-leaks2.out
112 tests-special += $(objpfx)mtrace-tst-resolv-res_ninit.out
113 endif
114 endif
116 ifeq (,$(filter sunrpc,$(subdirs)))
117 # The netdb.h we install does '#include <rpc/netdb.h>', so one must exist.
118 # If sunrpc/ is built in this configuration, it installs a real <rpc/netdb.h>.
119 # If that's not going to happen, install our dummy file.
120 headers += rpc/netdb.h
121 endif
123 generated += mtrace-tst-leaks.out tst-leaks.mtrace \
124 mtrace-tst-leaks2.out tst-leaks2.mtrace \
125 mtrace-tst-resolv-res_ninit.out tst-resolv-res_ninit.mtrace \
127 include ../Rules
129 CFLAGS-res_hconf.c = -fexceptions
131 # The DNS NSS modules needs the resolver.
132 $(objpfx)libnss_dns.so: $(objpfx)libresolv.so
134 # The asynchronous name lookup code needs the thread library.
135 $(objpfx)libanl.so: $(shared-thread-library)
137 $(objpfx)ga_test: $(objpfx)libanl.so $(shared-thread-library)
139 $(objpfx)tst-res_hconf_reorder: $(libdl) $(shared-thread-library)
140 tst-res_hconf_reorder-ENV = RESOLV_REORDER=on
142 $(objpfx)tst-leaks: $(objpfx)libresolv.so
143 tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace
144 $(objpfx)mtrace-tst-leaks.out: $(objpfx)tst-leaks.out
145 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@; \
146 $(evaluate-test)
148 tst-leaks2-ENV = MALLOC_TRACE=$(objpfx)tst-leaks2.mtrace
149 $(objpfx)mtrace-tst-leaks2.out: $(objpfx)tst-leaks2.out
150 $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks2.mtrace > $@; \
151 $(evaluate-test)
153 tst-resolv-res_ninit-ENV = MALLOC_TRACE=$(objpfx)tst-resolv-res_ninit.mtrace
154 $(objpfx)mtrace-tst-resolv-res_ninit.out: $(objpfx)tst-resolv-res_ninit.out
155 $(common-objpfx)malloc/mtrace \
156 $(objpfx)tst-resolv-res_ninit.mtrace > $@; \
157 $(evaluate-test)
159 $(objpfx)tst-bug18665-tcp: $(objpfx)libresolv.so $(shared-thread-library)
160 $(objpfx)tst-bug18665: $(objpfx)libresolv.so $(shared-thread-library)
161 $(objpfx)tst-res_use_inet6: $(objpfx)libresolv.so $(shared-thread-library)
162 $(objpfx)tst-resolv-basic: $(objpfx)libresolv.so $(shared-thread-library)
163 $(objpfx)tst-resolv-edns: $(objpfx)libresolv.so $(shared-thread-library)
164 $(objpfx)tst-resolv-network: $(objpfx)libresolv.so $(shared-thread-library)
165 $(objpfx)tst-resolv-res_init: $(libdl) $(objpfx)libresolv.so
166 $(objpfx)tst-resolv-res_init-multi: $(objpfx)libresolv.so \
167 $(shared-thread-library)
168 $(objpfx)tst-resolv-res_init-thread: $(libdl) $(objpfx)libresolv.so \
169 $(shared-thread-library)
170 $(objpfx)tst-resolv-qtypes: $(objpfx)libresolv.so $(shared-thread-library)
171 $(objpfx)tst-resolv-rotate: $(objpfx)libresolv.so $(shared-thread-library)
172 $(objpfx)tst-resolv-search: $(objpfx)libresolv.so $(shared-thread-library)
173 $(objpfx)tst-resolv-threads: \
174 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
175 $(objpfx)tst-resolv-canonname: \
176 $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
178 $(objpfx)tst-ns_name: $(objpfx)libresolv.so
179 $(objpfx)tst-ns_name.out: tst-ns_name.data
180 $(objpfx)tst-ns_name_compress: $(objpfx)libresolv.so
183 # This test case uses the deprecated RES_USE_INET6 resolver option.
184 CFLAGS-tst-res_use_inet6.c += -Wno-error