Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue
@ 2015-07-31 20:25 Bernd Kuhls
  2015-07-31 20:25 ` [Buildroot] [PATCH 2/2] package/x11r7/xdriver_xf86-input-synaptics: depends on libevdev Bernd Kuhls
  2015-08-01  8:17 ` [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue Thomas Petazzoni
  0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2015-07-31 20:25 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/76f/76f838b2b33311897f3c2ce82a65f3b73af2c046/

Propagate reverse dependency to janus-gateway. I did not propagate the
reverse dependency to kodi, ola and systemd because they are not
available for nios.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/janus-gateway/Config.in | 4 ++++
 package/libmicrohttpd/Config.in | 5 +++++
 2 files changed, 9 insertions(+)

diff --git a/package/janus-gateway/Config.in b/package/janus-gateway/Config.in
index 035ee6c..cafad94 100644
--- a/package/janus-gateway/Config.in
+++ b/package/janus-gateway/Config.in
@@ -11,6 +11,8 @@ config BR2_PACKAGE_JANUS_GATEWAY
 	depends on BR2_USE_WCHAR # libnice -> libglib2
 	depends on BR2_USE_MMU # libnice
 	depends on !BR2_STATIC_LIBS # dlopen
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305 # libmicrohttpd
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405 # libmicrohttpd
 	help
 	  Janus is an open source, general purpose, WebRTC gateway
 	  designed and developed by Meetecho.
@@ -20,3 +22,5 @@ config BR2_PACKAGE_JANUS_GATEWAY
 comment "janus-gateway needs a toolchain w/ dynamic library, threads, wchar"
 	depends on BR2_USE_MMU
 	depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
diff --git a/package/libmicrohttpd/Config.in b/package/libmicrohttpd/Config.in
index ec0b715..d9e6493 100644
--- a/package/libmicrohttpd/Config.in
+++ b/package/libmicrohttpd/Config.in
@@ -1,6 +1,9 @@
 config BR2_PACKAGE_LIBMICROHTTPD
 	bool "libmicrohttpd"
 	depends on BR2_TOOLCHAIN_HAS_THREADS
+	# Triggers the _gp link issue
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
 	help
 	  GNU libmicrohttpd is a small C library that makes it easy to
 	  run an HTTP server as part of another application.
@@ -24,3 +27,5 @@ endif
 
 comment "libmicrohttpd needs a toolchain w/ threads"
 	depends on !BR2_TOOLCHAIN_HAS_THREADS
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305
+	depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
-- 
2.1.4

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

* [Buildroot] [PATCH 2/2] package/x11r7/xdriver_xf86-input-synaptics: depends on libevdev
  2015-07-31 20:25 [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue Bernd Kuhls
@ 2015-07-31 20:25 ` Bernd Kuhls
  2015-08-06  7:02   ` Thomas Petazzoni
  2015-08-01  8:17 ` [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue Thomas Petazzoni
  1 sibling, 1 reply; 4+ messages in thread
From: Bernd Kuhls @ 2015-07-31 20:25 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/05e/05ecfaf591e85a20071875ecd18068762193defa/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/x11r7/xdriver_xf86-input-synaptics/Config.in                    | 1 +
 .../x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk  | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/x11r7/xdriver_xf86-input-synaptics/Config.in b/package/x11r7/xdriver_xf86-input-synaptics/Config.in
index 6b5e5b6..ffe1a2a 100644
--- a/package/x11r7/xdriver_xf86-input-synaptics/Config.in
+++ b/package/x11r7/xdriver_xf86-input-synaptics/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_XDRIVER_XF86_INPUT_SYNAPTICS
 	bool "xf86-input-synaptics"
+	select BR2_PACKAGE_LIBEVDEV
 	select BR2_PACKAGE_XPROTO_INPUTPROTO
 	select BR2_PACKAGE_XPROTO_RANDRPROTO
 	select BR2_PACKAGE_XPROTO_XPROTO
diff --git a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
index f180405..28663d1 100644
--- a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
+++ b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
@@ -9,6 +9,6 @@ XDRIVER_XF86_INPUT_SYNAPTICS_SOURCE = xf86-input-synaptics-$(XDRIVER_XF86_INPUT_
 XDRIVER_XF86_INPUT_SYNAPTICS_SITE = http://xorg.freedesktop.org/releases/individual/driver
 XDRIVER_XF86_INPUT_SYNAPTICS_LICENSE = MIT
 XDRIVER_XF86_INPUT_SYNAPTICS_LICENSE_FILES = COPYING
-XDRIVER_XF86_INPUT_SYNAPTICS_DEPENDENCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto mtdev
+XDRIVER_XF86_INPUT_SYNAPTICS_DEPENDENCIES = libevdev xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto mtdev
 
 $(eval $(autotools-package))
-- 
2.1.4

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

* [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue
  2015-07-31 20:25 [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue Bernd Kuhls
  2015-07-31 20:25 ` [Buildroot] [PATCH 2/2] package/x11r7/xdriver_xf86-input-synaptics: depends on libevdev Bernd Kuhls
@ 2015-08-01  8:17 ` Thomas Petazzoni
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-08-01  8:17 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Fri, 31 Jul 2015 22:25:08 +0200, Bernd Kuhls wrote:
> Fixes
> http://autobuild.buildroot.net/results/76f/76f838b2b33311897f3c2ce82a65f3b73af2c046/
> 
> Propagate reverse dependency to janus-gateway. I did not propagate the
> reverse dependency to kodi, ola and systemd because they are not
> available for nios.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/janus-gateway/Config.in | 4 ++++
>  package/libmicrohttpd/Config.in | 5 +++++
>  2 files changed, 9 insertions(+)

Applied, thanks.

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

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

* [Buildroot] [PATCH 2/2] package/x11r7/xdriver_xf86-input-synaptics: depends on libevdev
  2015-07-31 20:25 ` [Buildroot] [PATCH 2/2] package/x11r7/xdriver_xf86-input-synaptics: depends on libevdev Bernd Kuhls
@ 2015-08-06  7:02   ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-08-06  7:02 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Fri, 31 Jul 2015 22:25:09 +0200, Bernd Kuhls wrote:
> Fixes
> http://autobuild.buildroot.net/results/05e/05ecfaf591e85a20071875ecd18068762193defa/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/x11r7/xdriver_xf86-input-synaptics/Config.in                    | 1 +
>  .../x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk  | 2 +-
>  2 files changed, 2 insertions(+), 1 deletion(-)

Applied, thanks.

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

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

end of thread, other threads:[~2015-08-06  7:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-31 20:25 [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue Bernd Kuhls
2015-07-31 20:25 ` [Buildroot] [PATCH 2/2] package/x11r7/xdriver_xf86-input-synaptics: depends on libevdev Bernd Kuhls
2015-08-06  7:02   ` Thomas Petazzoni
2015-08-01  8:17 ` [Buildroot] [PATCH 1/2] package/libmicrohttpd: mark as broken on Nios II, infamous _gp issue Thomas Petazzoni

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