a7d877ca6a
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched.
16 lines
447 B
Makefile
16 lines
447 B
Makefile
# $NetBSD: buildlink3.mk,v 1.4 2004/01/24 03:26:48 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
RSAREF_BUILDLINK3_MK:= ${RSAREF_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= rsaref
|
|
.endif
|
|
|
|
.if !empty(RSAREF_BUILDLINK3_MK:M+)
|
|
BUILDLINK_PACKAGES+= rsaref
|
|
BUILDLINK_DEPENDS.rsaref+= rsaref-2.0p3
|
|
BUILDLINK_PKGSRCDIR.rsaref?= ../../security/rsaref
|
|
.endif # RSAREF_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|