resolv: Move _res deallocation functions to their own file
[platform/upstream/glibc.git] / resolv / Makefile
1 # Copyright (C) 1994-2017 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
33 tests = tst-aton tst-leaks tst-inet_ntop
34 xtests = tst-leaks2
35
36 generate := mtrace-tst-leaks.out tst-leaks.mtrace tst-leaks2.mtrace
37
38 extra-libs := libresolv libnss_dns
39 ifeq ($(have-thread-library),yes)
40 extra-libs += libanl
41 routines += gai_sigqueue
42
43 tests += \
44   tst-bug18665 \
45   tst-bug18665-tcp \
46   tst-ns_name \
47   tst-ns_name_compress \
48   tst-res_hconf_reorder \
49   tst-res_use_inet6 \
50   tst-resolv-basic \
51   tst-resolv-edns \
52   tst-resolv-network \
53   tst-resolv-search \
54
55 # These tests need libdl.
56 ifeq (yes,$(build-shared))
57 tests += \
58   tst-resolv-canonname \
59
60 # uses DEPRECATED_RES_USE_INET6 from <resolv-internal.h>.
61 tests-internal += \
62   tst-resolv-res_init \
63   tst-resolv-res_init-thread \
64
65 endif
66
67 # This test sends millions of packets and is rather slow.
68 xtests += tst-resolv-qtypes
69 endif
70 extra-libs-others = $(extra-libs)
71 libresolv-routines := res_comp res_debug \
72                       res_data res_mkquery res_query res_send           \
73                       inet_net_ntop inet_net_pton inet_neta base64      \
74                       ns_parse ns_name ns_netint ns_ttl ns_print        \
75                       ns_samedomain ns_date \
76                       compat-hooks compat-gethnamaddr
77
78 libanl-routines := gai_cancel gai_error gai_misc gai_notify gai_suspend \
79                    getaddrinfo_a
80
81 subdir-dirs = nss_dns
82 vpath %.c nss_dns
83
84 libnss_dns-routines     := dns-host dns-network dns-canon
85 libnss_dns-inhibit-o    = $(filter-out .os,$(object-suffixes))
86 ifeq ($(build-static-nss),yes)
87 routines                += $(libnss_dns-routines) $(libresolv-routines)
88 static-only-routines    += $(libnss_dns-routines) $(libresolv-routines)
89 endif
90
91 ifeq (yesyes,$(build-shared)$(have-thread-library))
92 tests: $(objpfx)ga_test
93 endif
94
95 ifeq ($(run-built-tests),yes)
96 ifneq (no,$(PERL))
97 tests-special += $(objpfx)mtrace-tst-leaks.out
98 xtests-special += $(objpfx)mtrace-tst-leaks2.out
99 endif
100 endif
101
102 ifeq (,$(filter sunrpc,$(subdirs)))
103 # The netdb.h we install does '#include <rpc/netdb.h>', so one must exist.
104 # If sunrpc/ is built in this configuration, it installs a real <rpc/netdb.h>.
105 # If that's not going to happen, install our dummy file.
106 headers += rpc/netdb.h
107 endif
108
109 generated += mtrace-tst-leaks.out tst-leaks.mtrace \
110              mtrace-tst-leaks2.out tst-leaks2.mtrace
111
112 include ../Rules
113
114 CFLAGS-res_hconf.c = -fexceptions
115
116 # The DNS NSS modules needs the resolver.
117 $(objpfx)libnss_dns.so: $(objpfx)libresolv.so
118
119 # The asynchronous name lookup code needs the thread library.
120 $(objpfx)libanl.so: $(shared-thread-library)
121
122 $(objpfx)ga_test: $(objpfx)libanl.so $(shared-thread-library)
123
124 $(objpfx)tst-res_hconf_reorder: $(libdl) $(shared-thread-library)
125 tst-res_hconf_reorder-ENV = RESOLV_REORDER=on
126
127 $(objpfx)tst-leaks: $(objpfx)libresolv.so
128 tst-leaks-ENV = MALLOC_TRACE=$(objpfx)tst-leaks.mtrace
129 $(objpfx)mtrace-tst-leaks.out: $(objpfx)tst-leaks.out
130         $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks.mtrace > $@; \
131         $(evaluate-test)
132
133 tst-leaks2-ENV = MALLOC_TRACE=$(objpfx)tst-leaks2.mtrace
134 $(objpfx)mtrace-tst-leaks2.out: $(objpfx)tst-leaks2.out
135         $(common-objpfx)malloc/mtrace $(objpfx)tst-leaks2.mtrace > $@; \
136         $(evaluate-test)
137
138 $(objpfx)tst-bug18665-tcp: $(objpfx)libresolv.so $(shared-thread-library)
139 $(objpfx)tst-bug18665: $(objpfx)libresolv.so $(shared-thread-library)
140 $(objpfx)tst-res_use_inet6: $(objpfx)libresolv.so $(shared-thread-library)
141 $(objpfx)tst-resolv-basic: $(objpfx)libresolv.so $(shared-thread-library)
142 $(objpfx)tst-resolv-edns: $(objpfx)libresolv.so $(shared-thread-library)
143 $(objpfx)tst-resolv-network: $(objpfx)libresolv.so $(shared-thread-library)
144 $(objpfx)tst-resolv-res_init: $(libdl) $(objpfx)libresolv.so
145 $(objpfx)tst-resolv-res_init-thread: $(libdl) $(objpfx)libresolv.so \
146   $(shared-thread-library)
147 $(objpfx)tst-resolv-qtypes: $(objpfx)libresolv.so $(shared-thread-library)
148 $(objpfx)tst-resolv-search: $(objpfx)libresolv.so $(shared-thread-library)
149 $(objpfx)tst-resolv-canonname: \
150   $(libdl) $(objpfx)libresolv.so $(shared-thread-library)
151
152 $(objpfx)tst-ns_name: $(objpfx)libresolv.so
153 $(objpfx)tst-ns_name.out: tst-ns_name.data
154 $(objpfx)tst-ns_name_compress: $(objpfx)libresolv.so
155
156
157 # This test case uses the deprecated RES_USE_INET6 resolver option.
158 CFLAGS-tst-res_use_inet6.c += -Wno-error