diff options
author | eadler <eadler@FreeBSD.org> | 2012-11-13 01:05:55 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2012-11-13 01:05:55 +0000 |
commit | 61381f3293e682686cc850c54ba5e782953b3a9d (patch) | |
tree | 4eaf698f530d2e6dd572724dd405c17d4b74a3db | |
parent | 18cfda2e686828d10b1b1eb1b6b0478a914a8701 (diff) | |
download | FreeBSD-ports-61381f3293e682686cc850c54ba5e782953b3a9d.zip FreeBSD-ports-61381f3293e682686cc850c54ba5e782953b3a9d.tar.gz |
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
-rw-r--r-- | x11/rxvt/Makefile | 8 |
1 files 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 <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} |