Date: Thu, 25 Oct 2012 22:32:34 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306406 - head/x11/rxvt Message-ID: <201210252232.q9PMWZrp060889@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk> +# 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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210252232.q9PMWZrp060889>