Import of pkgsrc-2015Q1

This commit is contained in:
2015-04-22 14:34:26 +02:00
committed by Lionel Sambuc
parent 9a8c06dafb
commit 4af1cdf7a9
25114 changed files with 870550 additions and 795435 deletions

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-src_internal.H,v 1.1 2014/06/29 03:52:47 dholland Exp $
stpcpy seems to be a macro on MacOS.
note that it would probably be better to remove this declaration
entirely (if the host has stpcpy, why are we declaring it?) but
that might create issues and pkgsrc is in a freeze at the moment.
--- src/internal.H~ 2008-08-27 13:01:16.000000000 +0000
+++ src/internal.H
@@ -558,5 +558,6 @@ extern void init_system( void);
#endif
#if HOST_HAVE_STPCPY
+#undef stpcpy
extern char * stpcpy( char * dest, const char * src);
#endif