dac714e19c
Added hashes provided by upstream, updated license hash due to various upstream commits: https://git.savannah.gnu.org/gitweb/?p=gsasl.git;a=history;f=README Release notes: https://lists.gnu.org/archive/html/help-gsasl/2021-01/msg00007.html Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
783 B
Makefile
28 lines
783 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))
|