Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support
@ 2014-11-11 23:42 Gustavo Zacarias
  2014-11-11 23:42 ` [Buildroot] [PATCH 2/2] bmon: uclinux is also linux Gustavo Zacarias
  2014-11-12  7:59 ` [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2014-11-11 23:42 UTC (permalink / raw)
  To: buildroot

We're not handling it (copying it) for external toolchains and it's
causing build failures. Fixes:
http://autobuild.buildroot.net/results/9d1/9d1e414850307487d65435216ae0ddee56d1098f/
http://autobuild.buildroot.net/results/f08/f08c8e5514e054397428677f08fadac5386189dc/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libmemcached/libmemcached.mk | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/libmemcached/libmemcached.mk b/package/libmemcached/libmemcached.mk
index 5ba2044..daeb283 100644
--- a/package/libmemcached/libmemcached.mk
+++ b/package/libmemcached/libmemcached.mk
@@ -7,7 +7,9 @@
 LIBMEMCACHED_VERSION_MAJOR = 1.0
 LIBMEMCACHED_VERSION = $(LIBMEMCACHED_VERSION_MAJOR).18
 LIBMEMCACHED_SITE = http://launchpad.net/libmemcached/$(LIBMEMCACHED_VERSION_MAJOR)/$(LIBMEMCACHED_VERSION)/+download
-LIBMEMCACHED_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
+LIBMEMCACHED_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99' \
+	ax_cv_check_cflags__Werror__fmudflapth=no \
+	ax_cv_check_cxxflags__Werror__fmudflapth=no
 LIBMEMCACHED_CONF_OPTS = --disable-dtrace
 LIBMEMCACHED_INSTALL_STAGING = YES
 LIBMEMCACHED_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBEVENT),libevent)
-- 
2.0.4

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

* [Buildroot] [PATCH 2/2] bmon: uclinux is also linux
  2014-11-11 23:42 [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support Gustavo Zacarias
@ 2014-11-11 23:42 ` Gustavo Zacarias
  2014-11-12  7:59   ` Peter Korsgaard
  2014-11-12  7:59 ` [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Gustavo Zacarias @ 2014-11-11 23:42 UTC (permalink / raw)
  To: buildroot

Fixes:
http://autobuild.buildroot.net/results/4d0/4d0c3c8b68b37f532378f19041379cb5c5798950/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../bmon/0001-build-uclinux-is-also-linux.patch    | 25 ++++++++++++++++++++++
 package/bmon/bmon.mk                               |  2 ++
 2 files changed, 27 insertions(+)
 create mode 100644 package/bmon/0001-build-uclinux-is-also-linux.patch

diff --git a/package/bmon/0001-build-uclinux-is-also-linux.patch b/package/bmon/0001-build-uclinux-is-also-linux.patch
new file mode 100644
index 0000000..18f517e
--- /dev/null
+++ b/package/bmon/0001-build-uclinux-is-also-linux.patch
@@ -0,0 +1,25 @@
+From adcf320db5cc2844209d001f9484b0ff0cab4e0b Mon Sep 17 00:00:00 2001
+From: Gustavo Zacarias <gustavo@zacarias.com.ar>
+Date: Tue, 11 Nov 2014 20:22:37 -0300
+Subject: [PATCH] build: uclinux is also linux
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+---
+Status: pull request in github
+
+diff --git a/configure.ac b/configure.ac
+index 3059e52..10388fd 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -70,7 +70,7 @@ fi
+ PKG_CHECK_MODULES([CONFUSE], [libconfuse], [], AC_MSG_ERROR([requires libconfuse]))
+ 
+ case ${target_os} in
+-    linux*)
++    linux*|uclinux*)
+         PKG_CHECK_MODULES([LIBNL], [libnl-3.0], [], AC_MSG_ERROR([requires libnl3-dev]))
+         PKG_CHECK_MODULES([LIBNL_ROUTE], [libnl-route-3.0], [], AC_MSG_ERROR([requires libnl3-route]))
+     ;;
+-- 
+2.0.4
+
diff --git a/package/bmon/bmon.mk b/package/bmon/bmon.mk
index d440156..99f074b 100644
--- a/package/bmon/bmon.mk
+++ b/package/bmon/bmon.mk
@@ -9,6 +9,8 @@ BMON_SITE = https://github.com/tgraf/bmon/releases/download/v$(BMON_VERSION)/
 BMON_DEPENDENCIES = host-pkgconf libconfuse libnl ncurses
 BMON_LICENSE = BSD-2c
 BMON_LICENSE_FILES = LICENSE
+# For 0001-build-uclinux-is-also-linux.patch
+BMON_AUTORECONF = YES
 
 # link dynamically unless explicitly requested otherwise
 ifeq ($(BR2_PREFER_STATIC_LIB),)
-- 
2.0.4

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

* [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support
  2014-11-11 23:42 [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support Gustavo Zacarias
  2014-11-11 23:42 ` [Buildroot] [PATCH 2/2] bmon: uclinux is also linux Gustavo Zacarias
@ 2014-11-12  7:59 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2014-11-12  7:59 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > We're not handling it (copying it) for external toolchains and it's
 > causing build failures. Fixes:
 > http://autobuild.buildroot.net/results/9d1/9d1e414850307487d65435216ae0ddee56d1098f/
 > http://autobuild.buildroot.net/results/f08/f08c8e5514e054397428677f08fadac5386189dc/

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] bmon: uclinux is also linux
  2014-11-11 23:42 ` [Buildroot] [PATCH 2/2] bmon: uclinux is also linux Gustavo Zacarias
@ 2014-11-12  7:59   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2014-11-12  7:59 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Fixes:
 > http://autobuild.buildroot.net/results/4d0/4d0c3c8b68b37f532378f19041379cb5c5798950/

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2014-11-12  7:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-11 23:42 [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support Gustavo Zacarias
2014-11-11 23:42 ` [Buildroot] [PATCH 2/2] bmon: uclinux is also linux Gustavo Zacarias
2014-11-12  7:59   ` Peter Korsgaard
2014-11-12  7:59 ` [Buildroot] [PATCH 1/2] libmemcached: disable libmudflapth support Peter Korsgaard

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