diff options
author | Daniel Nicoletti <dantti12@gmail.com> | 2018-08-01 08:47:38 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-08-01 14:17:11 +0200 |
commit | 36514a415d39e9876b93b5efa015382755ccd039 (patch) | |
tree | 63cebe462287438a587b4f72b551c74b64ff595c | |
parent | f0e3e978d1288d954a7d4822c425e3f844075105 (diff) | |
download | buildroot-36514a415d39e9876b93b5efa015382755ccd039.tar.gz buildroot-36514a415d39e9876b93b5efa015382755ccd039.zip |
package/cutelyst: fix build dependencies
This commit adds missing optional dependencies on libpwquality and
jemalloc.
The optional dependency on grantlee is removed, because it fails to
build, so we explicitly disable grantlee support.
http://autobuild.buildroot.net/results/ecbe25728a81f13e35a4315b64aacb8e592f5867/ (jemalloc)
http://autobuild.buildroot.net/results/84c29fc0d6212f33ff1efdf8495cbb84e4eeed65/ (grantlee)
Signed-off-by: Daniel Nicoletti <dantti12@gmail.com>
[Thomas: explicitly disable grantlee support.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/cutelyst/cutelyst.mk | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/package/cutelyst/cutelyst.mk b/package/cutelyst/cutelyst.mk index 438ac091c6..498d2d5545 100644 --- a/package/cutelyst/cutelyst.mk +++ b/package/cutelyst/cutelyst.mk @@ -13,22 +13,19 @@ CUTELYST_LICENSE_FILES = COPYING CUTELYST_DEPENDENCIES = qt5base CUTELYST_CONF_OPTS += \ - -DPLUGIN_CSRFPROTECTION=ON - -ifeq ($(BR2_PACKAGE_GRANTLEE),y) -CUTELYST_CONF_OPTS += -DPLUGIN_VIEW_GRANTLEE=ON -else -CUTELYST_CONF_OPTS += -DPLUGIN_VIEW_GRANTLEE=OFF -endif + -DPLUGIN_CSRFPROTECTION=ON \ + -DPLUGIN_VIEW_GRANTLEE=OFF ifeq ($(BR2_PACKAGE_LIBPWQUALITY),y) CUTELYST_CONF_OPTS += -DPLUGIN_VALIDATOR_PWQUALITY=ON +CUTELYST_DEPENDENCIES += libpwquality else CUTELYST_CONF_OPTS += -DPLUGIN_VALIDATOR_PWQUALITY=OFF endif ifeq ($(BR2_PACKAGE_JEMALLOC),y) CUTELYST_CONF_OPTS += -DUSE_JEMALLOC=ON +CUTELYST_DEPENDENCIES += jemalloc else CUTELYST_CONF_OPTS += -DUSE_JEMALLOC=OFF endif |