Merge pull request #3684 from MilhouseVH/le92_shadertoys_pi4

packages: fix shadertoys when building with RPi4 [backport]
This commit is contained in:
CvH 2019-07-11 22:12:33 +02:00 committed by GitHub
commit e25aee7b70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 4 deletions

View File

@ -3,9 +3,9 @@
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="screensaver.shadertoy" PKG_NAME="screensaver.shadertoy"
PKG_VERSION="0290c8efc430b3b331a034eb3eb79f7cfff6c01d" PKG_VERSION="81b2758c8037ccc4e85f13b3a48e0622e9316c94"
PKG_SHA256="970eed3e63db75043fafe5a172bcd218bba3b5ae5f3b418206da00865ccb4647" PKG_SHA256="6d07eb8155a73786860b1d7e90b1c8b82bdd6e0cde970ce00a4d5ca5189b0e30"
PKG_REV="2" PKG_REV="3"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="https://github.com/popcornmix/screensaver.shadertoy" PKG_SITE="https://github.com/popcornmix/screensaver.shadertoy"

View File

@ -5,7 +5,7 @@
PKG_NAME="visualization.shadertoy" PKG_NAME="visualization.shadertoy"
PKG_VERSION="1.1.10-Leia" PKG_VERSION="1.1.10-Leia"
PKG_SHA256="342b89a6d9ec1175023d085f540358b5ddc427bb73e172f155d61e77e87ee56e" PKG_SHA256="342b89a6d9ec1175023d085f540358b5ddc427bb73e172f155d61e77e87ee56e"
PKG_REV="1" PKG_REV="2"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="https://github.com/xbmc/visualization.shadertoy" PKG_SITE="https://github.com/xbmc/visualization.shadertoy"

View File

@ -0,0 +1,22 @@
From 4b5990098c71ff0a5e636e75485f3bf82c07eb42 Mon Sep 17 00:00:00 2001
From: popcornmix <popcornmix@gmail.com>
Date: Tue, 2 Jul 2019 14:40:57 +0100
Subject: [PATCH] Remove unused EGL headers files
---
src/main.cpp | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/main.cpp b/src/main.cpp
index 918046b..d921054 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -22,8 +22,6 @@
#include "xbmc_vis_types.h"
#if defined(HAS_GLES)
#include <GLES2/gl2.h>
-#include <EGL/egl.h>
-#include <EGL/eglext.h>
#include <assert.h>
#define TO_STRING(...) #__VA_ARGS__
#else