diff options
author | Doug Barton <dougb@FreeBSD.org> | 2010-07-24 23:03:23 +0000 |
---|---|---|
committer | Doug Barton <dougb@FreeBSD.org> | 2010-07-24 23:03:23 +0000 |
commit | 905dfdbc55ff66ed5aea5358dc7258e52972d449 (patch) | |
tree | 3738ef85fda413d565592ef8f53f4748ee058c1b /x11/aterm | |
parent | 84de8db2db76ab93c281558e2d34da2dd94201f8 (diff) | |
download | ports-905dfdbc55ff66ed5aea5358dc7258e52972d449.tar.gz ports-905dfdbc55ff66ed5aea5358dc7258e52972d449.zip |
Quick and dirty hack to un-BROKEN on -current.
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=258182
Diffstat (limited to 'x11/aterm')
-rw-r--r-- | x11/aterm/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x11/aterm/Makefile b/x11/aterm/Makefile index 8872d35398e9..6a82806fef32 100644 --- a/x11/aterm/Makefile +++ b/x11/aterm/Makefile @@ -18,7 +18,7 @@ USE_XORG= xpm GNU_CONFIGURE= yes # `+=' is for slave ports CONFIGURE_ARGS+= --enable-transparency \ - --enable-fading --enable-utmp --enable-wtmp \ + --enable-fading --enable-wtmp \ --without-afterstep-config CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" @@ -26,7 +26,9 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" .include <bsd.port.pre.mk> .if ${OSVERSION} > 900007 -BROKEN= fails to build with new utmpx +CONFIGURE_ARGS+= --disable-utmp +.else +CONFIGURE_ARGS+= --enable-utmp .endif .if !defined(WITHOUT_BACKGROUND_IMAGE) |