pkgsrc-wip/hs-regional-pointers/buildlink3.mk
PHO / phonohawk 69d3a06875 Import hs-regional-pointers-0.4 as wip/hs-regional-pointers.
The library allows you to allocate memory in a region yielding a
regional pointer to it. When the region terminates all pointers are
automatically freed. Most importantly, a pointer can't be returned
from the region. So it's impossible to reference unallocated memory.

The primary technique used in this package is called "Lightweight
monadic regions" which was invented by Oleg Kiselyov and Chung-chieh
Shan. See:
http://okmij.org/ftp/Haskell/regions.html#light-weight

This technique is implemented in the regions package which is
re-exported from this library.

This library provides wrappers around all the Ptr functions from the
Foreign.* modules from base.
2010-11-02 17:03:38 +00:00

17 lines
648 B
Makefile

# $NetBSD: buildlink3.mk,v 1.1.1.1 2010/11/02 17:03:38 phonohawk Exp $
BUILDLINK_TREE+= hs-regional-pointers
.if !defined(HS_REGIONAL_POINTERS_BUILDLINK3_MK)
HS_REGIONAL_POINTERS_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.hs-regional-pointers+= hs-regional-pointers>=0.4
BUILDLINK_PKGSRCDIR.hs-regional-pointers?= ../../wip/hs-regional-pointers
.include "../../wip/hs-base-unicode-symbols/buildlink3.mk"
.include "../../wip/hs-MonadCatchIO-transformers/buildlink3.mk"
.include "../../wip/hs-regions/buildlink3.mk"
.include "../../wip/hs-transformers/buildlink3.mk"
.endif # HS_REGIONAL_POINTERS_BUILDLINK3_MK
BUILDLINK_TREE+= -hs-regional-pointers