diff options
author | nia <nia@pkgsrc.org> | 2019-04-23 18:47:16 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2019-04-23 18:47:16 +0000 |
commit | eb18f2475ff104e73e501f940392f27f9592fb37 (patch) | |
tree | f4caecedbefac7c31ad1d5070879912f3030f475 /lang/erlang/patches | |
parent | eee7603e372fb83da7e63e93090dc8549f199696 (diff) | |
download | pkgsrc-eb18f2475ff104e73e501f940392f27f9592fb37.tar.gz |
lang/erlang: Update to 21.3.6
Highlights from erlang 21.2 to 21.3:
Kernel:
The standard logger handler, logger_std_h, now has a new internal
feature for log rotation. For full information see the documentation.
SSL:
The Reason part of the error return from the functions connect and
handshake has a better and documented format. This is a potential
incompatibility. See the documentation.
Refactoring of state handling has improved the TLS application data
throughput and reduced CPU overhead
Code optimizations has reduced CPU load for encryption/decryption,
especially for Erlang's distribution protocol over TLS
Now supports active N
Erl_interface:
Support for plugin of a user supplied socket implementation has been added.
OTP:
The HTML reference documentation now shows the OTP version where
modules and functions were first introduced. Versions of OTP older than R13B04 is not shown in the reference
documentation
Diffstat (limited to 'lang/erlang/patches')
-rw-r--r-- | lang/erlang/patches/patch-erts_emulator_sys_common_erl__poll.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lang/erlang/patches/patch-erts_emulator_sys_common_erl__poll.c b/lang/erlang/patches/patch-erts_emulator_sys_common_erl__poll.c deleted file mode 100644 index 82381f172d0..00000000000 --- a/lang/erlang/patches/patch-erts_emulator_sys_common_erl__poll.c +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-erts_emulator_sys_common_erl__poll.c,v 1.3 2018/09/18 04:12:04 maya Exp $ - -ERL-725: ports fail to send exit_status on NetBSD -https://bugs.erlang.org/browse/ERL-725 - ---- erts/emulator/sys/common/erl_poll.c.orig 2018-09-11 14:57:05.000000000 +0000 -+++ erts/emulator/sys/common/erl_poll.c -@@ -820,7 +820,7 @@ update_pollset(ErtsPollSet *ps, int fd, - } - } - --#if defined(EV_DISPATCH) && !defined(__OpenBSD__) -+#if defined(EV_DISPATCH) && !(defined(__OpenBSD__) || defined(__NetBSD__)) - /* If we have EV_DISPATCH we use it, unless we are on OpenBSD as the - behavior of EV_EOF seems to be edge triggered there and we need it - to be level triggered. |