All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] apr: fix threading lib detection
@ 2013-11-27 12:53 Gustavo Zacarias
  2013-11-28 13:41 ` Peter Korsgaard
  0 siblings, 1 reply; 2+ messages in thread
From: Gustavo Zacarias @ 2013-11-27 12:53 UTC (permalink / raw)
  To: buildroot

apr's configure doesn't try to guess which library is needed for
threading when cross-compiling hence this is never reflected in
apr-1-config, leading to a build failure such as:
http://autobuild.buildroot.net/results/035/035a00de0a56be00559767ba822a396ddc18a9fb/

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

diff --git a/package/apr/apr.mk b/package/apr/apr.mk
index 4da42c5..1a4c0e2 100644
--- a/package/apr/apr.mk
+++ b/package/apr/apr.mk
@@ -19,6 +19,11 @@ APR_CONF_ENV = \
 	apr_cv_mutex_recursive=yes
 APR_CONFIG_SCRIPTS = apr-1-config
 
+# Doesn't even try to guess when cross compiling
+ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
+APR_CONF_ENV += apr_cv_pthreads_lib="-lpthread"
+endif
+
 define APR_CLEANUP_UNNEEDED_FILES
 	$(RM) -rf $(TARGET_DIR)/usr/build-1/
 endef
-- 
1.8.3.2

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

* [Buildroot] [PATCH] apr: fix threading lib detection
  2013-11-27 12:53 [Buildroot] [PATCH] apr: fix threading lib detection Gustavo Zacarias
@ 2013-11-28 13:41 ` Peter Korsgaard
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2013-11-28 13:41 UTC (permalink / raw)
  To: buildroot

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

 > apr's configure doesn't try to guess which library is needed for
 > threading when cross-compiling hence this is never reflected in
 > apr-1-config, leading to a build failure such as:
 > http://autobuild.buildroot.net/results/035/035a00de0a56be00559767ba822a396ddc18a9fb/

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

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-11-28 13:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-27 12:53 [Buildroot] [PATCH] apr: fix threading lib detection Gustavo Zacarias
2013-11-28 13:41 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.