Wed Sep 12 20:01:12 2018 UTC ()
Update to 21.0.9. From the release announcements:

  --- POTENTIAL INCOMPATIBILITIES -------------------------------------

   OTP-15225    Application(s): erts

                Fixed a bug causing some Erlang references to be
                inconsistently ordered. This could for example cause
                failure to look up certain elements with references as
                keys in search data structures. This bug was introduced
                in R13B02.

                Thanks to Simon Cornish for finding the bug and
                supplying a fix.

  --- compiler-7.2.4 --------------------------------------------------

  --- Fixed Bugs and Malfunctions ---

   OTP-15292    Application(s): compiler

                Fix a regression in OTP-15204 that removed .beam file
                metadata that some external build tools relied on.

   OTP-15204    Application(s): compiler
                Related Id(s): ERL-679

                Fixed an issue where files compiled with the
                +deterministic option differed if they were compiled in
                a different directory but were otherwise identical.

  OTP-15156    Application(s): compiler
               Related Id(s): ERL-655

               In rare cases involving matching of binary literal
               strings, the compiler could optimize away code that
               should be executed.

  OTP-15157    Application(s): compiler

               There could be an internal consistency check failure
               when compiling code that called map_get(Key, Map) and
               then updated the same map.

  OTP-15166    Application(s): compiler
               Related Id(s): ERL-660

               In rare circumstances, the compiler could crash in
               beam_jump when compiling a floating point operation.

  OTP-15150    Application(s): compiler
               Related Id(s): ERL-650

               The compiler could could crash when compiling a
               complicated function that used the binary syntax.

  Full runtime dependencies of compiler-7.2.4: crypto-3.6, erts-9.0,
  hipe-3.12, kernel-4.0, stdlib-2.5

  --- erts-10.0.8 -----------------------------------------------------

  --- Fixed Bugs and Malfunctions ---

   OTP-15289    Application(s): erts
                Related Id(s): ERIERL-235, ERL-576, OTP-14943

                As of ERTS version 10.0 (OTP 21.0) the erl_child_setup
                program, which creates port programs, ignores TERM
                signals. This setting was unintentionally inherited by
                port programs. Handling of TERM signals in port
                programs has now been restored to the default behavior.
                That is, terminate the process.

   OTP-15296    Application(s): erts
                Related Id(s): ERIERL-226, OTP-15279

                The fix made for OTP-15279 in erts-10.07 (OTP-21.0.8)
                was not complete. It could cause a new connection
                attempt to be incorrectly aborted in certain cases.
                This fix will amend that flaw.

   OTP-15275    Application(s): erts
                Related Id(s): PR-1943

                A process could get stuck in an infinite rescheduling
                loop between normal and dirty schedulers. This bug was
                introduced in ERTS version 10.0.

                Thanks to Maxim Fedorov for finding and fixing this
                issue.

   OTP-15279    Application(s): erts
                Related Id(s): ERIERL-226

                Garbage collection of a distribution entry could cause
                an emulator crash if net_kernel had not brought
                previous connection attempts on it down properly.

   OTP-15237    Application(s): erts

                A race between termination of a process and resume of
                the same process via erlang:resume_process/1 could
                cause the VM to crash. This bug was introduced in erts
                version 10.0 (OTP 21.0).

   OTP-15269    Application(s): erts
                Related Id(s): ERL-713

                When tracing on running, in trace events could be lost
                when a process was rescheduled between a dirty and a
                normal scheduler.

   OTP-15223    Application(s): erts

                Fixed a bug which caused an emulator crash when
                enif_send() was called by a NIF that executed on a
                dirty scheduler. The bug was either triggered when the
                NIF called enif_send() without a message environment,
                or when the process executing the NIF was send traced.

   OTP-15225    Application(s): erts

                *** POTENTIAL INCOMPATIBILITY ***

                Fixed a bug causing some Erlang references to be
                inconsistently ordered. This could for example cause
                failure to look up certain elements with references as
                keys in search data structures. This bug was introduced
                in R13B02.

                Thanks to Simon Cornish for finding the bug and
                supplying a fix.

  OTP-15169    Application(s): erts

               Fixed a bug that prevented the noshell option from
               working correctly on Mac OS X and BSD.

  OTP-15184    Application(s): erts

               Fixed a crash when matching directly against a literal
               map using a single key that had been saved on the
               stack.

  OTP-15196    Application(s): erts

               Fix node crash when passing a bad time option to
               file:read_file_info/2.

   OTP-15154    Application(s): erts

                Fixed a scheduler bug that caused normal schedulers to
                run dirty code.

   OTP-15183    Application(s): erts
                Related Id(s): ERL-670

                Fixed a bug in erlang:trace_info/2 which caused the
                emulator to crash when a bad argument was passed. The
                bug was introduced in ERTS version 10.0.

  OTP-15067    Application(s): erts
               Related Id(s): ERL-573

               Fixed a rare bug that could cause processes to be
               scheduled after they had been freed.

  OTP-15158    Application(s): erts
               Related Id(s): ERL-654

               Fixed a race condition in the inet driver that could
               cause receive to hang when the emulator was compiled
               with gcc 8.

  OTP-15147    Application(s): erts
               Related Id(s): ERL-644

               The keys used in os:getenv and os:putenv are
               case-insensitive again on Windows.

  Full runtime dependencies of erts-10.0.8: kernel-6.0, sasl-3.0.1,
  stdlib-3.5

  --- kernel-6.0.1 ----------------------------------------------------

  --- Fixed Bugs and Malfunctions ---

   OTP-15280    Application(s): kernel
                Related Id(s): ERIERL-226, OTP-15279

                Fixed bug in net_kernel that could cause an emulator
                crash if certain connection attempts failed. Bug exists
                since kernel-6.0 (OTP-21.0).

  Full runtime dependencies of kernel-6.0.1: erts-10.0, sasl-3.0,
  stdlib-3.5

 --- crypto-4.3.2 ----------------------------------------------------

 --- Fixed Bugs and Malfunctions ---

  OTP-15233    Application(s): crypto

               Update the crypto engine functions to handle multiple
               loads of an engine.

               engine_load/3/4 is updated so it doesn't add the engine
               ID to OpenSSLs internal list of engines which makes it
               possible to run the engine_load more than once if it
               doesn't contain global data.

               Added ensure_engine_loaded/2/3 which guarantees that
               the engine just is loaded once and the following calls
               just returns a reference to it. This is done by add the
               ID to the internal OpenSSL list and check if it is
               already registered when the function is called.

               Added ensure_engine_unloaded/1/2 to unload engines
               loaded with ensure_engine_loaded.

               Then some more utility functions are added.

               engine_add/1, adds the engine to OpenSSL internal list

               engine_remove/1, remove the engine from OpenSSL
               internal list

               engine_get_id/1, fetch the engines id

               engine_get_name/1, fetch the engine name

   OTP-15194    Application(s): crypto
                Related Id(s): ERL-673

                Fixed a node crash in crypto:compute_key(ecdh, ...)
                when passing a wrongly typed Others argument.

 Full runtime dependencies of crypto-4.3.2: erts-9.0, kernel-5.3,
 stdlib-3.4

 --- public_key-1.6.1 ------------------------------------------------

  OTP-15151    Application(s): public_key
               Related Id(s): OTP-15113

               Some of the keylengths in the newly generated moduli
               file in public_key are not universally supported. This
               could cause the SSH key exchange
               diffie-hellman-group-exchange-sha* to fail.

               Those keylengths are now removed.

 Full runtime dependencies of public_key-1.6.1: asn1-3.0, crypto-3.8,
 erts-6.0, kernel-3.0, stdlib-3.5

 --- stdlib-3.5.1 ----------------------------------------------------

  OTP-15159    Application(s): stdlib

               Fix a bug that could cause a crash when formatting a
               list of non-characters using the control sequences p or
               P and limiting the output with the option chars_limit.

 Full runtime dependencies of stdlib-3.5.1: compiler-5.0, crypto-3.3,
 erts-10.0, kernel-6.0, sasl-3.0


(schmonz)
diff -r1.87 -r1.88 pkgsrc/lang/erlang/Makefile
diff -r1.32 -r1.33 pkgsrc/lang/erlang/Makefile.versions
diff -r1.60 -r1.61 pkgsrc/lang/erlang/distinfo
diff -r1.1 -r1.2 pkgsrc/lang/erlang/versions.mk
diff -r1.3 -r0 pkgsrc/lang/erlang/patches/patch-erts_configure
diff -r0 -r1.1 pkgsrc/lang/erlang/patches/patch-erts_configure.in

cvs diff -r1.87 -r1.88 pkgsrc/lang/erlang/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/erlang/Makefile 2018/08/22 09:45:19 1.87
+++ pkgsrc/lang/erlang/Makefile 2018/09/12 20:01:12 1.88
@@ -1,58 +1,61 @@ @@ -1,58 +1,61 @@
1# $NetBSD: Makefile,v 1.87 2018/08/22 09:45:19 wiz Exp $ 1# $NetBSD: Makefile,v 1.88 2018/09/12 20:01:12 schmonz Exp $
2 2
3DISTNAME= otp_src_${DIST_VERSION_MAJOR}.${DIST_VERSION_MINOR}${!empty(DIST_VERSION_PATCH):?.:}${DIST_VERSION_PATCH} 3DISTNAME= OTP-${DIST_VERSION_MAJOR}.${DIST_VERSION_MINOR}${!empty(DIST_VERSION_PATCH):?.:}${DIST_VERSION_PATCH}
4PKGNAME= ${DISTNAME:S/otp_src_/erlang-/} 4PKGNAME= ${DISTNAME:S/OTP-/erlang-/}
5PKGREVISION= 1 
6CATEGORIES= lang 5CATEGORIES= lang
7MASTER_SITES= http://www.erlang.org/download/ 6MASTER_SITES= https://github.com/erlang/otp/archive/
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.erlang.org/ 9HOMEPAGE= http://www.erlang.org/
11COMMENT= Concurrent functional programming language 10COMMENT= Concurrent functional programming language
12LICENSE= apache-2.0 11LICENSE= apache-2.0
13 12
14DIST_SUBDIR= erlang 13DIST_SUBDIR= erlang
15 14
 15WRKSRC= ${WRKDIR}/otp-${DISTNAME}
 16
