From owner-svn-ports-head@freebsd.org Fri Jul 31 03:31:05 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9461236F594; Fri, 31 Jul 2020 03:31:05 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BHt952rRxz4Jhd; Fri, 31 Jul 2020 03:31:05 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 45A581B85D; Fri, 31 Jul 2020 03:31:05 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06V3V5AZ041085; Fri, 31 Jul 2020 03:31:05 GMT (envelope-from cperciva@FreeBSD.org) Received: (from cperciva@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06V3V5Xk041084; Fri, 31 Jul 2020 03:31:05 GMT (envelope-from cperciva@FreeBSD.org) Message-Id: <202007310331.06V3V5Xk041084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cperciva set sender to cperciva@FreeBSD.org using -f From: Colin Percival Date: Fri, 31 Jul 2020 03:31:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r543843 - head/sysutils/spiped X-SVN-Group: ports-head X-SVN-Commit-Author: cperciva X-SVN-Commit-Paths: head/sysutils/spiped X-SVN-Commit-Revision: 543843 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jul 2020 03:31:05 -0000 Author: cperciva Date: Fri Jul 31 03:31:04 2020 New Revision: 543843 URL: https://svnweb.freebsd.org/changeset/ports/543843 Log: Remove __BSD_VISIBLE from spiped build I added this in 2013 because it was needed in order to have MSG_NOSIGNAL defined; having that improved performance by avoiding the need go mask and unmask SIGPIPE repeately. From src r248932 onwards (aka. 10.0-RELEASE and later) __BSD_VISIBLE is no longer needed for this; since FreeBSD 9.x and earlier are no longer supported, there is no point keeping the workaround. Modified: head/sysutils/spiped/Makefile Modified: head/sysutils/spiped/Makefile ============================================================================== --- head/sysutils/spiped/Makefile Fri Jul 31 03:18:37 2020 (r543842) +++ head/sysutils/spiped/Makefile Fri Jul 31 03:31:04 2020 (r543843) @@ -2,7 +2,7 @@ PORTNAME= spiped PORTVERSION= 1.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils security MASTER_SITES= http://www.tarsnap.com/spiped/ @@ -20,9 +20,8 @@ USES= compiler:c11 tar:tgz ssl MAKE_ARGS+= BINDIR=${STAGEDIR}${PREFIX}/bin MAKE_ARGS+= MAN1DIR=${STAGEDIR}${PREFIX}/man/man1 -# Force __BSD_VISIBLE on since it works and improves performance; # add -I and -L directories for OpenSSL -MAKE_ARGS+= CFLAGS="-O2 -D__BSD_VISIBLE -I${OPENSSLINC}" +MAKE_ARGS+= CFLAGS="-O2 -I${OPENSSLINC}" MAKE_ARGS+= LDADD_EXTRA="-L${OPENSSLLIB}" PORTDOCS= BUILDING CHANGELOG COPYRIGHT README.md STYLE