diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2012-10-26 06:32:34 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2012-10-26 06:32:34 +0800 |
commit | 4def5b9698a44d167e01df21acd704e7a4a0ee38 (patch) | |
tree | 62012cb4a7034277e49225e927fd9c990a7d6ba5 /x11 | |
parent | dd333e9b94d81f95a7756ed785f4621b44f512d5 (diff) | |
download | freebsd-ports-gnome-4def5b9698a44d167e01df21acd704e7a4a0ee38.tar.gz freebsd-ports-gnome-4def5b9698a44d167e01df21acd704e7a4a0ee38.tar.zst freebsd-ports-gnome-4def5b9698a44d167e01df21acd704e7a4a0ee38.zip |
Unbreak on OSVERSION > 900007 by disabling utmpx support.
Feature safe: yes
Diffstat (limited to 'x11')
-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} |