Received: by mail.netbsd.org (Postfix, from userid 605) id 8F07F84FE4; Tue, 14 Aug 2018 17:18:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7881384E87 for ; Tue, 14 Aug 2018 17:18:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id JdCdG4VwsAmx for ; Tue, 14 Aug 2018 17:18:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AA4D284D62 for ; Tue, 14 Aug 2018 17:18:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A26C2FBEC; Tue, 14 Aug 2018 17:18:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1534267117196100" MIME-Version: 1.0 Date: Tue, 14 Aug 2018 17:18:37 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/net/aria2 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180814171837.A26C2FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1534267117196100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Aug 14 17:18:37 UTC 2018 Modified Files: pkgsrc/net/aria2: Makefile Log Message: aria2: Work around broken getaddrinfo() detection. Resolves issue reported in joyent/pkgsrc#21. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.75 -r1.76 pkgsrc/net/aria2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1534267117196100 Content-Disposition: inline Content-Length: 813 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/aria2/Makefile diff -u pkgsrc/net/aria2/Makefile:1.75 pkgsrc/net/aria2/Makefile:1.76 --- pkgsrc/net/aria2/Makefile:1.75 Fri Jul 20 03:34:22 2018 +++ pkgsrc/net/aria2/Makefile Tue Aug 14 17:18:37 2018 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.75 2018/07/20 03:34:22 ryoon Exp $ +# $NetBSD: Makefile,v 1.76 2018/08/14 17:18:37 jperkin Exp $ DISTNAME= aria2-1.32.0 #PKGREVISION= 1 -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=aria2/} EXTRACT_SUFX= .tar.xz @@ -29,6 +29,7 @@ CONFIGURE_ARGS+= --with-included-gettext CONFIGURE_ARGS+= --with-libexpat CONFIGURE_ARGS+= --without-libxml2 CONFIGURE_ARGS.SunOS+= --disable-epoll +CONFIGURE_ENV.SunOS+= ac_cv_func_getaddrinfo=yes TEST_TARGET= check USE_FEATURES= getopt_long snprintf --_----------=_1534267117196100--