Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,5 +1,5 @@
/* $NetBSD: getdelim.c,v 1.1 2015/04/19 12:22:14 tnn Exp $ */
/* $NetBSD-src: getline.c,v 1.2 2014/09/16 17:23:50 christos Exp $ */
/* $NetBSD: getdelim.c,v 1.2 2015/12/25 20:12:46 joerg Exp $ */
/* NetBSD-src: getline.c,v 1.2 2014/09/16 17:23:50 christos Exp */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.

View File

@@ -1,5 +1,5 @@
/* $NetBSD: getline.c,v 1.1 2015/04/19 12:22:14 tnn Exp $ */
/* $NetBSD-src: getline.c,v 1.2 2014/09/16 17:23:50 christos Exp $ */
/* $NetBSD: getline.c,v 1.2 2015/12/25 20:12:46 joerg Exp $ */
/* NetBSD-src: getline.c,v 1.2 2014/09/16 17:23:50 christos Exp */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.

View File

@@ -1,4 +1,4 @@
/* $NetBSD: queue.h,v 1.8 2009/03/02 13:54:56 joerg Exp $ */
/* $NetBSD: queue.h,v 1.9 2015/12/13 21:56:27 joerg Exp $ */
/*
* Copyright (c) 1991, 1993
@@ -306,12 +306,11 @@ struct { \
(var) = (next))
#endif
#ifndef TAILQ_FOREACH_REVERSE
#undef TAILQ_FOREACH_REVERSE
#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
for ((var) = (*(((struct headname *)((head)->tqh_last))->tqh_last)); \
(var); \
(var) = (*(((struct headname *)((var)->field.tqe_prev))->tqh_last)))
#endif
#ifndef TAILQ_EMPTY
#define TAILQ_EMPTY(head) ((head)->tqh_first == NULL)

View File

@@ -1,4 +1,4 @@
/* $NetBSD: statvfs.h,v 1.5 2013/09/08 16:24:43 ryoon Exp $ */
/* $NetBSD: statvfs.h,v 1.6 2015/12/11 23:28:10 ryoon Exp $ */
/*-
* Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -60,10 +60,10 @@
#define VFS_NAMELEN 32
#define VFS_MNAMELEN 1024
#if defined(fsblkcnt_t)
#if !defined(fsblkcnt_t)
typedef uint64_t fsblkcnt_t; /* fs block count (statvfs) */
#endif
#if defined(fsfilcnt_t)
#if !defined(fsfilcnt_t)
typedef uint64_t fsfilcnt_t; /* fs file count */
#endif