diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-08-19 01:30:50 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-20 23:32:50 +0200 |
commit | 031f5c04d9de5a21d3bc49f3849af3e6593fa1a8 (patch) | |
tree | 6079c8d5b291f0dfd0391f323dc71e9b7dffdcc5 | |
parent | 70ff2eec598070f3c8221a69e41a7273ebc5ce66 (diff) | |
download | buildroot-031f5c04d9de5a21d3bc49f3849af3e6593fa1a8.tar.gz buildroot-031f5c04d9de5a21d3bc49f3849af3e6593fa1a8.zip |
package/botan: add optional dependency to boost
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/botan/botan.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/botan/botan.mk b/package/botan/botan.mk index 21a66adff1..e25bf5b52f 100644 --- a/package/botan/botan.mk +++ b/package/botan/botan.mk @@ -40,6 +40,11 @@ else BOTAN_CONF_OPTS += --without-stack-protector endif +ifeq ($(BR2_PACKAGE_BOOST),y) +BOTAN_DEPENDENCIES += boost +BOTAN_CONF_OPTS += --with-boost +endif + ifeq ($(BR2_PACKAGE_BZIP2),y) BOTAN_DEPENDENCIES += bzip2 BOTAN_CONF_OPTS += --with-bzip2 |