Import of pkgsrc-2014Q1

This commit is contained in:
2014-04-17 16:38:45 +02:00
parent 785076ae39
commit 9a8c06dafb
19365 changed files with 828089 additions and 278039 deletions

View File

@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.4 2006/08/04 22:59:02 rillig Exp $
$NetBSD: distinfo,v 1.5 2013/09/10 14:44:28 joerg Exp $
SHA1 (same-1.8.tar.gz) = 39d95e70c09703b5c7525a6ea896c097f744d288
RMD160 (same-1.8.tar.gz) = 987e6dc1c99258f00ed831af3fa3f034ebe08134
Size (same-1.8.tar.gz) = 9398 bytes
SHA1 (patch-ac) = 872eb12f82f5875b5980a4bf43c5af18b473fbca
SHA1 (patch-ac) = aeeb53af5ee90558eef3dcb96acbf54378271c50

View File

@@ -1,4 +1,4 @@
.\" $NetBSD: same.1,v 1.2 2006/08/04 22:46:27 rillig Exp $
.\" $NetBSD: same.1,v 1.3 2013/07/20 21:50:54 wiz Exp $
.Dd July 14, 2004
.Dt SAME 1
.Sh NAME
@@ -77,9 +77,9 @@ find . -type f -print | same
.Sh SEE ALSO
.Xr find 1
.Sh AUTHORS
.An "Roger E. Wolff" Aq R.E.Wolff@BitWizard.nl ,
.An "Geert Uytterhoeven" Aq geert@linux-m68k.org ,
.An "Roland Illig" Aq roland.illig@gmx.de .
.An "Roger E. Wolff" Aq Mt R.E.Wolff@BitWizard.nl ,
.An "Geert Uytterhoeven" Aq Mt geert@linux-m68k.org ,
.An "Roland Illig" Aq Mt roland.illig@gmx.de .
.Sh CAVEATS
.Bl -bullet
.It

View File

@@ -1,7 +1,7 @@
$NetBSD: patch-ac,v 1.2 2006/08/04 22:59:02 rillig Exp $
$NetBSD: patch-ac,v 1.3 2013/09/10 14:44:28 joerg Exp $
--- same.c.orig 2004-07-16 19:30:01.000000000 +0200
+++ same.c 2006-08-05 00:57:39.680842400 +0200
--- same.c.orig 2004-07-16 17:30:01.000000000 +0000
+++ same.c
@@ -106,10 +106,9 @@
* - There is a 1024 (BUFSIZE) character limit to pathnames when using
* symlinks.
@@ -88,6 +88,15 @@ $NetBSD: patch-ac,v 1.2 2006/08/04 22:59:02 rillig Exp $
unsigned int crc;
const char *name;
unsigned int hash = 0;
@@ -587,7 +583,7 @@ static void *p_malloc(unsigned int hash,
void *data;
if (size > sizeof(pool->data)) {
- fprintf(stderr, "Warning: p_malloc() of size %u\n", size);
+ fprintf(stderr, "Warning: p_malloc() of size %zu\n", size);
return malloc(size);
}
@@ -659,7 +655,7 @@ static struct name_entry *alloc_name_ent
return entry;
}