Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
From 85b61589b0c73f6c6974862af678ed2f82806ac5 Mon Sep 17 00:00:00 2001
|
||||
From: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
Date: Thu, 9 Aug 2018 21:44:46 +0200
|
||||
Subject: [PATCH] [scanner] Fix compiler error: missing <stdexcept> to use
|
||||
std::runtime_error
|
||||
|
||||
Patch sent upstream as PR 50.
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
---
|
||||
scanner/scanner.cpp | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/scanner/scanner.cpp b/scanner/scanner.cpp
|
||||
index 9c97b7c..7019e0a 100644
|
||||
--- a/scanner/scanner.cpp
|
||||
+++ b/scanner/scanner.cpp
|
||||
@@ -22,6 +22,7 @@
|
||||
#include <sstream>
|
||||
#include <cctype>
|
||||
#include <cmath>
|
||||
+#include <stdexcept>
|
||||
|
||||
#include "pugixml.hpp"
|
||||
|
||||
--
|
||||
2.18.0
|
||||
|
||||
16
bsp/buildroot/package/waylandpp/Config.in
Normal file
16
bsp/buildroot/package/waylandpp/Config.in
Normal file
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_WAYLANDPP
|
||||
bool "waylandpp"
|
||||
depends on BR2_PACKAGE_HAS_LIBEGL_WAYLAND
|
||||
depends on BR2_HOST_GCC_AT_LEAST_4_9
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
depends on BR2_PACKAGE_WAYLAND
|
||||
help
|
||||
Wayland C++ bindings
|
||||
|
||||
https://github.com/NilsBrause/waylandpp
|
||||
|
||||
comment "waylandpp needs an OpenGL-EGL/wayland backend, a toolchain w/ gcc >= 4.9, host gcc >= 4.9"
|
||||
depends on BR2_PACKAGE_WAYLAND
|
||||
depends on !BR2_PACKAGE_HAS_LIBEGL_WAYLAND || \
|
||||
!BR2_HOST_GCC_AT_LEAST_4_9 || \
|
||||
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|
||||
4
bsp/buildroot/package/waylandpp/waylandpp.hash
Normal file
4
bsp/buildroot/package/waylandpp/waylandpp.hash
Normal file
@@ -0,0 +1,4 @@
|
||||
# Locally computed
|
||||
sha256 ebd4a8447bb65f288cad0e04538f6ec704e155213fc2b9cc1a851534c70aacac waylandpp-0.2.3.tar.gz
|
||||
sha256 49aa6d728fd13226952c9e3a5a9cae46379b2a501010064760172b5ce7cd94bb LICENSE
|
||||
sha256 8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903 scanner/gpl-3.0.txt
|
||||
27
bsp/buildroot/package/waylandpp/waylandpp.mk
Normal file
27
bsp/buildroot/package/waylandpp/waylandpp.mk
Normal file
@@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# waylandpp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WAYLANDPP_VERSION = 0.2.3
|
||||
WAYLANDPP_SITE = $(call github,NilsBrause,waylandpp,$(WAYLANDPP_VERSION))
|
||||
WAYLANDPP_LICENSE = MIT, GPL-3.0+ (wayland_scanner)
|
||||
WAYLANDPP_LICENSE_FILES = LICENSE scanner/gpl-3.0.txt
|
||||
WAYLANDPP_INSTALL_STAGING = YES
|
||||
HOST_WAYLANDPP_DEPENDENCIES = host-pkgconf host-wayland
|
||||
WAYLANDPP_DEPENDENCIES = libegl host-pkgconf wayland host-waylandpp
|
||||
|
||||
# host variant of wayland-scanner++ is needed for building the target
|
||||
# package
|
||||
HOST_WAYLANDPP_CONF_OPTS = \
|
||||
-DBUILD_LIBRARIES=OFF \
|
||||
-DBUILD_SCANNER=ON
|
||||
|
||||
WAYLANDPP_CONF_OPTS = \
|
||||
-DBUILD_LIBRARIES=ON \
|
||||
-DBUILD_SCANNER=OFF \
|
||||
-DWAYLAND_SCANNERPP=$(HOST_DIR)/bin/wayland-scanner++
|
||||
|
||||
$(eval $(cmake-package))
|
||||
$(eval $(host-cmake-package))
|
||||
Reference in New Issue
Block a user