summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2013-12-04 09:27:43 +0000
committerdholland <dholland@pkgsrc.org>2013-12-04 09:27:43 +0000
commitc09b199b1bc0a62178e5d61cac14588be1919482 (patch)
treeac6807465ae846982ddd1deebaf19b8defccedcb /editors
parent8cb980a74f7d5956a258ff2266802b7dd5b09a39 (diff)
downloadpkgsrc-c09b199b1bc0a62178e5d61cac14588be1919482.tar.gz
WCONTINUED doesn't universally exist.
Diffstat (limited to 'editors')
-rw-r--r--editors/emacs-snapshot/distinfo3
-rw-r--r--editors/emacs-snapshot/patches/patch-src_process.c17
2 files changed, 19 insertions, 1 deletions
diff --git a/editors/emacs-snapshot/distinfo b/editors/emacs-snapshot/distinfo
index dda0e933914..0270c74dd3e 100644
--- a/editors/emacs-snapshot/distinfo
+++ b/editors/emacs-snapshot/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.63 2013/12/02 19:01:45 minskim Exp $
+$NetBSD: distinfo,v 1.64 2013/12/04 09:27:43 dholland Exp $
SHA1 (emacs-snapshot_20131126.orig.tar.xz) = 23d7fa304941d7cdf3a0d9c5aa37db582c415050
RMD160 (emacs-snapshot_20131126.orig.tar.xz) = d81ae77813d1d37bae13a2acb4a3f1f651c35cc5
@@ -6,3 +6,4 @@ Size (emacs-snapshot_20131126.orig.tar.xz) = 23178740 bytes
SHA1 (patch-ad) = 61769812ed721e8d881a954983bbdbba01537104
SHA1 (patch-ae) = 2dfe31015550feeaa47955136d3bbe2aa6790095
SHA1 (patch-ag) = e30b57d3536e31adbd5b0f0c91696de0de2c0f35
+SHA1 (patch-src_process.c) = e3e9ae43f4bfa373e51eb3e6a1f864ebf1bbc308
diff --git a/editors/emacs-snapshot/patches/patch-src_process.c b/editors/emacs-snapshot/patches/patch-src_process.c
new file mode 100644
index 00000000000..0d61dd922ea
--- /dev/null
+++ b/editors/emacs-snapshot/patches/patch-src_process.c
@@ -0,0 +1,17 @@
+$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. */