Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Nov 2012 01:05:55 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r307355 - head/x11/rxvt
Message-ID:  <201211130105.qAD15tAQ050143@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Tue Nov 13 01:05:55 2012
New Revision: 307355
URL: http://svnweb.freebsd.org/changeset/ports/307355

Log:
  The build fails when utmp is disabled but wtmp isn't. The two must be handled together.
  
  Also, this build is MAKE_JOBS_SAFE
  
  Feature safe:	yes

Modified:
  head/x11/rxvt/Makefile

Modified: head/x11/rxvt/Makefile
==============================================================================
--- head/x11/rxvt/Makefile	Mon Nov 12 23:24:00 2012	(r307354)
+++ head/x11/rxvt/Makefile	Tue Nov 13 01:05:55 2012	(r307355)
@@ -33,20 +33,22 @@ XGETDEFAULT_DESC=	Build with XGetDefault
 XIM_DESC=		Build with XIM support
 XTERM_DESC=		Build with Xterm scrollbar
 
-CONFIGURE_ARGS=	--enable-wtmp --enable-ttygid \
+CONFIGURE_ARGS=	--enable-ttygid \
 		--with-xpm --enable-xpm-background \
 		--with-xpm-includes=${LOCALBASE}/include/X11 \
 		--with-xpm-library=${LOCALBASE}/lib
 MAN1=		rxvt.1
 PLIST_FILES=	bin/rxvt
 
+MAKE_JOBS_SAFE=	yes
+
 .include <bsd.port.pre.mk>
 
 # fails to build with new utmpx
 .if ${OSVERSION} > 900007
-CONFIGURE_ARGS=	--disable-utmp
+CONFIGURE_ARGS=	--disable-utmp --disable-wtmp
 .else
-CONFIGURE_ARGS=	--enable-utmp
+CONFIGURE_ARGS=	--enable-utmp --enable-wtmp
 .endif
 
 .if ${PORT_OPTIONS:MBIG5}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211130105.qAD15tAQ050143>