e70b06020e
PStreams allows you to run another program from your C++ application and to transfer data between the two programs similar to shell pipelines. In the simplest case, a PStreams class is like a C++ wrapper for the POSIX.2 functions popen(3) and pclose(3), using C++ iostreams instead of C's stdio library.
14 lines
357 B
Makefile
14 lines
357 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1.1.1 2011/10/29 10:39:31 ryoon Exp $
|
|
|
|
BUILDLINK_TREE+= pstreams
|
|
|
|
.if !defined(PSTREAMS_BUILDLINK3_MK)
|
|
PSTREAMS_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_DEPMETHOD.pstreams?= build
|
|
|
|
BUILDLINK_API_DEPENDS.pstreams+= pstreams>=0.7.0
|
|
BUILDLINK_PKGSRCDIR.pstreams?= ../../devel/pstreams
|
|
.endif # PSTREAMS_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -pstreams
|