diff options
author | uqs <uqs@FreeBSD.org> | 2013-10-23 23:05:04 +0800 |
---|---|---|
committer | uqs <uqs@FreeBSD.org> | 2013-10-23 23:05:04 +0800 |
commit | 575f7b8140d45ea07769c5a1d618b72c472a9d33 (patch) | |
tree | af790b27b33a2522c6fa47cbda45a10c00c36fe5 /converters/libiconv/Makefile | |
parent | 2fae9a5c4308b36cb6768bc0a22b687078afaf2b (diff) | |
download | freebsd-ports-gnome-575f7b8140d45ea07769c5a1d618b72c472a9d33.tar.gz freebsd-ports-gnome-575f7b8140d45ea07769c5a1d618b72c472a9d33.tar.zst freebsd-ports-gnome-575f7b8140d45ea07769c5a1d618b72c472a9d33.zip |
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)
Diffstat (limited to 'converters/libiconv/Makefile')
-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 |