package/upmpcli: bump to version 0.13.1
[buildroot-gz.git] / package / cegui06 / 0001-stddef.h.patch
blobcc16effc25c5fd971ea637daf5698f7201c07426
1 includes: ptrdiff_t is defined in stddef.h
3 ptrdiff_t is defined in the stddef.h header, so this
4 header must be included.
6 Do the #include in a common header to avoid doing it
7 all over the place.
9 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
11 ---
12 Patch not sent upstream, it's a no-longer-maintained branch.
13 To be noted, however, is that the current devel branch is
14 still missing that include.
16 diff -durN cegui06-0.6.2.orig/include/CEGUIBase.h cegui06-0.6.2/include/CEGUIBase.h
17 --- cegui06-0.6.2.orig//include/CEGUIBase.h 2008-02-11 15:38:27.000000000 +0100
18 +++ cegui06-0.6.2/include/CEGUIBase.h 2012-08-19 22:51:50.260385978 +0200
19 @@ -34,6 +34,7 @@
20 #define _CEGUIBase_h_
22 #include <cassert>
23 +#include <stddef.h>
25 // bring in configuration options
26 #include "CEGUIConfig.h"