svn commit: r306406 - head/x11/rxvt

Emanuel Haupt ehaupt at FreeBSD.org
Thu Oct 25 22:32:35 UTC 2012


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}


More information about the svn-ports-all mailing list