~ubuntu-branches/ubuntu/trusty/eglibc/trusty

« back to all changes in this revision

Viewing changes to debian/patches/hurd-i386/cvs-add-missing-includes.diff

  • Committer: Package Import Robot
  • Author(s): Adam Conrad
  • Date: 2013-01-10 18:39:35 UTC
  • mfrom: (1.5.2) (4.4.24 experimental)
  • Revision ID: package-import@ubuntu.com-20130110183935-afsgfxkmg7wk5eaj
Tags: 2.17-0ubuntu1
* Merge with Debian, bringing in a new upstream and many small fixes:
  - patches/any/cvs-malloc-deadlock.diff: Dropped, merged upstream.
  - patches/ubuntu/lddebug-scopes.diff: Rebase for upstream changes.
  - patches/ubuntu/local-CVE-2012-3406.diff: Rebased against upstream.
  - patches/ubuntu/no-asm-mtune-i686.diff: Fixed in recent binutils.
* This upstream merge fixes a nasty hang in pulseaudio (LP: #1085342)
* Bump MIN_KERNEL_SUPPORTED to 2.6.32 on ARM, now that we no longer
  have to support shonky 2.6.31 kernels on imx51 babbage builders.
* Drop patches/ubuntu/local-disable-nscd-host-caching.diff, as these
  issues were apparently resolved upstream a while ago (LP: #613662)
* Fix the compiled-in bug URL to point to launchpad.net, not Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
2012-07-22  Thomas Schwinge  <thomas@codesourcery.com>
2
 
 
3
 
        * math/w_ilogb.c: Include <limits.h>.
4
 
        * math/w_ilogbl.c: Likewise.
5
 
 
6
 
---
7
 
 ChangeLog       |    5 +++++
8
 
 math/w_ilogb.c  |    2 +-
9
 
 math/w_ilogbf.c |    1 -
10
 
 math/w_ilogbl.c |    1 +
11
 
 4 files changed, 7 insertions(+), 2 deletions(-)
12
 
 
13
 
diff --git a/math/w_ilogb.c b/math/w_ilogb.c
14
 
index c87b517..7cb897a 100644
15
 
--- a/math/w_ilogb.c
16
 
+++ b/math/w_ilogb.c
17
 
@@ -18,6 +18,7 @@
18
 
 
19
 
 #include <math.h>
20
 
 #include <errno.h>
21
 
+#include <limits.h>
22
 
 #include <math_private.h>
23
 
 
24
 
 /* wrapper ilogb */
25
 
@@ -34,7 +35,6 @@ __ilogb (double x)
26
 
     }
27
 
   return r;
28
 
 }
29
 
-
30
 
 weak_alias (__ilogb, ilogb)
31
 
 #ifdef NO_LONG_DOUBLE
32
 
 strong_alias (__ilogb, __ilogbl)
33
 
diff --git a/math/w_ilogbl.c b/math/w_ilogbl.c
34
 
index 8c30caa..7cfc648 100644
35
 
--- a/math/w_ilogbl.c
36
 
+++ b/math/w_ilogbl.c
37
 
@@ -18,6 +18,7 @@
38
 
 
39
 
 #include <math.h>
40
 
 #include <errno.h>
41
 
+#include <limits.h>
42
 
 #include <math_private.h>
43
 
 
44
 
 /* wrapper ilogbl */