aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorvd <vd@FreeBSD.org>2008-08-25 19:23:15 +0800
committervd <vd@FreeBSD.org>2008-08-25 19:23:15 +0800
commit03259907fad5b3a7de2d2bfec1ef7029c8090c21 (patch)
tree661adc52cf292eb060520b05920031363321eac4 /graphics
parent10a157021cf1149634780890eff33bbd3bd709c9 (diff)
downloadfreebsd-ports-graphics-03259907fad5b3a7de2d2bfec1ef7029c8090c21.tar.gz
freebsd-ports-graphics-03259907fad5b3a7de2d2bfec1ef7029c8090c21.tar.zst
freebsd-ports-graphics-03259907fad5b3a7de2d2bfec1ef7029c8090c21.zip
Fix dependency, ptmalloc >= 2.0_1 is needed.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/xaralx/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/xaralx/Makefile b/graphics/xaralx/Makefile
index 066f289a9a5..2629258268b 100644
--- a/graphics/xaralx/Makefile
+++ b/graphics/xaralx/Makefile
@@ -65,7 +65,8 @@ ONLY_FOR_ARCHS_REASON= does not configure due to the lack of CDraw libraries for
.if ${OSVERSION} < 700036
# we're using ptmalloc because the stock libc does not have malloc_usable_size()
-LIB_DEPENDS+= ptmalloc.2:${PORTSDIR}/devel/ptmalloc
+BUILD_DEPENDS+= ptmalloc>=2.0_1:${PORTSDIR}/devel/ptmalloc
+RUN_DEPENDS+= ptmalloc>=2.0_1:${PORTSDIR}/devel/ptmalloc
CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib -lptmalloc"
MAKE_ENV+= INCLUDES="-I${LOCALBASE}/include/ptmalloc"
.else