diff options
author | joerg <joerg> | 2005-11-07 13:23:36 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-11-07 13:23:36 +0000 |
commit | bfe5aa097be4b61646b18b234a417154c2f1fc2a (patch) | |
tree | 2216e5912f1b6b0a6bc74c4d5790370ce53a4c3c /archivers | |
parent | f4b688d1356e454b2bc055d7742ceff34c701368 (diff) | |
download | pkgsrc-bfe5aa097be4b61646b18b234a417154c2f1fc2a.tar.gz |
When checking for POSIX NAME_MAX style variables, limits.h should be
included first.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/macutil/distinfo | 3 | ||||
-rw-r--r-- | archivers/macutil/patches/patch-ac | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/archivers/macutil/distinfo b/archivers/macutil/distinfo index 1be383d664b..2eefa8d1f82 100644 --- a/archivers/macutil/distinfo +++ b/archivers/macutil/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.5 2005/10/31 04:42:38 minskim Exp $ +$NetBSD: distinfo,v 1.6 2005/11/07 13:23:36 joerg Exp $ SHA1 (macutil2.0b3.shar.Z) = 820e4dd278fe8d043306134aaafccab10b832218 RMD160 (macutil2.0b3.shar.Z) = 5cf3b22d8bdd3a8fa61211e7a0d598ebac9bbfe4 Size (macutil2.0b3.shar.Z) = 167565 bytes SHA1 (patch-aa) = 418d0cdd57a0d378902b653cd4ddb8279ff0e0e8 SHA1 (patch-ab) = a731ae3a6d796206a8f27d5a93f35e054bf87cc6 +SHA1 (patch-ac) = c7ea3081e7d9c61cb79c5cfa2cb9de804fe6462a diff --git a/archivers/macutil/patches/patch-ac b/archivers/macutil/patches/patch-ac new file mode 100644 index 00000000000..b9e62686c2e --- /dev/null +++ b/archivers/macutil/patches/patch-ac @@ -0,0 +1,11 @@ +$NetBSD: patch-ac,v 1.1 2005/11/07 13:23:36 joerg Exp $ + +--- util/transname.c.orig 2005-11-07 12:58:59.000000000 +0000 ++++ util/transname.c +@@ -1,5 +1,6 @@ + #include <sys/types.h> + #include <sys/dir.h> ++#include <limits.h> + + char *strncpy(); + |