16GNU_CONFIGURE= yes 17GNU_CONFIGURE= yes
17USE_GNU_CONFIGURE_HOST= ${USE_CROSS_COMPILE} 18USE_GNU_CONFIGURE_HOST= ${USE_CROSS_COMPILE}
18OVERRIDE_DIRDEPTH= 4 19OVERRIDE_DIRDEPTH= 4
19USE_TOOLS+= awk gmake perl:run flex 20USE_TOOLS+= autoconf awk gmake perl:run flex
20 21
21CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_PREFIX.openssl} 22CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_PREFIX.openssl}
22 23
23PTHREAD_OPTS+= require native 24PTHREAD_OPTS+= require native
24CONFIGURE_ARGS+= --enable-threads 25CONFIGURE_ARGS+= --enable-threads
25 26
26.include "../../mk/bsd.prefs.mk" 27.include "../../mk/bsd.prefs.mk"
27 28
28# have gcc without the necessary atomic ops? 29# have gcc without the necessary atomic ops?
29.if !empty(MACHINE_PLATFORM:MNetBSD-[56].*) 30.if !empty(MACHINE_PLATFORM:MNetBSD-[56].*)
30 31
31# a machine without native ethread implementation? 32# a machine without native ethread implementation?
32. if empty(MACHINE_PLATFORM:M*i386) &&\ 33. if empty(MACHINE_PLATFORM:M*i386) &&\
33 empty(MACHINE_PLATFORM:M*sparc) &&\ 34 empty(MACHINE_PLATFORM:M*sparc) &&\
34 empty(MACHINE_PLATFORM:M*sparc64) &&\ 35 empty(MACHINE_PLATFORM:M*sparc64) &&\
35 empty(MACHINE_PLATFORM:M*powerpc) &&\ 36 empty(MACHINE_PLATFORM:M*powerpc) &&\
36 empty(MACHINE_PLATFORM:M*x86_64) 37 empty(MACHINE_PLATFORM:M*x86_64)
37 38
38CONFIGURE_ARGS+= --disable-native-ethr-impls\ 39CONFIGURE_ARGS+= --disable-native-ethr-impls\
39 --disable-smp-require-native-atomics 40 --disable-smp-require-native-atomics
40 41
41. endif 42. endif
42.endif 43.endif
43 44
44MAKE_ENV+= DESTDIR=${DESTDIR} 45MAKE_ENV+= DESTDIR=${DESTDIR}
45 46
 47do-configure-post-hook: replace-interpreter
 48
