diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2015-05-03 23:15:05 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-05-03 23:15:05 +0200 |
commit | a9cfcfc3673a16b94e303319199aa3505800102d (patch) | |
tree | 26d3af295cc94d068fbc896571d89b0a654b05a9 | |
parent | 6e55cd5d604b51a5f6658d4bf2f602a360d9c887 (diff) | |
download | buildroot-a9cfcfc3673a16b94e303319199aa3505800102d.tar.gz buildroot-a9cfcfc3673a16b94e303319199aa3505800102d.zip |
linknx: needs argp-standalone on uClibc
Fixes:
http://autobuild.buildroot.net/results/b27/b27c4b0822494fb393a5e28b8febd063222bd83f/
http://autobuild.buildroot.net/results/9db/9db2cc9fe6ddfda5663251872fdba00998020fce/
http://autobuild.buildroot.net/results/465/465328d0aa6b5f4b36903e2a4bc41d4ddd343db8/
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/linknx/Config.in | 1 | ||||
-rw-r--r-- | package/linknx/linknx.mk | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/package/linknx/Config.in b/package/linknx/Config.in index 6a26c207d5..9982f3159d 100644 --- a/package/linknx/Config.in +++ b/package/linknx/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_LINKNX bool "linknx" select BR2_PACKAGE_LIBPTHSEM + select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_MMU # libpthsem help diff --git a/package/linknx/linknx.mk b/package/linknx/linknx.mk index a7e6adb22c..7ecd947a7f 100644 --- a/package/linknx/linknx.mk +++ b/package/linknx/linknx.mk @@ -15,7 +15,7 @@ LINKNX_CONF_OPTS = \ --with-pth=$(STAGING_DIR)/usr \ --disable-smtp -LINKNX_DEPENDENCIES = libpthsem +LINKNX_DEPENDENCIES = libpthsem $(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone) ifeq ($(BR2_PACKAGE_MYSQL),y) LINKNX_CONF_OPTS += --with-mysql=$(STAGING_DIR)/usr/bin/mysql_config |