diff options
author | Eitan Adler <eadler@FreeBSD.org> | 2012-11-13 01:05:55 +0000 |
---|---|---|
committer | Eitan Adler <eadler@FreeBSD.org> | 2012-11-13 01:05:55 +0000 |
commit | ab47362a675a4e48fc1c5634b1066324a560129b (patch) | |
tree | 4eaf698f530d2e6dd572724dd405c17d4b74a3db /x11/rxvt | |
parent | 8b57d434400dc0c53081d870999f3db6ba47bcb4 (diff) | |
download | ports-ab47362a675a4e48fc1c5634b1066324a560129b.tar.gz ports-ab47362a675a4e48fc1c5634b1066324a560129b.zip |
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
Notes
Notes:
svn path=/head/; revision=307355
Diffstat (limited to 'x11/rxvt')
-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 beb9f2104035..f7ebcce9e332 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} |