summaryrefslogtreecommitdiff
path: root/converters/libiconv
diff options
context:
space:
mode:
authorjmmv <jmmv>2005-06-05 10:00:20 +0000
committerjmmv <jmmv>2005-06-05 10:00:20 +0000
commitdc1c6d9bb2e690e7ff25d150d5eac8183530edfa (patch)
tree3e6439a7e3b5d904a03b701dc7047a8dd859df42 /converters/libiconv
parent9ee3c2277a8124d359694bcdd857e68f58f1460d (diff)
downloadpkgsrc-dc1c6d9bb2e690e7ff25d150d5eac8183530edfa.tar.gz
Assume that DragonFly's native libiconv is good enough for pkgsrc, just as
we do for NetBSD. Patch from Joerg Sonnenberger.
Diffstat (limited to 'converters/libiconv')
-rw-r--r--converters/libiconv/builtin.mk9
1 files changed, 5 insertions, 4 deletions
diff --git a/converters/libiconv/builtin.mk b/converters/libiconv/builtin.mk
index 870ed850cfd..248e4455ffc 100644
--- a/converters/libiconv/builtin.mk
+++ b/converters/libiconv/builtin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: builtin.mk,v 1.11 2005/06/05 09:25:37 jlam Exp $
+# $NetBSD: builtin.mk,v 1.12 2005/06/05 10:00:20 jmmv Exp $
BUILTIN_PKG:= iconv
@@ -91,10 +91,11 @@ _BLTN_REPLACE.iconv!= \
fi
. endif
# XXX
-# XXX By default, assume that on NetBSD the native iconv implementation
-# XXX (if it exists) is good enough to replace GNU libiconv.
+# XXX By default, assume that on NetBSD and DragonFly the native iconv
+# XXX implementation (if it exists) is good enough to replace GNU libiconv.
# XXX
-. if (${OPSYS} == "NetBSD") && exists(/usr/include/iconv.h)
+. if (${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly") && \
+ exists(/usr/include/iconv.h)
H_ICONV= /usr/include/iconv.h
_BLTN_REPLACE.iconv= yes
. endif