diff options
author | joerg <joerg@pkgsrc.org> | 2007-08-10 16:41:51 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-08-10 16:41:51 +0000 |
commit | 62e1e5bf36eb971089e610dc6a2bf4054cbed9eb (patch) | |
tree | bc4629f9433b925d8deaeea2781278c4004d3b69 /net/php-xmlrpc | |
parent | 223613307e4f8937648979e9e0be5e229405c2ec (diff) | |
download | pkgsrc-62e1e5bf36eb971089e610dc6a2bf4054cbed9eb.tar.gz |
Cleanup conditional for systems without native iconv.
Based on patch from Yakovetsky Vladimir in PR 36766.
Diffstat (limited to 'net/php-xmlrpc')
-rw-r--r-- | net/php-xmlrpc/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/php-xmlrpc/Makefile b/net/php-xmlrpc/Makefile index 4e4ee2b6089..490afcd3c5d 100644 --- a/net/php-xmlrpc/Makefile +++ b/net/php-xmlrpc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2007/02/22 19:26:57 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2007/08/10 16:41:51 joerg Exp $ MODNAME= xmlrpc CATEGORIES+= net @@ -31,9 +31,8 @@ CHECK_BUILTIN.iconv:= yes .include "../../converters/libiconv/builtin.mk" CHECK_BUILTIN.iconv:= no -.if !empty(USE_BUILTIN.iconv:M[nN][oO]) || \ - !empty(BUILTIN_LIB_FOUND.iconv:M[yY][eE][sS]) -CONFIGURE_ARGS+= --with-iconv-dir=shared,${BUILDLINK_PREFIX.iconv} +.if !empty(USE_BUILTIN.iconv:M[nN][oO]) +CONFIGURE_ARGS+= --with-iconv-dir=${BUILDLINK_PREFIX.iconv} .else CONFIGURE_ARGS+= --with-iconv-dir .endif |