Add patches

This commit is contained in:
Simone Caronni 2013-07-22 09:57:38 +02:00
parent aa5040bffb
commit 5bb14cc944
4 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,15 @@
Description: Be sure we never build LaTeX documentation
Author: Laurent Bigonville <bigon@debian.org>
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=622108
--- a/doc/doxy.config.in
+++ b/doc/doxy.config.in
@@ -1014,7 +1014,7 @@
# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
# generate Latex output.
-GENERATE_LATEX = @DOXYFILE_LATEX@
+GENERATE_LATEX = NO
# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be

View File

@ -0,0 +1,16 @@
Description: Do not exclude "*/build/*" directory as buildd use that path
Author: Laurent Bigonville <bigon@debian.org>
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/libssh/+bug/821437
--- a/doc/doxy.config.in
+++ b/doc/doxy.config.in
@@ -631,8 +631,7 @@
EXCLUDE_PATTERNS = */.git/* \
*/.svn/* \
- */cmake/* \
- */build/*
+ */cmake/*
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
# (namespaces, classes, functions, etc.) that should be excluded from the

View File

@ -0,0 +1,14 @@
Subject: Fix typo
From: Laurent Bigonville <bigon@debian.org>
--- a/src/server.c
+++ b/src/server.c
@@ -186,7 +186,7 @@ static int dh_handshake_server(ssh_sessi
default:
ssh_set_error(session,
SSH_FATAL,
- "Could determine the specified hostkey");
+ "Could not determine the specified hostkey");
ssh_string_free(f);
return -1;
}