From 61381f3293e682686cc850c54ba5e782953b3a9d Mon Sep 17 00:00:00 2001 From: eadler Date: Tue, 13 Nov 2012 01:05:55 +0000 Subject: 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 --- x11/rxvt/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/x11/rxvt/Makefile b/x11/rxvt/Makefile index beb9f21..f7ebcce 100644 --- a/x11/rxvt/Makefile +++ b/x11/rxvt/Makefile @@ -33,20 +33,22 @@ XGETDEFAULT_DESC= Build with XGetDefault() support 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 # 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} -- cgit v1.1