From owner-svn-ports-all@FreeBSD.ORG Sun Jun 15 05:44:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5A7030F; Sun, 15 Jun 2014 05:44:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 99D7923F1; Sun, 15 Jun 2014 05:44:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5F5iiCW027554; Sun, 15 Jun 2014 05:44:44 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5F5iiXh027553; Sun, 15 Jun 2014 05:44:44 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201406150544.s5F5iiXh027553@svn.freebsd.org> From: Cy Schubert Date: Sun, 15 Jun 2014 05:44:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357827 - head/sysutils/screen X-SVN-Group: ports-head 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.18 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, 15 Jun 2014 05:44:44 -0000 Author: cy Date: Sun Jun 15 05:44:44 2014 New Revision: 357827 URL: http://svnweb.freebsd.org/changeset/ports/357827 QAT: https://qat.redports.org/buildarchive/r357827/ Log: Due to popular demand sockets are back! Sockets are the default option. Users should choose named pipes in a heterogeneous environement that uses both screen 4.0.3 and 4.2.1. PR: 191029, 191017 Modified: head/sysutils/screen/Makefile Modified: head/sysutils/screen/Makefile ============================================================================== --- head/sysutils/screen/Makefile Sun Jun 15 04:35:49 2014 (r357826) +++ head/sysutils/screen/Makefile Sun Jun 15 05:44:44 2014 (r357827) @@ -20,13 +20,17 @@ COMMENT= Multi-screen window manager LICENSE= GPLv3 -OPTIONS_DEFINE= INFO MAN NETHACK XTERM_256 SHOWENC -OPTIONS_DEFAULT= INFO MAN NETHACK XTERM_256 +OPTIONS_DEFINE= INFO MAN NETHACK XTERM_256 SHOWENC +OPTIONS_DEFAULT= INFO MAN NETHACK XTERM_256 SOCKETS +OPTIONS_SINGLE= IPC +OPTIONS_SINGLE_IPC= SOCKETS NAMED_PIPES INFO_DESC= Build and install info documentation MAN_DESC= Build and install man pages NETHACK_DESC= Enable nethack-style messages XTERM_256_DESC= Enable support for 256 colour xterm SHOWENC_DESC= Show encoding on the status line +SOCKETS_DESC= Use new (4.2.1+) sockets for IPC (default) +NAMED_PIPES_DESC= Use legacy (4.0.3) named pipes for IPC (override) OPTIONS_SUB= @@ -70,9 +74,16 @@ post-patch: @${RM} ${WRKSRC}/doc/screen.info* @${REINPLACE_CMD} -e 's|/dev/ptmx|/nonexistent|' ${WRKSRC}/configure +# Bug 191029: Users can choose whether to use sockets or named pipes. +# Choose sockets if you don't know what the difference is. +# Choose named pipes if your environment is heterogeneous, +# using both screen 4.0.3 and 4.2.1. +.if ! ${PORT_OPTIONS:MNAMED_PIPES} # Bug 191017 post-configure: @${ECHO_CMD} '#define NAMEDPIPE 1' >> ${WRKSRC}/config.h + @${ECHO_CMD} User selected named pipes override set. +.endif post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}