Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
$NetBSD: patch-aa,v 1.1.1.1 2003/06/23 13:48:33 agc Exp $
--- include/aide.h.orig Wed Apr 26 14:45:29 2000
+++ include/aide.h Wed Apr 26 14:46:12 2000
@@ -23,10 +23,12 @@
#include "db_config.h"
#include "config.h"
+#ifndef __NetBSD__
#ifndef _POSIX_C_SOURCE
/* For _POSIX_THREAD_SEMANTICS _REENTRANT */
#define _POSIX_C_SOURCE 199506L
#endif /* _POSIX_C_SOURCE */
+#endif /* __NetBSD__ */
#define AIDEVERSION VERSION
+13
View File
@@ -0,0 +1,13 @@
$NetBSD: patch-ab,v 1.1.1.1 2003/06/23 13:48:33 agc Exp $
--- src/conf_yacc.y 2003/06/17 14:53:45 1.1
+++ src/conf_yacc.y 2003/06/17 14:54:11
@@ -142,7 +142,7 @@
conferror("Error in expression");
YYABORT;
}
- }
+ } ;
other : TRIGHTS { $$ =$1 ;} | TUSER {$$ =$1 ;}
| TGROUP {$$ =$1 ;} | TINODE {$$ =$1 ;}
+22
View File
@@ -0,0 +1,22 @@
$NetBSD: patch-ac,v 1.1 2003/12/19 12:34:30 agc Exp $
--- src/crypt/tiger.c 2003/12/19 12:27:19 1.1
+++ src/crypt/tiger.c 2003/12/19 12:29:41
@@ -844,12 +844,12 @@
p = hd->buf;
#ifdef BIG_ENDIAN_HOST
- #define X(a) do { *(u64*)p = hd->##a ; p += 8; } while(0)
+ #define X(fld) do { *(u64*)p = hd->fld ; p += 8; } while(0)
#else /* little endian */
- #define X(a) do { *p++ = hd->##a >> 56; *p++ = hd->##a >> 48; \
- *p++ = hd->##a >> 40; *p++ = hd->##a >> 32; \
- *p++ = hd->##a >> 24; *p++ = hd->##a >> 16; \
- *p++ = hd->##a >> 8; *p++ = hd->##a; } while(0)
+ #define X(fld) do { *p++ = hd->fld >> 56; *p++ = hd->fld >> 48; \
+ *p++ = hd->fld >> 40; *p++ = hd->fld >> 32; \
+ *p++ = hd->fld >> 24; *p++ = hd->fld >> 16; \
+ *p++ = hd->fld >> 8; *p++ = hd->fld; } while(0)
#endif
X(a);
X(b);
+14
View File
@@ -0,0 +1,14 @@
$NetBSD: patch-ad,v 1.1 2004/09/21 14:14:27 agc Exp $
--- src/gen_list.c 2004/09/21 12:33:36 1.1
+++ src/gen_list.c 2004/09/21 12:34:43
@@ -240,7 +240,8 @@
}
} else {
- if(fs.st_atime>cur_time){
+ /* allow the current time to be 1 second out, in case of ntp twitch or other funny */
+ if(fs.st_atime>cur_time + 1){
error(CLOCK_SKEW,"%s atime in future\n",fil->filename);
}
if(fs.st_mtime>cur_time){
+28
View File
@@ -0,0 +1,28 @@
$NetBSD: patch-ae,v 1.1 2005/05/23 21:24:17 jlam Exp $
--- configure.orig 2000-01-19 02:25:45.000000000 -0500
+++ configure
@@ -1120,11 +1120,6 @@ test -n "$YACC" && break
done
test -n "$YACC" || YACC="yacc"
-if test "x${YACC}" != "xbison -y"; then
- echo "AIDE requires GNU bison"
- exit 5
-fi
-
echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
echo "configure:1130: checking how to run the C preprocessor" >&5
# On Suns, sometimes $CPP names a directory.
@@ -1381,11 +1376,6 @@ EOF
fi
-if test "x${LEX}" != "xflex"; then
- echo "AIDE requires GNU flex"
- exit 5
-fi
-
@@ -0,0 +1,13 @@
$NetBSD: patch-src_conf_lex.l,v 1.1 2012/08/12 09:15:07 marino Exp $
--- src/conf_lex.l.orig 2000-01-27 14:42:24.000000000 +0000
+++ src/conf_lex.l
@@ -12,7 +12,7 @@ EX [" "\t]*
%{
-#define YYDEBUG
+#define YYDEBUG 1
#include <string.h>
#include "conf_yacc.h"
@@ -0,0 +1,13 @@
$NetBSD: patch-src_db_lex.c,v 1.1 2012/08/12 09:15:07 marino Exp $
--- src/db_lex.c.orig 1999-11-25 14:44:34.000000000 +0000
+++ src/db_lex.c
@@ -418,7 +418,7 @@ extern YYSTYPE yylval;
#define YY_DECL int db_scan(void)
-#define YYDEBUG
+#define YYDEBUG 1
#include "conf_yacc.h"
#include <string.h>
@@ -0,0 +1,13 @@
$NetBSD: patch-src_db_lex.l,v 1.1 2012/08/12 09:15:07 marino Exp $
--- src/db_lex.l.orig 1999-11-25 14:22:50.000000000 +0000
+++ src/db_lex.l
@@ -24,7 +24,7 @@ extern YYSTYPE yylval;
#define YY_DECL int db_scan(void)
-#define YYDEBUG
+#define YYDEBUG 1
#include "conf_yacc.h"
#include <string.h>