diff options
author | joerg <joerg> | 2005-12-09 16:32:57 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-12-09 16:32:57 +0000 |
commit | 9a4b0e0e400442043ee9a75e734486e7888b08e5 (patch) | |
tree | e3f29b0ae35796bb02068340faca3ebfd745dcf0 /editors | |
parent | cf2fda3c6c17a5ce1fe21549fdccae93b80e893d (diff) | |
download | pkgsrc-9a4b0e0e400442043ee9a75e734486e7888b08e5.tar.gz |
What's the point of a configure check if you don't use the result?
Disable vsprintf on DragonFly, it doesn't compile and libc is fine.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/zile/distinfo | 3 | ||||
-rw-r--r-- | editors/zile/patches/patch-ab | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/editors/zile/distinfo b/editors/zile/distinfo index 73e5d0e9f6d..96a2f54f41b 100644 --- a/editors/zile/distinfo +++ b/editors/zile/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.5 2005/08/11 15:33:08 adam Exp $ +$NetBSD: distinfo,v 1.6 2005/12/09 16:32:57 joerg Exp $ SHA1 (zile-2.2.4.tar.gz) = a07bd3d187a46da55e6ca595b628bde1312bc3a9 RMD160 (zile-2.2.4.tar.gz) = a65cff37597346ba79bef6a787b0d4e12b599691 Size (zile-2.2.4.tar.gz) = 329391 bytes SHA1 (patch-aa) = ceb1d7997376b9c0f3f16d482ae579218ed13f98 +SHA1 (patch-ab) = ba5b8a21255a88a41a7bc64c1912f3ce4ec20723 diff --git a/editors/zile/patches/patch-ab b/editors/zile/patches/patch-ab new file mode 100644 index 00000000000..8eb6d0c2ddc --- /dev/null +++ b/editors/zile/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.3 2005/12/09 16:32:57 joerg Exp $ + +--- doc/mkdoc.c.orig 2005-08-07 23:05:07.000000000 +0000 ++++ doc/mkdoc.c +@@ -15,7 +15,9 @@ + /* #include other sources so this program can be easily built on the + build host when cross-compiling */ + #include "strrstr.c" ++#if !defined(__DragonFly__) + #include "vasprintf.c" ++#endif + #include "zmalloc.c" + #include "astr.c" + |