337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
701 B
Makefile
23 lines
701 B
Makefile
################################################################################
|
|
#
|
|
# libgsasl
|
|
#
|
|
################################################################################
|
|
|
|
LIBGSASL_VERSION = 1.8.0
|
|
LIBGSASL_SITE = $(BR2_GNU_MIRROR)/gsasl
|
|
LIBGSASL_LICENSE = LGPLv2.1+ (library), GPL-3.0+ (programs)
|
|
LIBGSASL_LICENSE_FILES = README COPYING.LIB COPYING
|
|
LIBGSASL_INSTALL_STAGING = YES
|
|
# It doesn't seem to build with our libgcrypt so better be safe
|
|
LIBGSASL_CONF_OPTS = --without-libgcrypt
|
|
|
|
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))
|