diff options
author | dholland <dholland@pkgsrc.org> | 2012-06-23 19:32:00 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-06-23 19:32:00 +0000 |
commit | c533b5945e0f75d8b037dc5aae4637b3d504583e (patch) | |
tree | 649e3b163ac140145a44a27bc4901dc8c09ca5a3 /emulators | |
parent | f820d3b9ad22752133daef83bfc7e2f1ef7de4b3 (diff) | |
download | pkgsrc-c533b5945e0f75d8b037dc5aae4637b3d504583e.tar.gz |
When adding standard headers like <errno.h>, please do *not* wrap in
#ifdef __NetBSD__. All this does is cause failures on other platforms.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xm7/distinfo | 4 | ||||
-rw-r--r-- | emulators/xm7/patches/patch-ac | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/emulators/xm7/distinfo b/emulators/xm7/distinfo index 673d3a8648e..70ec7f9aa6d 100644 --- a/emulators/xm7/distinfo +++ b/emulators/xm7/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.13 2012/01/03 07:17:01 obache Exp $ +$NetBSD: distinfo,v 1.14 2012/06/23 19:32:00 dholland Exp $ SHA1 (xm71020s.zip) = 9a222f210de4d1107a966f4b739e3cb498504ece RMD160 (xm71020s.zip) = c65938b33081a7563dc13b0265b6f849ba4929e9 Size (xm71020s.zip) = 289896 bytes SHA1 (patch-aa) = b49f4dac3dde6395fcf1d4ab0c987d577e5e9ce4 SHA1 (patch-ab) = 4e6cc9113e25eca32a1f672b82b3c07ed141a5b7 -SHA1 (patch-ac) = e55f25cb7046455489ab052dbe268043983a9e5f +SHA1 (patch-ac) = 5a2dd19976d117651860d7ee5b83afe762050001 SHA1 (patch-ad) = d92ce48806c57a8cf0447f3e647202709e9a63d3 SHA1 (patch-ae) = ee3a92da9301db4aca1b9eff7b4850f17334345c diff --git a/emulators/xm7/patches/patch-ac b/emulators/xm7/patches/patch-ac index d055877c20c..d7d66345fa2 100644 --- a/emulators/xm7/patches/patch-ac +++ b/emulators/xm7/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.2 2004/07/11 17:23:15 kristerw Exp $ +$NetBSD: patch-ac,v 1.3 2012/06/23 19:32:00 dholland Exp $ --- xw_disp.c.orig 2000-03-22 17:01:00.000000000 +0100 +++ xw_disp.c 2004-07-11 19:10:44.000000000 +0200 @@ -6,9 +6,9 @@ $NetBSD: patch-ac,v 1.2 2004/07/11 17:23:15 kristerw Exp $ #include <X11/Xatom.h> #include <X11/keysym.h> #include <string.h> -+#if defined(__NetBSD__) ++ +#include <errno.h> -+#endif ++ #include <sys/time.h> #include <sys/errno.h> /**/ |