diff options
Diffstat (limited to 'package/apr')
-rw-r--r-- | package/apr/Config.in | 1 | ||||
-rw-r--r-- | package/apr/apr.mk | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/package/apr/Config.in b/package/apr/Config.in index ed319ed058..e06d2546a8 100644 --- a/package/apr/Config.in +++ b/package/apr/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_APR bool "apr" # apr really needs shared library support depends on !BR2_PREFER_STATIC_LIB + depends on BR2_USE_MMU # fork() in apr_proc_fork() help The mission of the Apache Portable Runtime (APR) project is to create and maintain software libraries that provide a predictable and diff --git a/package/apr/apr.mk b/package/apr/apr.mk index 4da42c5b9f..1a4c0e261b 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 |