diff options
author | Ulrich Spörlein <uqs@FreeBSD.org> | 2013-10-23 15:05:04 +0000 |
---|---|---|
committer | Ulrich Spörlein <uqs@FreeBSD.org> | 2013-10-23 15:05:04 +0000 |
commit | 2e790e6f32a10d358ab78337119404cec6863f95 (patch) | |
tree | af790b27b33a2522c6fa47cbda45a10c00c36fe5 /converters | |
parent | c3dd4da7c064b1f5d891eb96c846305d86089b6a (diff) |
Allow users to install converters/libiconv on 10.x systems if they
decided to build world with WITHOUT_ICONV set. There's no need for
this check to be based on OSVERSION.
Some users (i.e. me), report subtle application breakages with the
iconv-from-src that disappear when iconv-from-ports is installed.
Allow for a bridge till these issues are sorted out.
Approved by: portmgr (bdrewery)
Notes
Notes:
svn path=/head/; revision=331388
Diffstat (limited to 'converters')
-rw-r--r-- | converters/libiconv/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converters/libiconv/Makefile b/converters/libiconv/Makefile index 1543549aa316..857e42820175 100644 --- a/converters/libiconv/Makefile +++ b/converters/libiconv/Makefile @@ -52,8 +52,8 @@ post-patch: .include <bsd.port.pre.mk> -.if ${OSVERSION} > 1000043 -IGNORE= converters/libiconv should not be used with OSVERSION > 1000043. \ +.if exists(/usr/include/iconv.h) +IGNORE= converters/libiconv should not be used with iconv from base. \ Please fix the port which tries to use it .endif |