46REPLACE_INTERPRETER+= escript 49REPLACE_INTERPRETER+= escript
47REPLACE.escript.old= .*escript 50REPLACE.escript.old= .*escript
48REPLACE.escript.new= ${PREFIX}/bin/escript 51REPLACE.escript.new= ${PREFIX}/bin/escript
49REPLACE_FILES.escript= \ 52REPLACE_FILES.escript= \
50 lib/diameter/bin/diameterc \ 53 lib/diameter/bin/diameterc \
51 lib/erl_docgen/priv/bin/codeline_preprocessing.escript \ 54 lib/erl_docgen/priv/bin/codeline_preprocessing.escript \
52 lib/erl_docgen/priv/bin/xml_from_edoc.escript \ 55 lib/erl_docgen/priv/bin/xml_from_edoc.escript \
53 lib/reltool/examples/display_args \ 56 lib/reltool/examples/display_args \
54 lib/reltool/examples/mnesia_core_dump_viewer \ 57 lib/reltool/examples/mnesia_core_dump_viewer \
55 lib/snmp/bin/snmpc \ 58 lib/snmp/bin/snmpc \
56 lib/snmp/src/compile/snmpc.src 59 lib/snmp/src/compile/snmpc.src
57 60
58SUBST_CLASSES+= target 61SUBST_CLASSES+= target
@@ -71,26 +74,29 @@ CONFIGURE_ARGS.DragonFly+= --disable-sct @@ -71,26 +74,29 @@ CONFIGURE_ARGS.DragonFly+= --disable-sct
71 74
72### 75###
73### XXX There may be others here. 76### XXX There may be others here.
74### 77###
75.if ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD" || ${OPSYS} == "Darwin" 78.if ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD" || ${OPSYS} == "Darwin"
76CONFIGURE_ARGS+= --enable-kernel-poll 79CONFIGURE_ARGS+= --enable-kernel-poll
77.endif 80.endif
78 81
79CHECK_RELRO_SKIP+= lib/erlang/lib/megaco-${VERSION.megaco}/priv/lib/megaco_flex_scanner_drv.so 82CHECK_RELRO_SKIP+= lib/erlang/lib/megaco-${VERSION.megaco}/priv/lib/megaco_flex_scanner_drv.so
80CHECK_RELRO_SKIP+= lib/erlang/lib/megaco-${VERSION.megaco}/priv/lib/megaco_flex_scanner_drv_mt.so 83CHECK_RELRO_SKIP+= lib/erlang/lib/megaco-${VERSION.megaco}/priv/lib/megaco_flex_scanner_drv_mt.so
81 84
82.include "options.mk" 85.include "options.mk"
83 86
 87pre-configure:
 88 cd ${WRKSRC} && ./otp_build autoconf
 89
84### 90###
85### Ensure this gets rebuilt. 91### Ensure this gets rebuilt.
86### 92###
87pre-build: 93pre-build:
88 ${RUN} ${RM} -f ${WRKSRC}/lib/stdlib/ebin/dets_v9.beam 94 ${RUN} ${RM} -f ${WRKSRC}/lib/stdlib/ebin/dets_v9.beam
89 95
90### 96###
91### Generata list of module versions. 97### Generata list of module versions.
92### 98###
93.PHONY: versions 99.PHONY: versions
94versions: do-extract 100versions: do-extract
95 @${ECHO} "# \$$NetBSD\$$" > ${.CURDIR}/versions.mk 101 @${ECHO} "# \$$NetBSD\$$" > ${.CURDIR}/versions.mk
96 @${ECHO} "# Do not edit, regenerate using 'make versions'" >> ${.CURDIR}/versions.mk 102 @${ECHO} "# Do not edit, regenerate using 'make versions'" >> ${.CURDIR}/versions.mk

cvs diff -r1.32 -r1.33 pkgsrc/lang/erlang/Makefile.versions (expand / switch to unified diff)

