Bump buildroot to version 2017-02
TG-3 #closed
This commit is contained in:
@@ -1,39 +0,0 @@
|
||||
From 368c4c7cc5722b2edfe98fb3a8999f8f01bc9b56 Mon Sep 17 00:00:00 2001
|
||||
From: Romain Naour <romain.naour@gmail.com>
|
||||
Date: Fri, 5 Aug 2016 21:14:46 +0200
|
||||
Subject: [PATCH] E: include uuid.h only when Wayland support is enabled.
|
||||
|
||||
libuuid is checked only when Wayland support is enabled and
|
||||
uuid_t uuid is guarded by HAVE_WAYLAND.
|
||||
|
||||
So move include uuid.h below a HAVE_WAYLAND.
|
||||
|
||||
Signed-off-by: Romain Naour <romain.naour@gmail.com>
|
||||
---
|
||||
src/bin/e_pixmap.c | 3 +--
|
||||
1 file changed, 1 insertion(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c
|
||||
index 2bd94a7..0b01473 100644
|
||||
--- a/src/bin/e_pixmap.c
|
||||
+++ b/src/bin/e_pixmap.c
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
#ifdef HAVE_WAYLAND
|
||||
# include "e_comp_wl.h"
|
||||
+# include <uuid.h>
|
||||
# ifndef EGL_TEXTURE_FORMAT
|
||||
# define EGL_TEXTURE_FORMAT 0x3080
|
||||
# endif
|
||||
@@ -13,8 +14,6 @@
|
||||
# include "e_comp_x.h"
|
||||
#endif
|
||||
|
||||
-#include <uuid.h>
|
||||
-
|
||||
static Eina_Hash *pixmaps[2] = {NULL};
|
||||
static Eina_Hash *aliases[2] = {NULL};
|
||||
|
||||
--
|
||||
2.5.5
|
||||
|
||||
@@ -9,15 +9,15 @@ config BR2_PACKAGE_ENLIGHTENMENT
|
||||
# libedbus -> dbus, efl libraries
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_PACKAGE_EFL
|
||||
depends on BR2_PACKAGE_HAS_UDEV # efl (eeze) -> libudev
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
# libevas-generic-loaders-svg -> librsvg -> pango -> harfbuzz
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
select BR2_PACKAGE_EFL_X_XLIB
|
||||
select BR2_PACKAGE_EFL_EEZE
|
||||
select BR2_PACKAGE_EFL_JPEG # needed at runtime by enlightenment_start
|
||||
select BR2_PACKAGE_EFL_PNG # needed at runtime by enlightenment_start
|
||||
select BR2_PACKAGE_ELEMENTARY
|
||||
select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
|
||||
select BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS_SVG
|
||||
select BR2_PACKAGE_EFL_SVG
|
||||
select BR2_PACKAGE_XCB_UTIL_KEYSYMS
|
||||
help
|
||||
Enlightenment, also known simply as E, is a stacking window
|
||||
@@ -28,7 +28,8 @@ config BR2_PACKAGE_ENLIGHTENMENT
|
||||
|
||||
http://www.enlightenment.org/
|
||||
|
||||
comment "enlightenment needs a toolchain w/ wchar, C++, threads"
|
||||
comment "enlightenment needs udev /dev management and a toolchain w/ wchar, C++, threads"
|
||||
depends on BR2_PACKAGE_EFL && BR2_PACKAGE_XORG7 && BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
|
||||
!BR2_PACKAGE_HAS_UDEV
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From https://www.enlightenment.org/news/e-0.20.10-release
|
||||
sha256 59fd447d120d91d18958a31a5827f97842cc472f2e22f132b2c7d4d208944baf enlightenment-0.20.10.tar.xz
|
||||
# From https://www.enlightenment.org/news/e-0.21.5-release
|
||||
sha256 f0745a660f70851c4ada9866b2a525185bfc5cd1685aa86e4cdb68f2c1c154bb enlightenment-0.21.5.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
ENLIGHTENMENT_VERSION = 0.20.10
|
||||
ENLIGHTENMENT_VERSION = 0.21.5
|
||||
ENLIGHTENMENT_SOURCE = enlightenment-$(ENLIGHTENMENT_VERSION).tar.xz
|
||||
ENLIGHTENMENT_SITE = http://download.enlightenment.org/rel/apps/enlightenment
|
||||
ENLIGHTENMENT_LICENSE = BSD-2c
|
||||
@@ -14,13 +14,12 @@ ENLIGHTENMENT_DEPENDENCIES = \
|
||||
host-pkgconf \
|
||||
host-efl \
|
||||
efl \
|
||||
elementary \
|
||||
libevas-generic-loaders \
|
||||
xcb-util-keysyms
|
||||
|
||||
ENLIGHTENMENT_CONF_OPTS = \
|
||||
--with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc \
|
||||
--with-eet-eet=$(HOST_DIR)/usr/bin/eet \
|
||||
--with-eldbus_codegen=$(HOST_DIR)/usr/bin/eldbus-codegen \
|
||||
--disable-pam \
|
||||
--disable-rpath
|
||||
|
||||
@@ -31,11 +30,6 @@ else
|
||||
ENLIGHTENMENT_CONF_OPTS += --disable-systemd
|
||||
endif
|
||||
|
||||
# uClibc has an old incomplete sys/ptrace.h for powerpc & sparc
|
||||
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC)$(BR2_powerpc)$(BR2_sparc),yy)
|
||||
ENLIGHTENMENT_CONF_ENV += ac_cv_header_sys_ptrace_h=no
|
||||
endif
|
||||
|
||||
# alsa backend needs mixer support
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB)$(BR2_PACKAGE_ALSA_LIB_MIXER),yy)
|
||||
ENLIGHTENMENT_DEPENDENCIES += alsa-lib
|
||||
|
||||
Reference in New Issue
Block a user