~ubuntu-branches/ubuntu/trusty/trousers/trusty

« back to all changes in this revision

Viewing changes to debian/patches/06-limits.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-19 15:45:44 UTC
  • Revision ID: james.westby@ubuntu.com-20090519154544-93bq8c2b0ljktdco
Tags: 0.3.1-9
* Using correct rfc-2822 date formats in changelog.
* Upgrading to standards 3.8.1.
* Using more standard name for directory to keep local debian
  additions.
* Using quilt rather than dpatch.
* Adding patch from David Smith <dds@google.com> to fix dealing with
  bad shutdowns (Closes: #521245).
* Adding patch to not fail with gcc4.4 (Closes: #505602).
* Updating year in copyright file.
* Updating section of the debug package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh /usr/share/dpatch/dpatch-run
2
 
## 06-limits.dpatch by Albin Tonnerre <lutin@ubuntu.com>
3
 
##
4
 
## DP: add missing #include <limits.h>
5
 
 
6
 
@DPATCH@
7
 
 
8
 
diff -Naurp trousers.orig/src/trspi/crypto/openssl/symmetric.c trousers/src/trspi/crypto/openssl/symmetric.c
9
 
--- trousers.orig/src/trspi/crypto/openssl/symmetric.c  2008-06-21 16:15:28.000000000 +0200
10
 
+++ trousers/src/trspi/crypto/openssl/symmetric.c       2008-07-02 09:02:33.000000000 +0200
11
 
@@ -15,6 +15,7 @@
12
 
  *
13
 
  */
14
 
 
15
 
+#include <limits.h>
16
 
 #include <string.h>
17
 
 
18
 
 #include <openssl/evp.h>
19
 
diff -Naurp trousers.orig/src/tspi/tspi_aik.c trousers/src/tspi/tspi_aik.c
20
 
--- trousers.orig/src/tspi/tspi_aik.c   2008-06-21 16:15:28.000000000 +0200
21
 
+++ trousers/src/tspi/tspi_aik.c        2008-07-02 09:02:33.000000000 +0200
22
 
@@ -8,6 +8,7 @@
23
 
  *
24
 
  */
25
 
 
26
 
+#include <limits.h>
27
 
 #include <stdlib.h>
28
 
 #include <stdio.h>
29
 
 #include <string.h>
30
 
diff -Naurp trousers.orig/src/tspi/tsp_ps.c trousers/src/tspi/tsp_ps.c
31
 
--- trousers.orig/src/tspi/tsp_ps.c     2008-06-21 16:15:28.000000000 +0200
32
 
+++ trousers/src/tspi/tsp_ps.c  2008-07-02 09:02:33.000000000 +0200
33
 
@@ -8,6 +8,7 @@
34
 
  *
35
 
  */
36
 
 
37
 
+#include <limits.h>
38
 
 #include <stdlib.h>
39
 
 #include <sys/types.h>
40
 
 #include <sys/file.h>