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

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-al,v 1.2 2007/04/27 19:45:01 christos Exp $
--- /dev/null 2007-04-26 23:20:40.000000000 -0400
+++ netbsd/mkerrno 2007-04-26 16:32:26.000000000 -0400
@@ -0,0 +1,9 @@
+#!/usr/bin/awk -f
+BEGIN {
+ printf("\t\"ERRNO0\",\n");
+}
+/^#define[ ]E/ {
+ if ($3 > 0) {
+ printf("\t\"%s\",\n", $2);
+ }
+}