diff options
author | wiedi <wiedi@pkgsrc.org> | 2014-02-24 13:10:12 +0000 |
---|---|---|
committer | wiedi <wiedi@pkgsrc.org> | 2014-02-24 13:10:12 +0000 |
commit | a2c1c62da147e6613e9960182a5b4fbf64bbef86 (patch) | |
tree | c94e9106a2eb5d91c824c212f96707b6a58be203 /security/sleuthkit | |
parent | ae132c9e5e617a7a54abf9fece8511bdb0221c5b (diff) | |
download | pkgsrc-a2c1c62da147e6613e9960182a5b4fbf64bbef86.tar.gz |
Needs limits.h for PATH_MAX
Diffstat (limited to 'security/sleuthkit')
-rw-r--r-- | security/sleuthkit/distinfo | 3 | ||||
-rw-r--r-- | security/sleuthkit/patches/patch-tools_autotools_tsk__recover.cpp | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/security/sleuthkit/distinfo b/security/sleuthkit/distinfo index ce940213bba..15aa5c5635e 100644 --- a/security/sleuthkit/distinfo +++ b/security/sleuthkit/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1 2013/10/29 23:33:02 pettai Exp $ +$NetBSD: distinfo,v 1.2 2014/02/24 13:10:12 wiedi Exp $ SHA1 (sleuthkit-3.2.3.tar.gz) = 85d100ffde54f051916a4ea9452563ff85fad4ac RMD160 (sleuthkit-3.2.3.tar.gz) = ee9849ff34bd7d1ce90819f22f1e09a71e4d0e8c Size (sleuthkit-3.2.3.tar.gz) = 2039699 bytes +SHA1 (patch-tools_autotools_tsk__recover.cpp) = 1541241ddbc66d4cdd9f63d97715e576ad36f194 diff --git a/security/sleuthkit/patches/patch-tools_autotools_tsk__recover.cpp b/security/sleuthkit/patches/patch-tools_autotools_tsk__recover.cpp new file mode 100644 index 00000000000..6c118d6bce1 --- /dev/null +++ b/security/sleuthkit/patches/patch-tools_autotools_tsk__recover.cpp @@ -0,0 +1,13 @@ +$NetBSD: patch-tools_autotools_tsk__recover.cpp,v 1.1 2014/02/24 13:10:12 wiedi Exp $ + +needs limits.h for PATH_MAX +--- tools/autotools/tsk_recover.cpp.orig 2011-10-07 19:12:29.000000000 +0000 ++++ tools/autotools/tsk_recover.cpp +@@ -9,6 +9,7 @@ + ** + */ + ++#include <limits.h> + #include "tsk3/tsk_tools_i.h" + #include <locale.h> + #include <sys/stat.h> |