3a573e625e
Cross platform library for the sendfile system call. This library tries to call minimum system calls which are the bottleneck of web servers.
26 lines
721 B
Makefile
26 lines
721 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/05/05 15:43:54 pho Exp $
|
|
|
|
DISTNAME= simple-sendfile-0.2.30
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
COMMENT= Cross platform library for the sendfile system call
|
|
LICENSE= modified-bsd
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk" # for ${OPSYS}
|
|
|
|
PLIST_SRC= PLIST.common
|
|
.if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Darwin"
|
|
PLIST_SRC+= PLIST.bsd
|
|
.elif ${OPSYS} == "Linux"
|
|
PLIST_SRC+= PLIST.linux
|
|
.else
|
|
PLIST_SRC+= PLIST.others
|
|
.include "../../devel/hs-conduit/buildlink3.mk"
|
|
.include "../../devel/hs-conduit-extra/buildlink3.mk"
|
|
.include "../../devel/hs-resourcet/buildlink3.mk"
|
|
.endif
|
|
|
|
.include "../../net/hs-network/buildlink3.mk"
|
|
.include "../../mk/haskell.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|