summaryrefslogtreecommitdiff
path: root/lang/erlang
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2017-01-05 08:35:56 +0000
committerwiz <wiz@pkgsrc.org>2017-01-05 08:35:56 +0000
commitc69e2743dad00054b7f5cf3a80762f5719f147e5 (patch)
tree4bf5e5b1ddefdac481d6ad2cc746d5dec4498111 /lang/erlang
parente4c7dd47e985fa5365ca7cd16624a169df2bb0ab (diff)
downloadpkgsrc-c69e2743dad00054b7f5cf3a80762f5719f147e5.tar.gz
Remove patch that is not in distinfo after update.
Diffstat (limited to 'lang/erlang')
-rw-r--r--lang/erlang/patches/patch-erts_emulator_sys_unix_sys.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/lang/erlang/patches/patch-erts_emulator_sys_unix_sys.c b/lang/erlang/patches/patch-erts_emulator_sys_unix_sys.c
deleted file mode 100644
index 26628a1845d..00000000000
--- a/lang/erlang/patches/patch-erts_emulator_sys_unix_sys.c
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-erts_emulator_sys_unix_sys.c,v 1.1 2016/10/04 07:21:30 he Exp $
-
-Don't invade the implementation namespace.
-There's no guarantee that __errno is free for own use
-(on NetBSD it isn't!)
-
---- erts/emulator/sys/unix/sys.c.orig 2016-09-20 19:11:23.000000000 +0000
-+++ erts/emulator/sys/unix/sys.c
-@@ -715,13 +715,13 @@ static RETSIGTYPE suspend_signal(void)
- static RETSIGTYPE suspend_signal(int signum)
- #endif
- {
-- int res, buf[1], __errno = errno;
-+ int res, buf[1], save_errno = errno;
- do {
- res = read(sig_suspend_fds[0], buf, sizeof(int));
- } while (res < 0 && errno == EINTR);
-
- /* restore previous errno in case read changed it */
-- errno = __errno;
-+ errno = save_errno;
- }
- #endif /* #ifdef ERTS_SYS_SUSPEND_SIGNAL */
-