forked from erlang/erlang
* ssh: SFTP packets exceeding max packet size are not processed
and dropped.
* snmp: SNMP Agent transports type (intAgentTransports) was
incorrectly not documented as a list of transports. Also add a
couple of config file generation examples.
- Changes for 27.2.3:
* inets: Improved robustness of httpd startup procedure.
* ssl: Setting protocol version to a lower value then supported
by default in server API function called after ssl:listen/2
could result in wrong default values being used and connections
failing with insufficient security.
* ssl: Improve error handling of server name indication fun. This
implies that if the sni_fun returns undefined we will attempt
connection with original option values, if it returns
unrecognized we end the connection with UNRECOGNIZED_NAME alert
and if provided options fail option verification we will end
the connection with a HANDSHAKE_FAILURE and an error log.
- Changes for 27.2.2:
* compiler: Eliminated a bug in the alias analysis pass that
could potentially cause unsafe optimizations of binary
construction or record updates.
* erts: Disabled an unsafe runtime optimization in binary
construction that caused silent memory corruption.
* public_key: Consider keyCertSign to compatible with extended
key usage for TLS client/server auth in CAs, adhere to wide
spread implementations
* kernel: Fixed a couple of bugs that could make global's
internal state inconsistent when a connection was reconnected.
* ssl: An initiated handshake should always be closed with an
OBS-URL: https://build.opensuse.org/package/show/devel:languages:erlang:Factory/erlang?expand=0&rev=144
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From: Peter Lemenkov <lemenkov@gmail.com>
|
|
Date: Thu, 25 Feb 2010 16:45:28 +0300
|
|
Subject: [PATCH] Do not format man-pages and do not install miscellaneous
|
|
utilities for dealing with man-pages.
|
|
|
|
Index: otp-OTP-23.0/erts/etc/common/Makefile.in
|
|
===================================================================
|
|
--- otp-OTP-23.0.orig/erts/etc/common/Makefile.in
|
|
+++ otp-OTP-23.0/erts/etc/common/Makefile.in
|
|
@@ -521,10 +521,6 @@ endif
|
|
ifneq ($(INSTALL_TOP_BIN),)
|
|
$(INSTALL_PROGRAM) $(INSTALL_TOP_BIN) "$(RELEASE_PATH)"
|
|
endif
|
|
-ifneq ($(INSTALL_MISC),)
|
|
- $(INSTALL_DIR) "$(RELEASE_PATH)/misc"
|
|
- $(INSTALL_SCRIPT) $(INSTALL_MISC) "$(RELEASE_PATH)/misc"
|
|
-endif
|
|
ifneq ($(INSTALL_SRC),)
|
|
$(INSTALL_DIR) "$(RELEASE_PATH)/erts-$(VSN)/src"
|
|
$(INSTALL_DATA) $(INSTALL_SRC) "$(RELEASE_PATH)/erts-$(VSN)/src"
|
|
Index: otp-OTP-23.0/erts/etc/unix/Install.src
|
|
===================================================================
|
|
--- otp-OTP-23.0.orig/erts/etc/unix/Install.src
|
|
+++ otp-OTP-23.0/erts/etc/unix/Install.src
|
|
@@ -142,14 +142,5 @@ cp -p ../releases/%I_SYSTEM_VSN%/start_*
|
|
cp -p ../releases/%I_SYSTEM_VSN%/no_dot_erlang.boot .
|
|
cp -p $Name.boot start.boot
|
|
cp -p ../releases/%I_SYSTEM_VSN%/$Name.script start.script
|
|
-#
|
|
-# Fixing the man pages
|
|
-#
|
|
-
|
|
-if [ -d "$ERL_ROOT/man" ]
|
|
-then
|
|
- cd "$ERL_ROOT"
|
|
- ./misc/format_man_pages "$ERL_ROOT"
|
|
-fi
|
|
|
|
exit 0
|