839ee1d3ee
Changes: --------------------------------------------------------------------- --- erts-10.2.4 ----------------------------------------------------- --------------------------------------------------------------------- --- Fixed Bugs and Malfunctions --- OTP-14728 Application(s): erts Related Id(s): ERIERL-303 When using the {linger,{true,T}} option; gen_tcp:listen/2 used the full linger time before returning for example eaddrinuse. This bug has now been corrected. --------------------------------------------------------------------- --- stdlib-3.7.1 ---------------------------------------------------- --------------------------------------------------------------------- --- Fixed Bugs and Malfunctions --- OTP-15573 Application(s): stdlib Related Id(s): ERIERL-306 Optimize pretty printing of terms. The slower behaviour was introduced in Erlang/OTP 20.
25 lines
977 B
Text
25 lines
977 B
Text
# $NetBSD: Makefile.versions,v 1.42 2019/02/25 12:17:24 nia Exp $
|
|
|
|
DIST_VERSION_MAJOR= 21
|
|
DIST_VERSION_MINOR= 2
|
|
# Only set when sources for patch level releases are published on erlang.org
|
|
DIST_VERSION_PATCH= 6
|
|
|
|
.include "versions.mk"
|
|
|
|
PLIST_SUBST+= VERSION=${DIST_VERSION_MAJOR}
|
|
|
|
.for name version in ${_VERSIONS}
|
|
VERSION.${name}=${version}
|
|
PLIST_SUBST+= VERSION.${name}=${version}
|
|
.endfor
|
|
|
|
# Generate PLIST
|
|
.for pkg version in ${_VERSIONS}
|
|
PRINT_PLIST_AWK+= {if ($$0 ~ /\/${pkg}-${version}\//) {sub(/\/${pkg}-${version}\//,"/${pkg}-$${VERSION.${pkg}}/", $$0);}}
|
|
# documentation:
|
|
PRINT_PLIST_AWK+= {gsub(/\/${pkg}-${version}\.pdf/,"/${pkg}-$${VERSION.${pkg}}.pdf", $$0);}
|
|
.endfor
|
|
PRINT_PLIST_AWK+= {if ($$0 ~ /\/releases\/${DIST_VERSION_MAJOR}\//) {sub(/\/releases\/${DIST_VERSION_MAJOR}\//,"/releases/$${VERSION}/", $$0);}}
|
|
# documentation:
|
|
PRINT_PLIST_AWK+= {gsub(/\/otp-system-documentation-${VERSION.erts}\.pdf/,"/otp-system-documentation-$${VERSION.erts}.pdf", $$0);}
|