diff options
author | maya <maya@pkgsrc.org> | 2017-07-22 15:13:41 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2017-07-22 15:13:41 +0000 |
commit | 8ea5412b53616092bbb0aacc93b41d2a1bd7d67b (patch) | |
tree | 0b09b803e64ca0570d519586a50880d464021754 /chat | |
parent | 08728b052431d33e6739da39a0708a6e7fc65043 (diff) | |
download | pkgsrc-8ea5412b53616092bbb0aacc93b41d2a1bd7d67b.tar.gz |
include limits.h for PATH_MAX.
fixes builds on smartos, confirmed by wiedi, thanks.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/ircII/distinfo | 3 | ||||
-rw-r--r-- | chat/ircII/patches/patch-include_irc.h | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/chat/ircII/distinfo b/chat/ircII/distinfo index 1263f8383ba..55b37a2db2e 100644 --- a/chat/ircII/distinfo +++ b/chat/ircII/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.45 2017/07/06 14:51:00 mrg Exp $ +$NetBSD: distinfo,v 1.46 2017/07/22 15:13:41 maya Exp $ SHA1 (ircii-20170704.tar.bz2) = 88f55a59af48d7ed131895d68354fe7f566e3180 RMD160 (ircii-20170704.tar.bz2) = b857a49c6d843748b0bcbccf9e3aec16d7be974b SHA512 (ircii-20170704.tar.bz2) = a0cdc5603fab040fa2f7d2b3d7a564e9eeac4b402329cba5c6f1a97aa6e587a53ffc4141420dde97dc2cadf22581e74058a0357c6b4b0d0b03f5dea7fa8cbc3a Size (ircii-20170704.tar.bz2) = 596535 bytes SHA1 (patch-ac) = 9f6f3b27670b63ff00b55c5431ec1da5219369ff +SHA1 (patch-include_irc.h) = 257e7879461d88d9e8e05205e96cdec702e9e458 diff --git a/chat/ircII/patches/patch-include_irc.h b/chat/ircII/patches/patch-include_irc.h new file mode 100644 index 00000000000..d6b43c55bc1 --- /dev/null +++ b/chat/ircII/patches/patch-include_irc.h @@ -0,0 +1,14 @@ +$NetBSD: patch-include_irc.h,v 1.1 2017/07/22 15:13:41 maya Exp $ + +limits.h for PATH_MAX + +--- include/irc.h.orig 2017-07-03 12:44:25.000000000 +0000 ++++ include/irc.h +@@ -92,6 +92,7 @@ + # include <fcntl.h> + #endif /* HAVE_FCNTL_H */ + ++#include <limits.h> + #include <unistd.h> + + #ifdef HAVE_SYS_FILE_H |