c-ares version 1.14.0: Changes: android: Introduce new ares_library_init_android() call for Oreo support Bug fixes: Fix patch for CVE-2017-1000381 to not be overly aggressive win32: Preserve DNS server order returned by Windows when sorting and exclude DNS servers in legacy subnets win32: Support most recent Visual Studio 2017 gethostbyaddr should fail with ECANCELLED not ENOTFOUND when ares_cancel is called win32: Exclude legacy ipv6 subnets android: Applications compiled for Oreo can no longer use __system_property_get and must use Java calls to retrieve DNS servers win32: Force use of ANSI functions CMake minimum version is now 3.1 ares_gethostbyname.3: fix callback status values docs: Document WSAStartup requirement Fix a typo in init_by_resolv_conf Android JNI code leaks local references in some cases Force using the ANSI versions of WinAPI functions
22 lines
537 B
Makefile
22 lines
537 B
Makefile
# $NetBSD: Makefile,v 1.24 2018/03/01 08:56:31 adam Exp $
|
|
|
|
DISTNAME= c-ares-1.14.0
|
|
PKGNAME= ${DISTNAME:S/c-/libc/1}
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://c-ares.haxx.se/download/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://c-ares.haxx.se/
|
|
COMMENT= Asynchronous resolver library, c-ares
|
|
LICENSE= mit
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= automake autoreconf
|
|
GNU_CONFIGURE= yes
|
|
PKGCONFIG_OVERRIDE+= libcares.pc.in
|
|
|
|
pre-configure:
|
|
${RM} -f ${WRKSRC}/m4/xc-val-flgs.m4
|
|
cd ${WRKSRC} && autoreconf -fiv
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|