2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2011-07-11 15:34:27 +02:00
|
|
|
#
|
|
|
|
# gnutls
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2011-07-11 15:34:27 +02:00
|
|
|
|
2013-12-18 19:20:02 +01:00
|
|
|
GNUTLS_VERSION_MAJOR = 3.2
|
2013-12-23 12:49:10 +01:00
|
|
|
GNUTLS_VERSION = $(GNUTLS_VERSION_MAJOR).8
|
2012-12-28 10:47:17 +01:00
|
|
|
GNUTLS_SOURCE = gnutls-$(GNUTLS_VERSION).tar.xz
|
2013-12-18 19:20:02 +01:00
|
|
|
GNUTLS_SITE = ftp://ftp.gnutls.org/gcrypt/gnutls/v$(GNUTLS_VERSION_MAJOR)
|
2013-12-26 17:13:56 +01:00
|
|
|
# gettime patch
|
|
|
|
GNUTLS_AUTORECONF = YES
|
2013-06-02 16:50:53 +02:00
|
|
|
GNUTLS_LICENSE = GPLv3+ LGPLv2.1+
|
2012-12-29 02:52:36 +01:00
|
|
|
GNUTLS_LICENSE_FILES = COPYING COPYING.LESSER
|
2013-06-02 16:50:53 +02:00
|
|
|
GNUTLS_DEPENDENCIES = host-pkgconf nettle pcre \
|
|
|
|
$(if $(BR2_PACKAGE_P11_KIT),p11-kit) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBIDN),libidn) \
|
|
|
|
$(if $(BR2_PACKAGE_LIBTASN1),libtasn1) \
|
|
|
|
$(if $(BR2_PACKAGE_ZLIB),zlib)
|
2013-12-25 17:14:44 +01:00
|
|
|
GNUTLS_CONF_OPT = \
|
|
|
|
--with-libnettle-prefix=$(STAGING_DIR)/usr \
|
|
|
|
--disable-rpath \
|
|
|
|
--disable-doc \
|
|
|
|
--disable-guile \
|
|
|
|
--enable-local-libopts
|
2012-12-28 10:47:17 +01:00
|
|
|
GNUTLS_CONF_ENV = gl_cv_socket_ipv6=$(if $(BR2_INET_IPV6),yes,no) \
|
2012-12-26 04:55:48 +01:00
|
|
|
ac_cv_header_wchar_h=$(if $(BR2_USE_WCHAR),yes,no) \
|
|
|
|
gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no) \
|
2013-06-02 16:50:53 +02:00
|
|
|
gt_cv_c_wint_t=$(if $(BR2_USE_WCHAR),yes,no) \
|
|
|
|
gl_cv_func_gettimeofday_clobber=no
|
2011-07-11 15:34:27 +02:00
|
|
|
GNUTLS_INSTALL_STAGING = YES
|
|
|
|
|
2013-01-02 05:50:09 +01:00
|
|
|
# libpthread autodetection poisons the linkpath
|
|
|
|
GNUTLS_CONF_OPT += $(if $(BR2_TOOLCHAIN_HAS_THREADS),--with-libpthread-prefix=$(STAGING_DIR)/usr)
|
|
|
|
|
2013-06-02 16:50:53 +02:00
|
|
|
# gnutls needs libregex, but pcre can be used too
|
|
|
|
# The check isn't cross-compile friendly
|
|
|
|
define GNUTLS_LIBREGEX_CHECK_FIX
|
|
|
|
$(SED) 's/libopts_cv_with_libregex=no/libopts_cv_with_libregex=yes/g;'\
|
|
|
|
$(@D)/configure
|
|
|
|
endef
|
|
|
|
GNUTLS_PRE_CONFIGURE_HOOKS += GNUTLS_LIBREGEX_CHECK_FIX
|
|
|
|
GNUTLS_CONF_OPT += --with-regex-header=pcreposix.h \
|
|
|
|
--with-libregex-cflags="`$(PKG_CONFIG_HOST_BINARY) libpcreposix --cflags`" \
|
|
|
|
--with-libregex-libs="`$(PKG_CONFIG_HOST_BINARY) libpcreposix --libs`"
|
|
|
|
|
2013-06-05 06:58:17 +02:00
|
|
|
# Consider crywrap as part of tools because it needs WCHAR, and it's so too
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS_TOOLS),)
|
|
|
|
GNUTLS_CONF_OPT += --disable-crywrap
|
|
|
|
endif
|
|
|
|
|
2013-01-02 05:50:10 +01:00
|
|
|
# libidn support for nommu must exclude the crywrap wrapper (uses fork)
|
|
|
|
GNUTLS_CONF_OPT += $(if $(BR2_USE_MMU),,--disable-crywrap)
|
|
|
|
|
2013-04-27 12:09:48 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_CRYPTODEV_LINUX),y)
|
|
|
|
GNUTLS_CONF_OPT += --enable-cryptodev
|
|
|
|
GNUTLS_DEPENDENCIES += cryptodev-linux
|
|
|
|
endif
|
|
|
|
|
2012-12-28 10:47:17 +01:00
|
|
|
# Some examples in doc/examples use wchar
|
|
|
|
define GNUTLS_DISABLE_DOCS
|
|
|
|
$(SED) 's/ doc / /' $(@D)/Makefile.in
|
|
|
|
endef
|
|
|
|
|
|
|
|
define GNUTLS_DISABLE_TOOLS
|
|
|
|
$(SED) 's/\$$(PROGRAMS)//' $(@D)/src/Makefile.in
|
|
|
|
$(SED) 's/) install-exec-am/)/' $(@D)/src/Makefile.in
|
|
|
|
endef
|
|
|
|
|
|
|
|
GNUTLS_POST_PATCH_HOOKS += GNUTLS_DISABLE_DOCS
|
|
|
|
GNUTLS_POST_PATCH_HOOKS += $(if $(BR2_PACKAGE_GNUTLS_TOOLS),,GNUTLS_DISABLE_TOOLS)
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|