mxe/src/gnutls.mk

46 lines
1.7 KiB
Makefile
Raw Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2008-11-08 18:56:29 +00:00
PKG := gnutls
$(PKG)_WEBSITE := https://www.gnu.org/software/gnutls/
$(PKG)_DESCR := GnuTLS
2017-02-12 19:26:45 +00:00
$(PKG)_VERSION := 3.5.9
$(PKG)_CHECKSUM := 82b10f0c4ef18f4e64ad8cef5dbaf14be732f5095a41cf366b4ecb4050382951
$(PKG)_SUBDIR := gnutls-$($(PKG)_VERSION)
2014-04-08 11:00:17 +01:00
$(PKG)_FILE := gnutls-$($(PKG)_VERSION).tar.xz
2017-01-14 09:35:17 +00:00
$(PKG)_URL := http://mirrors.dotsrc.org/gnupg/gnutls/v3.5/$($(PKG)_FILE)
$(PKG)_URL_2 := ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5//$($(PKG)_FILE)
$(PKG)_DEPS := gcc gettext gmp libgnurx libidn libunistring nettle zlib
2008-11-08 18:56:29 +00:00
define $(PKG)_UPDATE
2017-01-14 09:35:17 +00:00
$(WGET) -q -O- ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/ | \
$(SED) -n 's,.*gnutls-\([1-9]\+\.[0-9]\+.[0-9]\+\)\..*,\1,p' | \
$(SORT) -V | \
2013-01-03 10:13:51 +00:00
tail -1
2008-11-08 18:56:29 +00:00
endef
define $(PKG)_BUILD
2012-01-05 10:28:27 +00:00
# AI_ADDRCONFIG referenced by src/serv.c but not provided by mingw.
2017-03-04 10:33:47 +00:00
# Value taken from https://msdn.microsoft.com/en-us/library/windows/desktop/ms737530%28v=vs.85%29.aspx
2008-11-08 18:56:29 +00:00
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--disable-rpath \
2008-11-08 18:56:29 +00:00
--disable-nls \
--disable-guile \
--disable-doc \
--disable-tests \
--enable-local-libopts \
2008-11-08 18:56:29 +00:00
--with-included-libtasn1 \
--with-libregex-libs="-lgnurx" \
--without-p11-kit \
--disable-silent-rules \
2012-09-20 12:10:23 +01:00
CPPFLAGS='-DWINVER=0x0501 -DAI_ADDRCONFIG=0x0400 -DIPV6_V6ONLY=27' \
LIBS='-lws2_32' \
ac_cv_prog_AR='$(TARGET)-ar'
2011-11-23 08:04:21 +00:00
$(MAKE) -C '$(1)' -j '$(JOBS)' install
2011-09-03 15:40:19 +01:00
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-gnutls.exe' \
2011-09-03 15:40:19 +01:00
`'$(TARGET)-pkg-config' gnutls --cflags --libs`
2008-11-08 18:56:29 +00:00
endef