diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2012-10-25 22:32:34 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2012-10-25 22:32:34 +0000 |
commit | c438a46382d554f251114e3885c3993ab5384805 (patch) | |
tree | 62012cb4a7034277e49225e927fd9c990a7d6ba5 /x11/rxvt | |
parent | e50718976d0ce40887de9ce89deff8bdaad14ab9 (diff) | |
download | ports-c438a46382d554f251114e3885c3993ab5384805.tar.gz ports-c438a46382d554f251114e3885c3993ab5384805.zip |
Unbreak on OSVERSION > 900007 by disabling utmpx support.
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=306406
Diffstat (limited to 'x11/rxvt')
-rw-r--r-- | x11/rxvt/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/x11/rxvt/Makefile b/x11/rxvt/Makefile index adc1ca97d08c..beb9f2104035 100644 --- a/x11/rxvt/Makefile +++ b/x11/rxvt/Makefile @@ -33,7 +33,7 @@ XGETDEFAULT_DESC= Build with XGetDefault() support XIM_DESC= Build with XIM support XTERM_DESC= Build with Xterm scrollbar -CONFIGURE_ARGS= --enable-utmp --enable-wtmp --enable-ttygid \ +CONFIGURE_ARGS= --enable-wtmp --enable-ttygid \ --with-xpm --enable-xpm-background \ --with-xpm-includes=${LOCALBASE}/include/X11 \ --with-xpm-library=${LOCALBASE}/lib @@ -42,8 +42,11 @@ PLIST_FILES= bin/rxvt .include <bsd.port.pre.mk> +# fails to build with new utmpx .if ${OSVERSION} > 900007 -BROKEN= fails to build with new utmpx +CONFIGURE_ARGS= --disable-utmp +.else +CONFIGURE_ARGS= --enable-utmp .endif .if ${PORT_OPTIONS:MBIG5} |