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,7 +1,7 @@
/*
* $OpenBSD: common.h,v 1.26 2006/03/11 19:41:30 otto Exp $
* $DragonFly: src/usr.bin/patch/common.h,v 1.5 2008/08/10 23:50:12 joerg Exp $
* $NetBSD: common.h,v 1.3 2009/06/05 20:00:26 joerg Exp $
* $NetBSD: common.h,v 1.4 2014/03/14 22:13:09 ryoon Exp $
*/
/*
@@ -61,6 +61,16 @@
#define ORIGEXT ".orig"
#define REJEXT ".rej"
/*
* SCO OpenServer 5.0.7/3.2 has no MAXPATHLEN, but it has PATH_MAX (256).
* in limits.h. But it is not usable under ordinal condition.
*/
#if !defined(MAXPATHLEN)
#if defined(_SCO_DS)
#define MAXPATHLEN 1024
#endif
#endif
/* handy definitions */
#define strNE(s1,s2) (strcmp(s1, s2))