Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
includes: ptrdiff_t is defined in stddef.h
|
||||
|
||||
ptrdiff_t is defined in the stddef.h header, so this
|
||||
header must be included.
|
||||
|
||||
Do the #include in a common header to avoid doing it
|
||||
all over the place.
|
||||
|
||||
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
|
||||
|
||||
---
|
||||
Patch not sent upstream, it's a no-longer-maintained branch.
|
||||
To be noted, however, is that the current devel branch is
|
||||
still missing that include.
|
||||
|
||||
diff -durN cegui06-0.6.2.orig/include/CEGUIBase.h cegui06-0.6.2/include/CEGUIBase.h
|
||||
--- cegui06-0.6.2.orig//include/CEGUIBase.h 2008-02-11 15:38:27.000000000 +0100
|
||||
+++ cegui06-0.6.2/include/CEGUIBase.h 2012-08-19 22:51:50.260385978 +0200
|
||||
@@ -34,6 +34,7 @@
|
||||
#define _CEGUIBase_h_
|
||||
|
||||
#include <cassert>
|
||||
+#include <stddef.h>
|
||||
|
||||
// bring in configuration options
|
||||
#include "CEGUIConfig.h"
|
||||
20
deprecated/firmware/buildroot/package/cegui06/Config.in
Normal file
20
deprecated/firmware/buildroot/package/cegui06/Config.in
Normal file
@@ -0,0 +1,20 @@
|
||||
comment "cegui06 needs a toolchain w/ C++, threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
|
||||
|
||||
config BR2_PACKAGE_CEGUI06
|
||||
bool "cegui06"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_EXPAT
|
||||
select BR2_PACKAGE_FREETYPE
|
||||
select BR2_PACKAGE_PCRE
|
||||
help
|
||||
Crazy Eddie's GUI System is a free library providing windowing and
|
||||
widgets for graphics APIs / engines where such functionality is not
|
||||
natively available, or severely lacking. The library is object
|
||||
orientated, written in C++, and targeted at games developers who
|
||||
should be spending their time creating great games, not building
|
||||
GUI sub-systems!
|
||||
|
||||
http://www.cegui.org.uk/
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally computed:
|
||||
sha256 eb77741cd9fcc927a876e8116b98691212e973d2264e2071406423f6ca3e305f CEGUI-0.6.2b.tar.gz
|
||||
36
deprecated/firmware/buildroot/package/cegui06/cegui06.mk
Normal file
36
deprecated/firmware/buildroot/package/cegui06/cegui06.mk
Normal file
@@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
#
|
||||
# cegui06
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# Do not update the version, we need exactly that one for Spice.
|
||||
CEGUI06_VERSION_MAJOR = 0.6.2
|
||||
CEGUI06_VERSION = $(CEGUI06_VERSION_MAJOR)b
|
||||
CEGUI06_SOURCE = CEGUI-$(CEGUI06_VERSION).tar.gz
|
||||
CEGUI06_SITE = http://downloads.sourceforge.net/project/crayzedsgui/CEGUI%20Mk-2/$(CEGUI06_VERSION_MAJOR)
|
||||
CEGUI06_LICENSE = MIT
|
||||
CEGUI06_LICENSE_FILES = COPYING
|
||||
CEGUI06_INSTALL_STAGING = YES
|
||||
|
||||
CEGUI06_DEPENDENCIES = \
|
||||
expat \
|
||||
freetype \
|
||||
pcre \
|
||||
|
||||
CEGUI06_CONF_OPTS = \
|
||||
--enable-expat \
|
||||
--disable-external-tinyxml \
|
||||
--disable-xerces-c \
|
||||
--disable-libxml \
|
||||
--disable-tinyxml \
|
||||
--disable-opengl-renderer \
|
||||
--disable-external-glew \
|
||||
--disable-irrlicht-renderer \
|
||||
--disable-directfb-renderer \
|
||||
--disable-samples \
|
||||
--disable-lua-module \
|
||||
--disable-toluacegui \
|
||||
--disable-external-toluapp \
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user