[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU gnutls branch, gnutls_2_10_x, updated. gnutls_2_9_10-57-g1f9e9
From: |
Simon Josefsson |
Subject: |
[SCM] GNU gnutls branch, gnutls_2_10_x, updated. gnutls_2_9_10-57-g1f9e950 |
Date: |
Mon, 31 May 2010 18:44:21 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".
http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=1f9e950b8b25c0607e4631db952e357d1d839b78
The branch, gnutls_2_10_x has been updated
via 1f9e950b8b25c0607e4631db952e357d1d839b78 (commit)
via 2d3a2694a7eed6be247da56025727e1759bd3b7f (commit)
from ef11b756916c9961d63b373b06ec229841cc07a9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1f9e950b8b25c0607e4631db952e357d1d839b78
Author: Simon Josefsson <address@hidden>
Date: Mon May 31 18:32:44 2010 +0200
Minor fix.
commit 2d3a2694a7eed6be247da56025727e1759bd3b7f
Author: Simon Josefsson <address@hidden>
Date: Mon May 31 17:48:09 2010 +0200
Update gnulib files.
-----------------------------------------------------------------------
Summary of changes:
GNUmakefile | 6 ++++--
doc/gnutls.texi | 10 +++++-----
maint.mk | 5 +++--
3 files changed, 12 insertions(+), 9 deletions(-)
diff --git a/GNUmakefile b/GNUmakefile
index daba47a..97fea36 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -60,8 +60,10 @@ ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL))
$(filter maintainer-% dist% alpha beta major,$(MAKECMDGOALS)))
_is-install-target ?= $(filter-out %check, $(filter
install%,$(MAKECMDGOALS)))
ifneq (,$(_is-dist-target)$(_is-install-target))
- _curr-ver := $(shell cd $(srcdir) \
- && $(_build-aux)/git-version-gen .tarball-version)
+ _curr-ver := $(shell cd $(srcdir) \
+ && $(_build-aux)/git-version-gen \
+ .tarball-version \
+ $(git-version-gen-tag-sed-script))
ifneq ($(_curr-ver),$(VERSION))
ifeq ($(_curr-ver),UNKNOWN)
$(info WARNING: unable to verify if $(VERSION) is the correct version)
diff --git a/doc/gnutls.texi b/doc/gnutls.texi
index dd4d86f..daef0ff 100644
--- a/doc/gnutls.texi
+++ b/doc/gnutls.texi
@@ -1293,11 +1293,11 @@ client require the extension for every handshake and
servers will refuse
renegotiation without it.
To enforce your clients to upgrade to a version that supports safe
-renegotiation the %INITIAL_SAFE_RENEGOTIATION priority string should be used
-at server side. This will deny any connections unless the client supports
-the extension. This however will prevent all clients that do not support
-the extension from connecting to server, even if they do not use
-renegotiation.
+renegotiation the %INITIAL_SAFE_RENEGOTIATION priority string should
+be used at server side. This will deny any (re-)handshakes unless the
+client supports the extension. This however will prevent all clients
+that do not support the extension from connecting to server, even if
+they do not use renegotiation.
It is possible to disable use of the extension completely, in both
clients and servers, by using the @code{%DISABLE_SAFE_RENEGOTIATION}
diff --git a/maint.mk b/maint.mk
index 1bdd0d5..e526e0f 100644
--- a/maint.mk
+++ b/maint.mk
@@ -689,7 +689,8 @@ define def_sym_regex
perl -lne '$(gl_extract_significant_defines_)' $$f; \
done; \
) | sort -u \
- | sed 's/^/^ *# *define /;s/$$/\\>/'
+ | grep -Ev '^ATTRIBUTE_NORETURN' \
+ | sed 's/^/^ *# *(define|undef) */;s/$$/\\>/'
endef
# Don't define macros that we already get from gnulib header files.
@@ -698,7 +699,7 @@ sc_prohibit_always-defined_macros:
case $$(echo all: | grep -l -f - Makefile) in Makefile);; *) \
echo '$(ME): skipping $@: you lack GNU grep' 1>&2; exit 0;; \
esac; \
- $(def_sym_regex) | grep -f - $$($(VC_LIST_EXCEPT)) \
+ $(def_sym_regex) | grep -E -f - $$($(VC_LIST_EXCEPT)) \
&& { echo '$(ME): define the above via some gnulib .h file' \
1>&2; exit 1; } || :; \
fi
hooks/post-receive
--
GNU gnutls
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU gnutls branch, gnutls_2_10_x, updated. gnutls_2_9_10-57-g1f9e950,
Simon Josefsson <=