diff options
author | marino <marino@pkgsrc.org> | 2012-05-24 15:24:06 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2012-05-24 15:24:06 +0000 |
commit | f4618b2e3c5045608ea7955f8e1851c451bb5929 (patch) | |
tree | 0b06caf51d73e38d6ab6c01a7d6da3129e9f9742 /net | |
parent | d3058e8bc670713e071ad77473787eb1aa28abfc (diff) | |
download | pkgsrc-f4618b2e3c5045608ea7955f8e1851c451bb5929.tar.gz |
net/nagios-plugin-mysql: Fix DragonFly
Diffstat (limited to 'net')
-rw-r--r-- | net/nagios-plugin-mysql/distinfo | 3 | ||||
-rw-r--r-- | net/nagios-plugin-mysql/patches/patch-lib_utils_base.c | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/net/nagios-plugin-mysql/distinfo b/net/nagios-plugin-mysql/distinfo index f6dfbe2d936..23cac4f8374 100644 --- a/net/nagios-plugin-mysql/distinfo +++ b/net/nagios-plugin-mysql/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2011/04/08 22:48:40 morr Exp $ +$NetBSD: distinfo,v 1.8 2012/05/24 15:24:06 marino Exp $ SHA1 (nagios-plugins-1.4.15.tar.gz) = 1faab309c06d37e559490fd852ecb0dc8a8ab610 RMD160 (nagios-plugins-1.4.15.tar.gz) = c2780a3523cf4eaaed34a94c07f5f6bd6fb1f736 @@ -6,3 +6,4 @@ Size (nagios-plugins-1.4.15.tar.gz) = 2095419 bytes SHA1 (patch-ak) = dd9aba7a0930a6448e372b581ba04d62018a973b SHA1 (patch-al) = 63e28ae36d671e773acfe6aeb45ab7603c112594 SHA1 (patch-am) = adc95ba1037a7d7caab6dde6ca1e27e47754db62 +SHA1 (patch-lib_utils_base.c) = 7e315711f8ca9ec033841c8f0eb9e037625c84ca diff --git a/net/nagios-plugin-mysql/patches/patch-lib_utils_base.c b/net/nagios-plugin-mysql/patches/patch-lib_utils_base.c new file mode 100644 index 00000000000..e22b4b33b3f --- /dev/null +++ b/net/nagios-plugin-mysql/patches/patch-lib_utils_base.c @@ -0,0 +1,14 @@ +$NetBSD: patch-lib_utils_base.c,v 1.1 2012/05/24 15:24:06 marino Exp $ + +--- lib/utils_base.c.orig 2010-07-27 20:47:16.000000000 +0000 ++++ lib/utils_base.c +@@ -28,6 +28,9 @@ + #include <stdarg.h> + #include "utils_base.h" + #include <fcntl.h> ++#ifdef __DragonFly__ ++#include <sys/stat.h> ++#endif + + #define np_free(ptr) { if(ptr) { free(ptr); ptr = NULL; } } + |