diff options
author | vd <vd@FreeBSD.org> | 2008-08-25 19:23:15 +0800 |
---|---|---|
committer | vd <vd@FreeBSD.org> | 2008-08-25 19:23:15 +0800 |
commit | 03259907fad5b3a7de2d2bfec1ef7029c8090c21 (patch) | |
tree | 661adc52cf292eb060520b05920031363321eac4 /graphics | |
parent | 10a157021cf1149634780890eff33bbd3bd709c9 (diff) | |
download | freebsd-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/Makefile | 3 |
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 |