From owner-svn-ports-all@FreeBSD.ORG Thu Oct 25 22:32:35 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4ACA1F20; Thu, 25 Oct 2012 22:32:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 323038FC0A; Thu, 25 Oct 2012 22:32:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9PMWZ0J060891; Thu, 25 Oct 2012 22:32:35 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9PMWZrp060889; Thu, 25 Oct 2012 22:32:35 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201210252232.q9PMWZrp060889@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 25 Oct 2012 22:32:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306406 - head/x11/rxvt 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.14 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: Thu, 25 Oct 2012 22:32:35 -0000 Author: ehaupt Date: Thu Oct 25 22:32:34 2012 New Revision: 306406 URL: http://svn.freebsd.org/changeset/ports/306406 Log: Unbreak on OSVERSION > 900007 by disabling utmpx support. Feature safe: yes Modified: head/x11/rxvt/Makefile Modified: head/x11/rxvt/Makefile ============================================================================== --- head/x11/rxvt/Makefile Thu Oct 25 22:26:24 2012 (r306405) +++ head/x11/rxvt/Makefile Thu Oct 25 22:32:34 2012 (r306406) @@ -33,7 +33,7 @@ XGETDEFAULT_DESC= Build with XGetDefault XIM_DESC= Build with XIM support XTERM_DESC= Build with Xterm scrollbar -CONFIGURE_ARGS= --enable-utmp --enable-wtmp --enable-ttygid \ +CONFIGURE_ARGS= --enable-wtmp --enable-ttygid \ --with-xpm --enable-xpm-background \ --with-xpm-includes=${LOCALBASE}/include/X11 \ --with-xpm-library=${LOCALBASE}/lib @@ -42,8 +42,11 @@ PLIST_FILES= bin/rxvt .include +# fails to build with new utmpx .if ${OSVERSION} > 900007 -BROKEN= fails to build with new utmpx +CONFIGURE_ARGS= --disable-utmp +.else +CONFIGURE_ARGS= --enable-utmp .endif .if ${PORT_OPTIONS:MBIG5}