Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1
@ 2015-04-22 21:23 Bernd Kuhls
  2015-04-22 21:23 ` [Buildroot] [PATCH 2/2] package/vlc: bump version to 2.2.1 Bernd Kuhls
  2015-04-22 21:47 ` [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1 Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2015-04-22 21:23 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/0be/0bee8646c2dd7dd2c201ee2986f3e802277314a5/
http://autobuild.buildroot.net/results/64a/64a1a6d39b72b9dec4231b9f28ca14b38989d7df/
http://autobuild.buildroot.net/results/b6b/b6b66e0b24d985462ca8dbefedd740453ca42293/
http://autobuild.buildroot.net/results/497/4976f5e9dc53e6f9f29d9d45f0fb9bd42c7ab1ea/

and many others

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/vlc/vlc.mk |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk
index e77d4fa..b937b79 100644
--- a/package/vlc/vlc.mk
+++ b/package/vlc/vlc.mk
@@ -24,6 +24,7 @@ endef
 VLC_POST_PATCH_HOOKS += VLC_OVERRIDE_PKG_M4
 
 VLC_CONF_OPTS += \
+	--disable-gles1 \
 	--disable-a52 \
 	--disable-shout \
 	--disable-twolame \
@@ -137,10 +138,10 @@ VLC_DEPENDENCIES += libgl
 endif
 
 ifeq ($(BR2_PACKAGE_HAS_LIBGLES),y)
-VLC_CONF_OPTS += --enable-gles1 --enable-gles2
+VLC_CONF_OPTS += --enable-gles2
 VLC_DEPENDENCIES += libgles
 else
-VLC_CONF_OPTS += --disable-gles1 --disable-gles2
+VLC_CONF_OPTS += --disable-gles2
 endif
 
 ifeq ($(BR2_PACKAGE_OPUS),y)
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 2/2] package/vlc: bump version to 2.2.1
  2015-04-22 21:23 [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1 Bernd Kuhls
@ 2015-04-22 21:23 ` Bernd Kuhls
  2015-04-22 21:47 ` [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1 Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Bernd Kuhls @ 2015-04-22 21:23 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/vlc/vlc.hash |    4 ++--
 package/vlc/vlc.mk   |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/vlc/vlc.hash b/package/vlc/vlc.hash
index 7b84cef..ce124f3 100644
--- a/package/vlc/vlc.hash
+++ b/package/vlc/vlc.hash
@@ -1,2 +1,2 @@
-# From http://download.videolan.org/pub/videolan/vlc/2.2.0/vlc-2.2.0.tar.xz.sha256
-sha256  5e0a27e248c47da723a696420aca3a4dd15cc3ed8cc81618d3f1dc8661b25517  vlc-2.2.0.tar.xz
+# From http://download.videolan.org/pub/videolan/vlc/2.2.1/vlc-2.2.1.tar.xz.sha256
+sha256	543d9d7e378ec0fa1ee2e7f7f5acf8c456c7d0ecc32037171523197ef3cf1fcb	vlc-2.2.1.tar.xz
diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk
index b937b79..ab9aaae 100644
--- a/package/vlc/vlc.mk
+++ b/package/vlc/vlc.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-VLC_VERSION = 2.2.0
+VLC_VERSION = 2.2.1
 VLC_SITE = http://get.videolan.org/vlc/$(VLC_VERSION)
 VLC_SOURCE = vlc-$(VLC_VERSION).tar.xz
 VLC_LICENSE = GPLv2+ LGPLv2.1+
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1
  2015-04-22 21:23 [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1 Bernd Kuhls
  2015-04-22 21:23 ` [Buildroot] [PATCH 2/2] package/vlc: bump version to 2.2.1 Bernd Kuhls
@ 2015-04-22 21:47 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-04-22 21:47 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Wed, 22 Apr 2015 23:23:28 +0200, Bernd Kuhls wrote:
> Fixes
> http://autobuild.buildroot.net/results/0be/0bee8646c2dd7dd2c201ee2986f3e802277314a5/
> http://autobuild.buildroot.net/results/64a/64a1a6d39b72b9dec4231b9f28ca14b38989d7df/
> http://autobuild.buildroot.net/results/b6b/b6b66e0b24d985462ca8dbefedd740453ca42293/
> http://autobuild.buildroot.net/results/497/4976f5e9dc53e6f9f29d9d45f0fb9bd42c7ab1ea/
> 
> and many others
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/vlc/vlc.mk |    5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)

Both patches applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-22 21:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-22 21:23 [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1 Bernd Kuhls
2015-04-22 21:23 ` [Buildroot] [PATCH 2/2] package/vlc: bump version to 2.2.1 Bernd Kuhls
2015-04-22 21:47 ` [Buildroot] [PATCH 1/2] package/vlc: use only glesv2, not glesv1 Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox