Wed Dec 4 09:27:43 2013 UTC ()
WCONTINUED doesn't universally exist.


(dholland)
diff -r1.63 -r1.64 pkgsrc/editors/emacs-snapshot/distinfo
diff -r0 -r1.1 pkgsrc/editors/emacs-snapshot/patches/patch-src_process.c

cvs diff -r1.63 -r1.64 pkgsrc/editors/emacs-snapshot/distinfo (expand / switch to unified diff)

--- pkgsrc/editors/emacs-snapshot/distinfo 2013/12/02 19:01:45 1.63
+++ pkgsrc/editors/emacs-snapshot/distinfo 2013/12/04 09:27:43 1.64
@@ -1,8 +1,9 @@ @@ -1,8 +1,9 @@
1$NetBSD: distinfo,v 1.63 2013/12/02 19:01:45 minskim Exp $ 1$NetBSD: distinfo,v 1.64 2013/12/04 09:27:43 dholland Exp $
2 2
3SHA1 (emacs-snapshot_20131126.orig.tar.xz) = 23d7fa304941d7cdf3a0d9c5aa37db582c415050 3SHA1 (emacs-snapshot_20131126.orig.tar.xz) = 23d7fa304941d7cdf3a0d9c5aa37db582c415050
4RMD160 (emacs-snapshot_20131126.orig.tar.xz) = d81ae77813d1d37bae13a2acb4a3f1f651c35cc5 4RMD160 (emacs-snapshot_20131126.orig.tar.xz) = d81ae77813d1d37bae13a2acb4a3f1f651c35cc5
5Size (emacs-snapshot_20131126.orig.tar.xz) = 23178740 bytes 5Size (emacs-snapshot_20131126.orig.tar.xz) = 23178740 bytes
6SHA1 (patch-ad) = 61769812ed721e8d881a954983bbdbba01537104 6SHA1 (patch-ad) = 61769812ed721e8d881a954983bbdbba01537104
7SHA1 (patch-ae) = 2dfe31015550feeaa47955136d3bbe2aa6790095 7SHA1 (patch-ae) = 2dfe31015550feeaa47955136d3bbe2aa6790095
8SHA1 (patch-ag) = e30b57d3536e31adbd5b0f0c91696de0de2c0f35 8SHA1 (patch-ag) = e30b57d3536e31adbd5b0f0c91696de0de2c0f35
 9SHA1 (patch-src_process.c) = e3e9ae43f4bfa373e51eb3e6a1f864ebf1bbc308

File Added: pkgsrc/editors/emacs-snapshot/patches/Attic/patch-src_process.c
$NetBSD: patch-src_process.c,v 1.1 2013/12/04 09:27:43 dholland Exp $

WCONTINUED does not universally exist.

--- src/process.c~	2013-11-26 03:15:49.000000000 +0000
+++ src/process.c
@@ -138,6 +138,10 @@ extern int sys_select (int, fd_set *, fd
 # define SOCK_CLOEXEC 0
 #endif
 
+#ifndef WCONTINUED
+#define WCONTINUED 0
+#endif
+
 #ifndef HAVE_ACCEPT4
 
 /* Emulate GNU/Linux accept4 and socket well enough for this module.  */