svn commit: r307355 - head/x11/rxvt

Eitan Adler eadler at FreeBSD.org
Tue Nov 13 01:05:56 UTC 2012


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}


More information about the svn-ports-all mailing list