blob: 999bcf70d9ecd100780d56ad112981f4ff460cb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# $NetBSD: builtin.mk,v 1.2 2011/01/12 08:53:52 adam Exp $
BUILTIN_PKG:= mDNSResponder
BUILTIN_FIND_FILES_VAR:= H_DNSSD
BUILTIN_FIND_FILES.H_DNSSD= /usr/include/dns_sd.h
.include "../../mk/buildlink3/bsd.builtin.mk"
###
### Determine if there is a built-in implementation of the package and
### set IS_BUILTIN.<pkg> appropriately ("yes" or "no").
###
.if !defined(IS_BUILTIN.mDNSResponder)
IS_BUILTIN.mDNSResponder= no
. if empty(H_DNSSD:M__nonexistent__)
IS_BUILTIN.mDNSResponder= yes
. endif
.endif # IS_BUILTIN.mDNSResponder
MAKEVARS+= IS_BUILTIN.mDNSResponder
###
### If there is a built-in implementation, then set BUILTIN_PKG.<pkg> to
### a package name to represent the built-in package.
###
.if !defined(BUILTIN_PKG.mDNSResponder) && \
!empty(IS_BUILTIN.mDNSResponder:M[yY][eE][sS]) && \
empty(H_DNSSD:M__nonexistent__)
_BLTN_DNSSD_212_1!= \
${GREP} -c 2120100 ${H_DNSSD} || ${TRUE}
_BLTN_DNSSD_214_3_2!= \
${GREP} -c 2140302 ${H_DNSSD} || ${TRUE}
. if ${_BLTN_DNSSD_214_3_2} == "1"
BUILTIN_VERSION.mDNSResponder= 214.3.2
. elif ${_BLTN_DNSSD_212_1} == "1"
BUILTIN_VERSION.mDNSResponder= 212.1
. else
BUILTIN_VERSION.mDNSResponder= 0 #unknown
. endif
BUILTIN_PKG.mDNSResponder= mDNSResponder-${BUILTIN_VERSION.mDNSResponder}
.endif
###
### Determine whether we should use the built-in implementation if it
### exists, and set USE_BUILTIN.<pkg> appropriate ("yes" or "no").
###
.if !defined(USE_BUILTIN.mDNSResponder)
. if ${PREFER.mDNSResponder} == "pkgsrc"
USE_BUILTIN.mDNSResponder= no
. else
USE_BUILTIN.mDNSResponder= ${IS_BUILTIN.mDNSResponder}
. if defined(BUILTIN_PKG.mDNSResponder) && \
!empty(IS_BUILTIN.mDNSResponder:M[yY][eE][sS])
USE_BUILTIN.mDNSResponder= yes
. for _dep_ in ${BUILDLINK_API_DEPENDS.mDNSResponder}
. if !empty(USE_BUILTIN.mDNSResponder:M[yY][eE][sS])
USE_BUILTIN.mDNSResponder!= \
if ${PKG_ADMIN} pmatch ${_dep_:Q} ${BUILTIN_PKG.mDNSResponder:Q}; then \
${ECHO} yes; \
else \
${ECHO} no; \
fi
. endif
. endfor
. endif
. endif # PREFER.mDNSResponder
.endif
MAKEVARS+= USE_BUILTIN.mDNSResponder
|