Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id D14077A1FA for ; Mon, 22 May 2017 09:15:00 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7DE0684DEC; Mon, 22 May 2017 09:15:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0EDE184DBB for ; Mon, 22 May 2017 09:15:00 +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 dNWi3CkryF74 for ; Mon, 22 May 2017 09:14:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7036C84D73 for ; Mon, 22 May 2017 09:14:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6B7FEFBE4; Mon, 22 May 2017 09:14:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1495444499218820" MIME-Version: 1.0 Date: Mon, 22 May 2017 09:14:59 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/net/fping To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20170522091459.6B7FEFBE4@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. --_----------=_1495444499218820 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon May 22 09:14:59 UTC 2017 Modified Files: pkgsrc/net/fping: Makefile Log Message: Package requires C99. SunOS requires XPG6 and __EXTENSIONS__. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/net/fping/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1495444499218820 Content-Disposition: inline Content-Length: 850 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/fping/Makefile diff -u pkgsrc/net/fping/Makefile:1.17 pkgsrc/net/fping/Makefile:1.18 --- pkgsrc/net/fping/Makefile:1.17 Sat May 20 11:25:50 2017 +++ pkgsrc/net/fping/Makefile Mon May 22 09:14:59 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2017/05/20 11:25:50 adam Exp $ +# $NetBSD: Makefile,v 1.18 2017/05/22 09:14:59 jperkin Exp $ DISTNAME= fping-4.0 CATEGORIES= net @@ -8,11 +8,12 @@ MAINTAINER= abs@NetBSD.org HOMEPAGE= http://www.fping.org/ COMMENT= Quickly ping many hosts w/o flooding the network -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes +USE_LANGUAGES= c99 -SPECIAL_PERMS+= sbin/fping ${SETUID_ROOT_PERMS} +SPECIAL_PERMS+= sbin/fping ${SETUID_ROOT_PERMS} -CPPFLAGS.SunOS+= -Dn_time=uint32_t +CFLAGS.SunOS+= -Dn_time=uint32_t -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ .include "options.mk" --_----------=_1495444499218820--