0286e59545
1.3b: * Fixes when using signals in multi-threaded applications from Scott Lamb. * Other small bug fixes. 1.3a: * Small bug and performances fixes to evhttp layer. 1.3: * DNS Server from Adam Langley and Nick Mathewson * Chunked transfer encoding for HTTP/1.1 from Dug Song. * DNS DDoS fix; bug report from Jon Oberheide. * Various small improvements.
20 lines
661 B
Makefile
20 lines
661 B
Makefile
# $NetBSD: buildlink3.mk,v 1.9 2007/04/25 16:38:37 tnn Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
LIBEVENT_BUILDLINK3_MK:= ${LIBEVENT_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= libevent
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibevent}
|
|
BUILDLINK_PACKAGES+= libevent
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}libevent
|
|
|
|
.if !empty(LIBEVENT_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.libevent+=libevent>=0.6
|
|
BUILDLINK_ABI_DEPENDS.libevent+=libevent-1.3b* # exact match -- see Makefile
|
|
BUILDLINK_PKGSRCDIR.libevent?= ../../devel/libevent
|
|
.endif # LIBEVENT_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|