diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-11-27 12:53:04 (GMT) |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-28 13:41:18 (GMT) |
commit | b7eb4b3619d35abc7f14345046d58d6f48302c09 (patch) | |
tree | af30a5d1dbab4186f00e4cec3dda7ba39871f27e | |
parent | a6fa695639b06b475565980e0c99f9f261786e81 (diff) | |
download | buildroot-b7eb4b3619d35abc7f14345046d58d6f48302c09.tar.gz buildroot-b7eb4b3619d35abc7f14345046d58d6f48302c09.tar.bz2 |
apr: fix threading lib detection
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>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/apr/apr.mk | 5 |
1 files changed, 5 insertions, 0 deletions
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 |