Fri Jan 1 20:38:36 2021 UTC ()
libunbound: Now we use libevent, don't build mini_event or winsock_event.


(roy)
diff -r1.4 -r1.5 src/external/bsd/unbound/lib/libunbound/Makefile

cvs diff -r1.4 -r1.5 src/external/bsd/unbound/lib/libunbound/Makefile (switch to unified diff)

--- src/external/bsd/unbound/lib/libunbound/Makefile 2019/05/26 02:49:12 1.4
+++ src/external/bsd/unbound/lib/libunbound/Makefile 2021/01/01 20:38:36 1.5
@@ -1,112 +1,110 @@ @@ -1,112 +1,110 @@
1# $NetBSD: Makefile,v 1.4 2019/05/26 02:49:12 christos Exp $ 1# $NetBSD: Makefile,v 1.5 2021/01/01 20:38:36 roy Exp $
2 2
3.include <bsd.init.mk> 3.include <bsd.init.mk>
4 4
5.PATH: \ 5.PATH: \
6${UNBOUND}/cachedb \ 6${UNBOUND}/cachedb \
7${UNBOUND}/dns64 \ 7${UNBOUND}/dns64 \
8${UNBOUND}/iterator \ 8${UNBOUND}/iterator \
9${UNBOUND}/libunbound \ 9${UNBOUND}/libunbound \
10${UNBOUND}/respip \ 10${UNBOUND}/respip \
11${UNBOUND}/services \ 11${UNBOUND}/services \
12${UNBOUND}/services/cache \ 12${UNBOUND}/services/cache \
13${UNBOUND}/sldns \ 13${UNBOUND}/sldns \
14${UNBOUND}/util \ 14${UNBOUND}/util \
15${UNBOUND}/util/data \ 15${UNBOUND}/util/data \
16${UNBOUND}/util/storage \ 16${UNBOUND}/util/storage \
17${UNBOUND}/validator 17${UNBOUND}/validator
18 18
19CPPFLAGS+=-I${UNBOUND} -I${UNBOUND}/../include 19CPPFLAGS+=-I${UNBOUND} -I${UNBOUND}/../include
20 20
21LIB=unbound 21LIB=unbound
22SRCS=\ 22SRCS=\
23alloc.c \ 23alloc.c \
24as112.c \ 24as112.c \
25authzone.c \ 25authzone.c \
26autotrust.c \ 26autotrust.c \
27cachedb.c \ 27cachedb.c \
28config_file.c \ 28config_file.c \
29configlexer.c \ 29configlexer.c \
30configparser.c \ 30configparser.c \
31context.c \ 31context.c \
32dname.c \ 32dname.c \
33dns.c \ 33dns.c \
34dns64.c \ 34dns64.c \
35dnstree.c \ 35dnstree.c \
36edns.c \ 36edns.c \
37fptr_wlist.c \ 37fptr_wlist.c \
38infra.c \ 38infra.c \
39iter_delegpt.c \ 39iter_delegpt.c \
40iter_donotq.c \ 40iter_donotq.c \
41iter_fwd.c \ 41iter_fwd.c \
42iter_hints.c \ 42iter_hints.c \
43iter_priv.c \ 43iter_priv.c \
44iter_resptype.c \ 44iter_resptype.c \
45iter_scrub.c \ 45iter_scrub.c \
46iter_utils.c \ 46iter_utils.c \
47iterator.c \ 47iterator.c \
48keyraw.c \ 48keyraw.c \
49libunbound.c \ 49libunbound.c \
50libworker.c \ 50libworker.c \
51listen_dnsport.c \ 51listen_dnsport.c \
52localzone.c \ 52localzone.c \
53locks.c \ 53locks.c \
54log.c \ 54log.c \
55lookup3.c \ 55lookup3.c \
56lruhash.c \ 56lruhash.c \
57mesh.c \ 57mesh.c \
58mini_event.c \ 
59modstack.c \ 58modstack.c \
60module.c \ 59module.c \
61msgencode.c \ 60msgencode.c \
62msgparse.c \ 61msgparse.c \
63msgreply.c \ 62msgreply.c \
64net_help.c \ 63net_help.c \
65netevent.c \ 64netevent.c \
66outbound_list.c \ 65outbound_list.c \
67outside_network.c \ 66outside_network.c \
68packed_rrset.c \ 67packed_rrset.c \
69parse.c \ 68parse.c \
70parseutil.c \ 69parseutil.c \
71random.c \ 70random.c \
72rbtree.c \ 71rbtree.c \
73regional.c \ 72regional.c \
74respip.c \ 73respip.c \
75rrdef.c \ 74rrdef.c \
76rrset.c \ 75rrset.c \
77rtt.c \ 76rtt.c \
78sbuffer.c \ 77sbuffer.c \
79slabhash.c \ 78slabhash.c \
80str2wire.c \ 79str2wire.c \
81tcp_conn_limit.c \ 80tcp_conn_limit.c \
82timehist.c \ 81timehist.c \
83tube.c \ 82tube.c \
84ub_event_pluggable.c \ 83ub_event_pluggable.c \
85val_anchor.c \ 84val_anchor.c \
86val_kcache.c \ 85val_kcache.c \
87val_kentry.c \ 86val_kentry.c \
88val_neg.c \ 87val_neg.c \
89val_nsec.c \ 88val_nsec.c \
90val_nsec3.c \ 89val_nsec3.c \
91val_secalgo.c \ 90val_secalgo.c \
92val_sigcrypt.c \ 91val_sigcrypt.c \
93val_utils.c \ 92val_utils.c \
94validator.c \ 93validator.c \
95view.c \ 94view.c \
96winsock_event.c \ 
97wire2str.c 95wire2str.c
98 96
99LIBDPLIBS+= ${DPLIBS} 97LIBDPLIBS+= ${DPLIBS}
100 98
101INCS=unbound.h 99INCS=unbound.h
102INCSDIR=/usr/include 100INCSDIR=/usr/include
103 101
104MAN=libunbound.3 102MAN=libunbound.3
105CLEANFILES+=libunbound.3 103CLEANFILES+=libunbound.3
106 104
107libunbound.3: libunbound.3.in __subst 105libunbound.3: libunbound.3.in __subst
108 106
109.include <bsd.lib.mk> 107.include <bsd.lib.mk>
110 108
111# Use the generated files 109# Use the generated files
112.y.c: 110.y.c: