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.
18 lines
488 B
Makefile
18 lines
488 B
Makefile
# $NetBSD: buildlink3.mk,v 1.4 2004/01/24 03:26:48 jlam Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
XCURSOR_BUILDLINK3_MK:= ${XCURSOR_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= xcursor
|
|
.endif
|
|
|
|
BUILDLINK_IS_BUILTIN.xcursor?= no
|
|
|
|
.if !empty(XCURSOR_BUILDLINK3_MK:M+)
|
|
BUILDLINK_DEPENDS.xcursor+= xcursor>=1.1.1
|
|
BUILDLINK_PKGSRCDIR.xcursor?= ../../x11/xcursor
|
|
BUILDLINK_PACKAGES+= xcursor
|
|
.endif # XCURSOR_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|