mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
83f9f0b881
LIBGSASL_CONF_OPTS is wrongly overridden in a conditional since commit
c4ff6bf227
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
28 lines
785 B
Makefile
28 lines
785 B
Makefile
################################################################################
|
|
#
|
|
# libgsasl
|
|
#
|
|
################################################################################
|
|
|
|
LIBGSASL_VERSION = 1.10.0
|
|
LIBGSASL_SITE = $(BR2_GNU_MIRROR)/gsasl
|
|
LIBGSASL_LICENSE = LGPL-2.1+ (library), GPL-3.0+ (programs)
|
|
LIBGSASL_LICENSE_FILES = README COPYING.LIB COPYING
|
|
LIBGSASL_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
LIBGSASL_CONF_OPTS += --with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
|
LIBGSASL_DEPENDENCIES += libgcrypt
|
|
else
|
|
LIBGSASL_CONF_OPTS += --without-libgcrypt
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBIDN),y)
|
|
LIBGSASL_CONF_OPTS += --with-libidn-prefix=$(STAGING_DIR)/usr
|
|
LIBGSASL_DEPENDENCIES += libidn
|
|
else
|
|
LIBGSASL_CONF_OPTS += --without-stringprep
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|