From owner-svn-ports-all@freebsd.org Sun Dec 6 19:03:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5B099A087D; Sun, 6 Dec 2015 19:03:36 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id 938A61A75; Sun, 6 Dec 2015 19:03:36 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB6J3ZNP020087; Sun, 6 Dec 2015 19:03:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB6J3ZmN020084; Sun, 6 Dec 2015 19:03:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201512061903.tB6J3ZmN020084@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 6 Dec 2015 19:03:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r403152 - in branches/2015Q4/sysutils/pesign: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Dec 2015 19:03:36 -0000 Author: jbeich Date: Sun Dec 6 19:03:35 2015 New Revision: 403152 URL: https://svnweb.freebsd.org/changeset/ports/403152 Log: MFH: r403110 sysutils/pesign: unbreak on pre-10.2 systems - No reason to use ppoll(2), so switch to poll(2) - Include missing strchrnul(3) for 9.x No PORTREVISION bump because 10.2+ behavior doesn't change. PR: 205039 Approved by: trasz (maintainer) Approved by: ports-secteam (delphij) Added: branches/2015Q4/sysutils/pesign/files/extra-patch-src_client.c - copied unchanged from r403110, head/sysutils/pesign/files/extra-patch-src_client.c Modified: branches/2015Q4/sysutils/pesign/Makefile branches/2015Q4/sysutils/pesign/files/patch-src-daemon.c (contents, props changed) Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/sysutils/pesign/Makefile ============================================================================== --- branches/2015Q4/sysutils/pesign/Makefile Sun Dec 6 18:45:57 2015 (r403151) +++ branches/2015Q4/sysutils/pesign/Makefile Sun Dec 6 19:03:35 2015 (r403152) @@ -23,11 +23,8 @@ GH_ACCOUNT= rhinstaller USES= gmake pkgconfig USE_LDCONFIG= yes -.include - -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001505 -BROKEN= This port requires ppoll(2) system call -.endif +EXTRA_PATCHES= ${EXTRA_PATCHES_${OPSYS}_${OSREL:R}} +EXTRA_PATCHES_FreeBSD_9= ${FILESDIR}/extra-patch-src_client.c post-patch: @${REINPLACE_CMD} -e 's|%%CC%%|${CC}|g' ${WRKSRC}/Make.defaults @@ -43,4 +40,4 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/src/pesign-client.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/src/pesign.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 -.include +.include Copied: branches/2015Q4/sysutils/pesign/files/extra-patch-src_client.c (from r403110, head/sysutils/pesign/files/extra-patch-src_client.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/sysutils/pesign/files/extra-patch-src_client.c Sun Dec 6 19:03:35 2015 (r403152, copy of r403110, head/sysutils/pesign/files/extra-patch-src_client.c) @@ -0,0 +1,52 @@ +--- src/client.c.orig 2014-10-24 19:51:06 UTC ++++ src/client.c +@@ -47,6 +47,49 @@ static struct { + {FLAG_LIST_END, NULL}, + }; + ++#if defined(__FreeBSD__) && __FreeBSD__ < 10 ++/*- ++ * Copyright (c) 2013 Niclas Zeising ++ * All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * $FreeBSD: head/lib/libc/string/strchrnul.c 288004 2015-09-20 03:51:15Z rodrigc ++ */ ++ ++static char * ++strchrnul(const char *p, int ch) ++{ ++ char c; ++ ++ c = ch; ++ for (;; ++p) { ++ if (*p == c || *p == '\0') ++ return ((char *)p); ++ } ++ /* NOTREACHED */ ++} ++#endif ++ + static void + print_flag_name(FILE *f, int flag) + { Modified: branches/2015Q4/sysutils/pesign/files/patch-src-daemon.c ============================================================================== --- branches/2015Q4/sysutils/pesign/files/patch-src-daemon.c Sun Dec 6 18:45:57 2015 (r403151) +++ branches/2015Q4/sysutils/pesign/files/patch-src-daemon.c Sun Dec 6 19:03:35 2015 (r403152) @@ -8,6 +8,15 @@ #include #include #include +@@ -839,7 +838,7 @@ shutdown: + do_shutdown(ctx, nsockets, pollfds); + return 0; + } +- rc = ppoll(pollfds, nsockets, NULL, NULL); ++ rc = poll(pollfds, nsockets, INFTIM); + if (should_exit != 0) + goto shutdown; + if (rc < 0) { @@ -864,8 +863,8 @@ shutdown: struct sockaddr_un remote;