b96cc82c0579dcca345ad85ff1bdedc84956edb1
[gentoo.git] / media-tv / kodi / files / kodi-15.1-gcc-5.patch
1 fix from upstream
2
3 From 38693b251f5d80a7414b077e02c1636af65afb3d Mon Sep 17 00:00:00 2001
4 From: Craig Andrews <candrews@integralblue.com>
5 Date: Thu, 30 Jul 2015 23:06:41 -0400
6 Subject: [PATCH] [rsxs] Use stdbool.h from GCC 5.2.0
7
8 ---
9  xbmc/screensavers/rsxs-0.9/lib/stdbool_.h | 137 +++++++++---------------------
10  1 file changed, 38 insertions(+), 99 deletions(-)
11
12 diff --git a/xbmc/screensavers/rsxs-0.9/lib/stdbool_.h b/xbmc/screensavers/rsxs-0.9/lib/stdbool_.h
13 index efa80ba..a951510 100644
14 --- a/xbmc/screensavers/rsxs-0.9/lib/stdbool_.h
15 +++ b/xbmc/screensavers/rsxs-0.9/lib/stdbool_.h
16 @@ -1,115 +1,54 @@
17 -/* Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc.
18 -   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
19 +/* Copyright (C) 1998-2015 Free Software Foundation, Inc.
20  
21 -   This program is free software; you can redistribute it and/or modify
22 -   it under the terms of the GNU General Public License as published by
23 -   the Free Software Foundation; either version 2, or (at your option)
24 -   any later version.
25 +This file is part of GCC.
26  
27 -   This program is distributed in the hope that it will be useful,
28 -   but WITHOUT ANY WARRANTY; without even the implied warranty of
29 -   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30 -   GNU General Public License for more details.
31 +GCC is free software; you can redistribute it and/or modify
32 +it under the terms of the GNU General Public License as published by
33 +the Free Software Foundation; either version 3, or (at your option)
34 +any later version.
35  
36 -   You should have received a copy of the GNU General Public License
37 -   along with this program; if not, write to the Free Software Foundation,
38 -   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
39 +GCC is distributed in the hope that it will be useful,
40 +but WITHOUT ANY WARRANTY; without even the implied warranty of
41 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
42 +GNU General Public License for more details.
43  
44 -#ifndef _STDBOOL_H
45 -#define _STDBOOL_H
46 -
47 -/* ISO C 99 <stdbool.h> for platforms that lack it.  */
48 -
49 -/* Usage suggestions:
50 -
51 -   Programs that use <stdbool.h> should be aware of some limitations
52 -   and standards compliance issues.
53 -
54 -   Standards compliance:
55 +Under Section 7 of GPL version 3, you are granted additional
56 +permissions described in the GCC Runtime Library Exception, version
57 +3.1, as published by the Free Software Foundation.
58  
59 -       - <stdbool.h> must be #included before 'bool', 'false', 'true'
60 -         can be used.
61 +You should have received a copy of the GNU General Public License and
62 +a copy of the GCC Runtime Library Exception along with this program;
63 +see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
64 +<http://www.gnu.org/licenses/>.  */
65  
66 -       - You cannot assume that sizeof (bool) == 1.
67 +/*
68 + * ISO C Standard:  7.16  Boolean type and values  <stdbool.h>
69 + */
70  
71 -       - Programs should not undefine the macros bool, true, and false,
72 -         as C99 lists that as an "obsolescent feature".
73 -
74 -   Limitations of this substitute, when used in a C89 environment:
75 -
76 -       - <stdbool.h> must be #included before the '_Bool' type can be used.
77 -
78 -       - You cannot assume that _Bool is a typedef; it might be a macro.
79 +#ifndef _STDBOOL_H
80 +#define _STDBOOL_H
81  
82 -       - In C99, casts and automatic conversions to '_Bool' or 'bool' are
83 -         performed in such a way that every nonzero value gets converted
84 -         to 'true', and zero gets converted to 'false'.  This doesn't work
85 -         with this substitute.  With this substitute, only the values 0 and 1
86 -         give the expected result when converted to _Bool' or 'bool'.
87 +#ifndef __cplusplus
88  
89 -   Also, it is suggested that programs use 'bool' rather than '_Bool';
90 -   this isn't required, but 'bool' is more common.  */
91 +#define bool   _Bool
92 +#define true   1
93 +#define false  0
94  
95 +#else /* __cplusplus */
96  
97 -/* 7.16. Boolean type and values */
98 +/* Supporting _Bool in C++ is a GCC extension.  */
99 +#define _Bool  bool
100  
101 -/* BeOS <sys/socket.h> already #defines false 0, true 1.  We use the same
102 -   definitions below, but temporarily we have to #undef them.  */
103 -#ifdef __BEOS__
104 -# include <OS.h> /* defines bool but not _Bool */
105 -# undef false
106 -# undef true
107 +#if __cplusplus < 201103L
108 +/* Defining these macros in C++98 is a GCC extension.  */
109 +#define bool   bool
110 +#define false  false
111 +#define true   true
112  #endif
113  
114 -/* For the sake of symbolic names in gdb, we define true and false as
115 -   enum constants, not only as macros.
116 -   It is tempting to write
117 -      typedef enum { false = 0, true = 1 } _Bool;
118 -   so that gdb prints values of type 'bool' symbolically. But if we do
119 -   this, values of type '_Bool' may promote to 'int' or 'unsigned int'
120 -   (see ISO C 99 6.7.2.2.(4)); however, '_Bool' must promote to 'int'
121 -   (see ISO C 99 6.3.1.1.(2)).  So we add a negative value to the
122 -   enum; this ensures that '_Bool' promotes to 'int'.  */
123 -#if defined __cplusplus || defined __BEOS__
124 -  /* A compiler known to have 'bool'.  */
125 -  /* If the compiler already has both 'bool' and '_Bool', we can assume they
126 -     are the same types.  */
127 -# if !@HAVE__BOOL@
128 -typedef bool _Bool;
129 -# endif
130 -#else
131 -# if !defined __GNUC__
132 -   /* If @HAVE__BOOL@:
133 -        Some HP-UX cc and AIX IBM C compiler versions have compiler bugs when
134 -        the built-in _Bool type is used.  See
135 -          http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html
136 -          http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html
137 -          http://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html
138 -        Similar bugs are likely with other compilers as well; this file
139 -        wouldn't be used if <stdbool.h> was working.
140 -        So we override the _Bool type.
141 -      If !@HAVE__BOOL@:
142 -        Need to define _Bool ourselves. As 'signed char' or as an enum type?
143 -        Use of a typedef, with SunPRO C, leads to a stupid
144 -          "warning: _Bool is a keyword in ISO C99".
145 -        Use of an enum type, with IRIX cc, leads to a stupid
146 -          "warning(1185): enumerated type mixed with another type".
147 -        The only benefit of the enum type, debuggability, is not important
148 -        with these compilers.  So use 'signed char' and no typedef.  */
149 -#  define _Bool signed char
150 -enum { false = 0, true = 1 };
151 -# else
152 -   /* With this compiler, trust the _Bool type if the compiler has it.  */
153 -#  if !@HAVE__BOOL@
154 -typedef enum { _Bool_must_promote_to_int = -1, false = 0, true = 1 } _Bool;
155 -#  endif
156 -# endif
157 -#endif
158 -#define bool _Bool
159 +#endif /* __cplusplus */
160  
161 -/* The other macros must be usable in preprocessor directives.  */
162 -#define false 0
163 -#define true 1
164 -#define __bool_true_false_are_defined 1
165 +/* Signal that all the definitions are present.  */
166 +#define __bool_true_false_are_defined  1
167  
168 -#endif /* _STDBOOL_H */
169 +#endif /* stdbool.h */
170 -- 
171 2.4.4
172