diff options
author | jlam <jlam@pkgsrc.org> | 2001-06-21 01:59:07 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-06-21 01:59:07 +0000 |
commit | 9283b87452e6c6eacc661d4ec312823dba6de3e0 (patch) | |
tree | 1d2795e924fb46085e7355f447c093cf8c8624e7 /graphics/ImageMagick | |
parent | d63b65d51d2ca29f6318ab84dc13ceee7f4eee45 (diff) | |
download | pkgsrc-9283b87452e6c6eacc661d4ec312823dba6de3e0.tar.gz |
Remove changes to remove BZ2_ prefix from bzip2 function calls. bzip2
1.0.1 and up prefix functions with BZ2_ while older versions don't, but
ImageMagick was tested to work with bzip2 1.0.1, so don't change its
expectations.
Diffstat (limited to 'graphics/ImageMagick')
-rw-r--r-- | graphics/ImageMagick/Makefile | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile index e7d04b5e19b..1e45f96b0cc 100644 --- a/graphics/ImageMagick/Makefile +++ b/graphics/ImageMagick/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.70 2001/06/21 01:48:43 jlam Exp $ +# $NetBSD: Makefile,v 1.71 2001/06/21 01:59:07 jlam Exp $ DISTNAME= ImageMagick-5.2.8 CATEGORIES= graphics @@ -39,18 +39,6 @@ CONFIGURE_ARGS+= --without-perl --without-dps --without-fpx \ --without-hdf --without-jbig --without-threads \ --without-ttf --without-wmf --without-xml -# Fix references to libbz2 functions on NetBSD. -.if (${OPSYS} == "NetBSD") -post-extract: - @cd ${WRKSRC}; \ - for file in ${CONFIGURE_SCRIPT} coders/miff.c; do \ - ${MV} -f $${file} $${file}.presubst; \ - ${SED} -e "s|BZ2_||g" $${file}.presubst > $${file}; \ - ${RM} -f $${file}.presubst; \ - done; \ - ${CHMOD} +x ${CONFIGURE_SCRIPT} -.endif - # Fix config scripts by removing buildlink directory references. post-build: @cd ${WRKSRC}; \ |