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

@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.1 2013/10/20 15:06:58 ryoon Exp $
$NetBSD: distinfo,v 1.2 2014/06/29 03:52:47 dholland Exp $
SHA1 (mcpp-2.7.2.tar.gz) = 703356b7c2cd30d7fb6000625bf3ccc2eb977ecb
RMD160 (mcpp-2.7.2.tar.gz) = 05bc2c8d8e032e75b8a9b1d22f11c007d5829d1f
Size (mcpp-2.7.2.tar.gz) = 1533457 bytes
SHA1 (patch-src_internal.H) = 0c874d8fc2c90dae325515d80355a6ee9bfd0e9c

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