diff options
author | jmmv <jmmv@pkgsrc.org> | 2005-06-05 10:00:20 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2005-06-05 10:00:20 +0000 |
commit | 0ad8b0bb461304720c851e4d51eb00e8850ba1b7 (patch) | |
tree | 3e6439a7e3b5d904a03b701dc7047a8dd859df42 /converters/libiconv | |
parent | 84ab5fef543532d8bc69ffa376f5dfcd42dc9478 (diff) | |
download | pkgsrc-0ad8b0bb461304720c851e4d51eb00e8850ba1b7.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.mk | 9 |
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 |