--- pkgsrc/lang/erlang/Makefile.versions 2018/07/03 11:01:21 1.32
+++ pkgsrc/lang/erlang/Makefile.versions 2018/09/12 20:01:12 1.33
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1# $NetBSD: Makefile.versions,v 1.32 2018/07/03 11:01:21 fhajny Exp $ 1# $NetBSD: Makefile.versions,v 1.33 2018/09/12 20:01:12 schmonz Exp $
2 2
3DIST_VERSION_MAJOR= 21 3DIST_VERSION_MAJOR= 21
4DIST_VERSION_MINOR= 0 4DIST_VERSION_MINOR= 0
5# Only set when sources for patch level releases are published on erlang.org 5# Only set when sources for patch level releases are published on erlang.org
6DIST_VERSION_PATCH= # 6DIST_VERSION_PATCH= 9
7 7
8.include "versions.mk" 8.include "versions.mk"
9 9
10PLIST_SUBST+= VERSION=${DIST_VERSION_MAJOR} 10PLIST_SUBST+= VERSION=${DIST_VERSION_MAJOR}
11 11
12.for name version in ${_VERSIONS} 12.for name version in ${_VERSIONS}
13VERSION.${name}=${version} 13VERSION.${name}=${version}
14PLIST_SUBST+= VERSION.${name}=${version} 14PLIST_SUBST+= VERSION.${name}=${version}
15.endfor 15.endfor
16 16
17# Generate PLIST 17# Generate PLIST
18.for pkg version in ${_VERSIONS} 18.for pkg version in ${_VERSIONS}
19PRINT_PLIST_AWK+= {if ($$0 ~ /\/${pkg}-${version}\//) {sub(/\/${pkg}-${version}\//,"/${pkg}-$${VERSION.${pkg}}/", $$0);}} 19PRINT_PLIST_AWK+= {if ($$0 ~ /\/${pkg}-${version}\//) {sub(/\/${pkg}-${version}\//,"/${pkg}-$${VERSION.${pkg}}/", $$0);}}

cvs diff -r1.60 -r1.61 pkgsrc/lang/erlang/distinfo (expand / switch to unified diff)

--- pkgsrc/lang/erlang/distinfo 2018/08/14 18:40:42 1.60
+++ pkgsrc/lang/erlang/distinfo 2018/09/12 20:01:12 1.61
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1$NetBSD: distinfo,v 1.60 2018/08/14 18:40:42 nia Exp $ 1$NetBSD: distinfo,v 1.61 2018/09/12 20:01:12 schmonz Exp $
2 2
3SHA1 (erlang/otp_src_21.0.tar.gz) = b9ba0909aef16f038b8c75e4d7fd0993ae4e3beb 3SHA1 (erlang/OTP-21.0.9.tar.gz) = 84a58190149566e51ca552921b09f9ac77771599
4RMD160 (erlang/otp_src_21.0.tar.gz) = 6a13f1f49fddeb4bb0d5567ffe31ab232d80855b 4RMD160 (erlang/OTP-21.0.9.tar.gz) = 297898412640a17014f2bf019a4af2b95047c0cf
5SHA512 (erlang/otp_src_21.0.tar.gz) = 8bbc02ef74baf166dae6cac414ddbd1f5366d4aba0dc07adcceef6422e62fc83b585ee01d6a608282f9a7b63703a8bfb4e358bb5b924eca68209014997c0f6f8 5SHA512 (erlang/OTP-21.0.9.tar.gz) = 01bc5ce8d5c76823af1a17d389f326509c4ade5add0b0e66830e2c6aec2c7d93906cbbf9fb6b454178bddfa1c96355d632e4c557ab6da2bbdb8c6b0e05d87ee8
6Size (erlang/otp_src_21.0.tar.gz) = 84146631 bytes 6Size (erlang/OTP-21.0.9.tar.gz) = 52842736 bytes
7SHA1 (patch-ab) = 5f1602f3a49c05fd4c45884a7cd6be8d3f287ac3 7SHA1 (patch-ab) = 5f1602f3a49c05fd4c45884a7cd6be8d3f287ac3
8SHA1 (patch-ay) = f5f1accdb11e404ba4779b056228431e3080e4cd 8SHA1 (patch-ay) = f5f1accdb11e404ba4779b056228431e3080e4cd
9SHA1 (patch-erts_configure) = dba8d72974e8c493cf2bb90e6b149a84dd9073da 9SHA1 (patch-erts_configure.in) = 2154871858bab389509e908b38ae479a55709b97
10SHA1 (patch-erts_emulator_drivers_common_inet__drv.c) = 854ae8d60f3f114da11306db425519a0063cacda 10SHA1 (patch-erts_emulator_drivers_common_inet__drv.c) = 854ae8d60f3f114da11306db425519a0063cacda
11SHA1 (patch-erts_emulator_sys_unix_sys__uds.c) = a165f977221acc8aba2ef30ca23d149a10af060a 11SHA1 (patch-erts_emulator_sys_unix_sys__uds.c) = a165f977221acc8aba2ef30ca23d149a10af060a
12SHA1 (patch-erts_etc_unix_run__erl.c) = 9e2377ceba5021eaa2f0c729600df499954d134e 12SHA1 (patch-erts_etc_unix_run__erl.c) = 9e2377ceba5021eaa2f0c729600df499954d134e
13SHA1 (patch-erts_lib__src_common_erl__printf.c) = 55decad8ca2266feddb310ab5d00394d717afca7 13SHA1 (patch-erts_lib__src_common_erl__printf.c) = 55decad8ca2266feddb310ab5d00394d717afca7
14SHA1 (patch-lib_crypto_c__src_Makefile.in) = 0ab1db36c03999524e933d60f913ff5608b0622e 14SHA1 (patch-lib_crypto_c__src_Makefile.in) = 0ab1db36c03999524e933d60f913ff5608b0622e
15SHA1 (patch-make_output.mk.in) = d7b3da58bfb471d52c41242e2a03d1598ce24e62 15SHA1 (patch-make_output.mk.in) = d7b3da58bfb471d52c41242e2a03d1598ce24e62

cvs diff -r1.1 -r1.2 pkgsrc/lang/erlang/versions.mk (expand / switch to unified diff)

--- pkgsrc/lang/erlang/versions.mk 2018/07/03 11:01:21 1.1
+++ pkgsrc/lang/erlang/versions.mk 2018/09/12 20:01:12 1.2
@@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
1# $NetBSD: versions.mk,v 1.1 2018/07/03 11:01:21 fhajny Exp $ 1# $NetBSD: versions.mk,v 1.2 2018/09/12 20:01:12 schmonz Exp $
2# Do not edit, regenerate using 'make versions' 2# Do not edit, regenerate using 'make versions'
3_VERSIONS= \ 3_VERSIONS= \
4 asn1 5.0.6 common_test 1.16 compiler 7.2 crypto 4.3 debugger 4.2.5 dialyzer 3.3 diameter 2.1.5 edoc 0.9.3 eldap 1.2.4 erl_docgen 0.8 erl_interface 3.10.3 erts 10.0 et 1.6.2 eunit 2.3.6 ftp 1.0 hipe 3.18 inets 7.0 jinterface 1.9 kernel 6.0 mnesia 4.15.4 observer 2.8 os_mon 2.4.5 otp_mibs 1.2 parsetools 2.1.7 public_key 1.6 reltool 0.7.6 runtime_tools 1.13 sasl 3.2 ssh 4.7 ssl 9.0 stdlib 3.5 syntax_tools 2.1.5 tftp 1.0 tools 3.0 wx 1.8.4 xmerl 1.3.17 megaco 3.18.3 odbc 2.12.1 snmp 5.2.11  4 compiler 7.2.4 erts 10.0.8 asn1 5.0.6 common_test 1.16 crypto 4.3.2 debugger 4.2.5 dialyzer 3.3 diameter 2.1.5 edoc 0.9.3 eldap 1.2.4 erl_docgen 0.8 erl_interface 3.10.3 et 1.6.2 eunit 2.3.6 ftp 1.0 hipe 3.18 inets 7.0.1 jinterface 1.9 kernel 6.0.1 megaco 3.18.3 mnesia 4.15.4 observer 2.8 odbc 2.12.1 os_mon 2.4.5 otp_mibs 1.2 parsetools 2.1.7 public_key 1.6.1 reltool 0.7.6 runtime_tools 1.13 sasl 3.2 snmp 5.2.11 ssh 4.7 ssl 9.0.1 stdlib 3.5.1 syntax_tools 2.1.5 tftp 1.0 tools 3.0 wx 1.8.4 xmerl 1.3.17

File Deleted: pkgsrc/lang/erlang/patches/Attic/patch-erts_configure

File Added: pkgsrc/lang/erlang/patches/Attic/patch-erts_configure.in
$NetBSD: patch-erts_configure.in,v 1.1 2018/09/12 20:01:12 schmonz Exp $

--- erts/configure.in.orig	2018-09-11 14:57:05.000000000 +0000
+++ erts/configure.in
@@ -3031,7 +3031,7 @@ case $host_os in
 		DED_LD_FLAG_RUNTIME_LIBRARY_PATH=
 	;;
 	solaris2*|sysv4*)
-		DED_LDFLAGS="-G"
+		DED_LDFLAGS="-shared"
 		if test X${enable_m64_build} = Xyes; then
 			DED_LDFLAGS="-64 $DED_LDFLAGS"
 		fi