diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-05-21 23:41:16 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-22 21:55:10 +0200 |
commit | 3d1234dab8ae714ebb52fd78d075f084a410b338 (patch) | |
tree | 8bd691d58601e66bb41bc053a5d4c6a869a36078 | |
parent | 3c54b7086fc0eaddb7f04560f30bb8cc99860b25 (diff) | |
download | buildroot-3d1234dab8ae714ebb52fd78d075f084a410b338.tar.gz buildroot-3d1234dab8ae714ebb52fd78d075f084a410b338.zip |
package/c-icap: fix berkeleydb configure option
The configure option controlling berkeleydb support got its current
name in 2009: https://sourceforge.net/p/c-icap/code/322/
This patch fixes a configure warning:
configure: WARNING: unrecognized options: [...] --without-berkeleydb, [...]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/c-icap/c-icap.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/c-icap/c-icap.mk b/package/c-icap/c-icap.mk index 17f3459aba..466d08b505 100644 --- a/package/c-icap/c-icap.mk +++ b/package/c-icap/c-icap.mk @@ -29,10 +29,10 @@ C_ICAP_CONF_ENV = ac_cv_10031b_ipc_sem=yes ac_cv_fcntl=yes C_ICAP_AUTORECONF = YES ifeq ($(BR2_PACKAGE_BERKELEYDB),y) -C_ICAP_CONF_OPTS += --with-berkeleydb +C_ICAP_CONF_OPTS += --with-bdb C_ICAP_DEPENDENCIES += berkeleydb else -C_ICAP_CONF_OPTS += --without-berkeleydb +C_ICAP_CONF_OPTS += --without-bdb endif ifeq ($(BR2_PACKAGE_BZIP2),y) |