diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-19 23:42:11 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-19 23:42:11 +0000 |
commit | 049b51462733098ab5882b0440fac89979b108fa (patch) | |
tree | 2125bf20dcb59c98fd20f38a6d0f5edfe94a480d | |
parent | 942c8256700211e7d52c6c638e9db9cb1ae3fd93 (diff) | |
download | pkgsrc-049b51462733098ab5882b0440fac89979b108fa.tar.gz |
limits.h is ISO C, unconditionally include it. Keep conditional for
sys/syslimits.h though.
-rw-r--r-- | security/chkrootkit/distinfo | 3 | ||||
-rw-r--r-- | security/chkrootkit/patches/patch-ac | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/security/chkrootkit/distinfo b/security/chkrootkit/distinfo index b03bd0021a1..b4b1aa64311 100644 --- a/security/chkrootkit/distinfo +++ b/security/chkrootkit/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.6 2006/01/02 18:42:18 adrianp Exp $ +$NetBSD: distinfo,v 1.7 2006/01/19 23:42:11 joerg Exp $ SHA1 (chkrootkit-0.46a.tar.gz) = 5213b107cda5e5165da463650885efe8c15a14d2 RMD160 (chkrootkit-0.46a.tar.gz) = 9016abfd7cd3d986aec86722c9a9b88dea7bf49b Size (chkrootkit-0.46a.tar.gz) = 37140 bytes SHA1 (patch-aa) = c47ecb09d02c710727420a3adfb7d8b62d721f2d SHA1 (patch-ab) = 109a43494bda8d0966164b7684f63a6a83f2d829 +SHA1 (patch-ac) = 3e2f5dd9d7f38e0eddc5b43a1a74b880ea296fc5 diff --git a/security/chkrootkit/patches/patch-ac b/security/chkrootkit/patches/patch-ac new file mode 100644 index 00000000000..fa73e30aa4a --- /dev/null +++ b/security/chkrootkit/patches/patch-ac @@ -0,0 +1,15 @@ +$NetBSD: patch-ac,v 1.3 2006/01/19 23:42:11 joerg Exp $ + +--- chkdirs.c.orig 2006-01-19 23:40:21.000000000 +0000 ++++ chkdirs.c +@@ -25,9 +25,8 @@ + + */ + +-#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__sun) || defined (hpux) || defined (__bsdi__) || defined (bsdi) || defined (__APPLE__) + #include <limits.h> +-#elif defined(__APPLE__) && defined(__MACH__) ++#if defined(__APPLE__) && defined(__MACH__) + #include <sys/syslimits.h> + #endif + |