diff options
author | dsainty <dsainty> | 2012-08-20 04:56:00 +0000 |
---|---|---|
committer | dsainty <dsainty> | 2012-08-20 04:56:00 +0000 |
commit | 7f35f85990e324cdf290948f74680d97115f9328 (patch) | |
tree | 6f90a5f7b4eb6d278b9f7dfca5a0566338e3a105 /devel/pkg-config | |
parent | f14e5903e8e1713951c5aa672b6b32935bb4a2ce (diff) | |
download | pkgsrc-7f35f85990e324cdf290948f74680d97115f9328.tar.gz |
Rather than assuming SunOS == libiconv, use ICONV_TYPE in the usual manner
to correctly express what variety of iconv we are using.
Fixes build on Linux systems with PREFER_PKGSRC=yes.
Diffstat (limited to 'devel/pkg-config')
-rw-r--r-- | devel/pkg-config/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/pkg-config/Makefile b/devel/pkg-config/Makefile index 71f16631dfc..faf67fd4292 100644 --- a/devel/pkg-config/Makefile +++ b/devel/pkg-config/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2012/08/18 14:40:12 tron Exp $ +# $NetBSD: Makefile,v 1.24 2012/08/20 04:56:00 dsainty Exp $ DISTNAME= pkg-config-0.27 PKGREVISION= 1 @@ -39,10 +39,12 @@ post-configure: .endif .if ${OPSYS} == "SunOS" -CONFIGURE_ARGS+= --with-libiconv=gnu CONFIGURE_ARGS+= --disable-dtrace .endif +CONFIGURE_ARGS+= ${CONFIGURE_ARGS.${ICONV_TYPE}-iconv} +CONFIGURE_ARGS.gnu-iconv= --with-libiconv=gnu + PKGCONFIG_EXTRA_PATHS= # empty .if ${LOCALBASE} != ${X11BASE} |