Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 31 Jul 2020 03:31:05 +0000 (UTC)
From:      Colin Percival <cperciva@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r543843 - head/sysutils/spiped
Message-ID:  <202007310331.06V3V5Xk041084@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007310331.06V3V5Xk041084>