e35a1f8cef
The serf library is a C-based HTTP client library built upon the Apache Portable Runtime (APR) library. It multiplexes connections, running the read/write communication asynchronously. Memory copies and transformations are kept to a minimum to provide high performance operation.
22 lines
625 B
Makefile
22 lines
625 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2007/01/24 19:55:59 epg Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
SERF_BUILDLINK3_MK:= ${SERF_BUILDLINK3_MK}+
|
|
|
|
.if ${BUILDLINK_DEPTH} == "+"
|
|
BUILDLINK_DEPENDS+= serf
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nserf}
|
|
BUILDLINK_PACKAGES+= serf
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}serf
|
|
|
|
.if ${SERF_BUILDLINK3_MK} == "+"
|
|
BUILDLINK_API_DEPENDS.serf+= serf>=0.1.0
|
|
BUILDLINK_PKGSRCDIR.serf?= ../../www/serf
|
|
.endif # SERF_BUILDLINK3_MK
|
|
|
|
.include "../../devel/apr/buildlink3.mk"
|
|
.include "../../devel/apr-util/buildlink3.mk"
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|