Received: by mail.netbsd.org (Postfix, from userid 605) id C395384E3F; Thu, 3 Oct 2019 11:01:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4461384E3C for ; Thu, 3 Oct 2019 11:01:40 +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 5jyUvLIdHDLr for ; Thu, 3 Oct 2019 11:01:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CFD0084CD5 for ; Thu, 3 Oct 2019 11:01:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C2E89FBF4; Thu, 3 Oct 2019 11:01:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570100499207510" MIME-Version: 1.0 Date: Thu, 3 Oct 2019 11:01:39 +0000 From: "Matthias Scheler" Subject: CVS commit: pkgsrc/net/mtr To: pkgsrc-changes@NetBSD.org Reply-To: tron@netbsd.org X-Mailer: log_accum Message-Id: <20191003110139.C2E89FBF4@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. --_----------=_1570100499207510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tron Date: Thu Oct 3 11:01:39 UTC 2019 Modified Files: pkgsrc/net/mtr: Makefile Log Message: mtr: Fix build under Solaris To generate a diff of this commit: cvs rdiff -u -r1.109 -r1.110 pkgsrc/net/mtr/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570100499207510 Content-Disposition: inline Content-Length: 638 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/mtr/Makefile diff -u pkgsrc/net/mtr/Makefile:1.109 pkgsrc/net/mtr/Makefile:1.110 --- pkgsrc/net/mtr/Makefile:1.109 Sat Sep 7 18:50:19 2019 +++ pkgsrc/net/mtr/Makefile Thu Oct 3 11:01:39 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.109 2019/09/07 18:50:19 kim Exp $ +# $NetBSD: Makefile,v 1.110 2019/10/03 11:01:39 tron Exp $ DISTNAME= mtr-0.93 PKGREVISION= 1 @@ -21,6 +21,8 @@ GNU_CONFIGURE= YES USE_TOOLS+= pkg-config INSTALLATION_DIRS= share/doc/mtr +CPPFLAGS.SunOS+= -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 + .include "options.mk" SPECIAL_PERMS= sbin/mtr-packet ${SETUID_ROOT_PERMS} --_----------=_1570100499207510--