diff options
| author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2014-10-05 19:38:50 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-26 22:18:25 +0100 |
| commit | 58cafc149fdef0113f75d14bbbedc870f3d9f021 (patch) | |
| tree | 3aea0867a7f32493d71cf8966c5ac2e91662f7ea | |
| parent | aac552e61fb7ff8cbae3d615dcf17e9335996e00 (diff) | |
| download | buildroot-58cafc149fdef0113f75d14bbbedc870f3d9f021.tar.gz buildroot-58cafc149fdef0113f75d14bbbedc870f3d9f021.zip | |
package/apr-util: Add expat hard-dependency
When expat is missing, apr-util compiles its own expat
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| -rw-r--r-- | package/apr-util/Config.in | 1 | ||||
| -rw-r--r-- | package/apr-util/apr-util.mk | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/apr-util/Config.in b/package/apr-util/Config.in index fcef693c74..6a7c00c218 100644 --- a/package/apr-util/Config.in +++ b/package/apr-util/Config.in @@ -5,6 +5,7 @@ config BR2_PACKAGE_APR_UTIL select BR2_PACKAGE_NEON select BR2_PACKAGE_NEON_ZLIB select BR2_PACKAGE_ZLIB + select BR2_PACKAGE_EXPAT # apr really needs shared library support depends on !BR2_PREFER_STATIC_LIB depends on BR2_USE_MMU # apr diff --git a/package/apr-util/apr-util.mk b/package/apr-util/apr-util.mk index bdb3004c54..c8c75a2a1d 100644 --- a/package/apr-util/apr-util.mk +++ b/package/apr-util/apr-util.mk @@ -9,7 +9,7 @@ APR_UTIL_SITE = http://archive.apache.org/dist/apr APR_UTIL_LICENSE = Apache-2.0 APR_UTIL_LICENSE_FILES = LICENSE APR_UTIL_INSTALL_STAGING = YES -APR_UTIL_DEPENDENCIES = apr sqlite neon zlib +APR_UTIL_DEPENDENCIES = apr expat sqlite neon zlib APR_UTIL_CONF_OPTS = \ --with-apr=$(STAGING_DIR)/usr/bin/apr-1-config APR_UTIL_CONFIG_SCRIPTS = apu-1-config |

