diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2013-08-08 18:56:58 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2013-08-08 18:56:58 +0000 |
commit | 99a62f069b814654c58d7d21a859ec842f1e70c6 (patch) | |
tree | da798940c1ea92bb273aea4694a55bf1495c1e1a /x11-wm/i3 | |
parent | 2.2.0_alpha195 version bump. This includes all of the fixes in 2.1.13.7. (diff) | |
download | gentoo-2-99a62f069b814654c58d7d21a859ec842f1e70c6.tar.gz gentoo-2-99a62f069b814654c58d7d21a859ec842f1e70c6.tar.bz2 gentoo-2-99a62f069b814654c58d7d21a859ec842f1e70c6.zip |
Add missing include wrt #480272 by Jeroen Roovers <jer@gentoo.org>
(Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key 895192F9)
Diffstat (limited to 'x11-wm/i3')
-rw-r--r-- | x11-wm/i3/ChangeLog | 6 | ||||
-rw-r--r-- | x11-wm/i3/files/i3-4.6-missing_include.patch | 15 | ||||
-rw-r--r-- | x11-wm/i3/i3-4.6.ebuild | 3 |
3 files changed, 22 insertions, 2 deletions
diff --git a/x11-wm/i3/ChangeLog b/x11-wm/i3/ChangeLog index 6a9819f8625b..093f1c640851 100644 --- a/x11-wm/i3/ChangeLog +++ b/x11-wm/i3/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/i3 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.32 2013/08/07 19:35:30 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/ChangeLog,v 1.33 2013/08/08 18:56:58 xarthisius Exp $ + + 08 Aug 2013; Kacper Kowalik <xarthisius@gentoo.org> + +files/i3-4.6-missing_include.patch, i3-4.6.ebuild: + Add missing include wrt #480272 by Jeroen Roovers <jer@gentoo.org> *i3-4.6 (07 Aug 2013) diff --git a/x11-wm/i3/files/i3-4.6-missing_include.patch b/x11-wm/i3/files/i3-4.6-missing_include.patch new file mode 100644 index 000000000000..77147d264e18 --- /dev/null +++ b/x11-wm/i3/files/i3-4.6-missing_include.patch @@ -0,0 +1,15 @@ +Include float.h for DBL_EPSILON + +https://bugs.gentoo.org/show_bug.cgi?id=480272 + +Patch was written by Jeroen Roovers <jer@gentoo.org> +--- a/src/handlers.c ++++ b/src/handlers.c +@@ -13,6 +13,7 @@ + #include "all.h" + + #include <time.h> ++#include <float.h> + #include <sys/time.h> + #include <xcb/randr.h> + #include <X11/XKBlib.h> diff --git a/x11-wm/i3/i3-4.6.ebuild b/x11-wm/i3/i3-4.6.ebuild index 55d7f12bc33d..09a48ca860dc 100644 --- a/x11-wm/i3/i3-4.6.ebuild +++ b/x11-wm/i3/i3-4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/i3-4.6.ebuild,v 1.1 2013/08/07 19:35:30 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/i3/i3-4.6.ebuild,v 1.2 2013/08/08 18:56:58 xarthisius Exp $ EAPI=5 @@ -44,6 +44,7 @@ src_prepare() { exec /usr/bin/i3 EOF + epatch "${FILESDIR}"/${P}-missing_include.patch #480272 epatch_user #471716 } |