diff options
author | danfe <danfe@FreeBSD.org> | 2005-06-03 20:06:55 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2005-06-03 20:06:55 +0800 |
commit | f860966124d43496693dbd0a34e128cb8ff84fb2 (patch) | |
tree | c801e2450f5233565d629c3099f83a4317702fb8 /x11-wm/wmii-devel | |
parent | 8792c626232f3ac5d8b12c10631161521deab93b (diff) | |
download | freebsd-ports-gnome-f860966124d43496693dbd0a34e128cb8ff84fb2.tar.gz freebsd-ports-gnome-f860966124d43496693dbd0a34e128cb8ff84fb2.tar.zst freebsd-ports-gnome-f860966124d43496693dbd0a34e128cb8ff84fb2.zip |
Disable Cairo by default. The cairo backend is not recommended in
production use, because cairo library is still very buggy and causes
crashes often (according to authors). Add a caution comment.
Diffstat (limited to 'x11-wm/wmii-devel')
-rw-r--r-- | x11-wm/wmii-devel/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/x11-wm/wmii-devel/Makefile b/x11-wm/wmii-devel/Makefile index 4e18d57978e5..22127658f6f7 100644 --- a/x11-wm/wmii-devel/Makefile +++ b/x11-wm/wmii-devel/Makefile @@ -20,7 +20,7 @@ USE_X_PREFIX= yes MAKE_ARGS= PREFIX="${PREFIX}" X11DIR="${X11BASE}" CC="${CC}" \ MANPREFIX="${PREFIX}/man" -OPTIONS= CAIRO "Enable Cairo rendering backend" on \ +OPTIONS= CAIRO "Enable Cairo rendering backend" off \ STRL "Use strlcpy()/strlcat() functions" off MAN1= wmibar.1 wmifs.1 wmii.1 wmiinput.1 wmikeys.1 wmiplumb.1 \ @@ -29,6 +29,8 @@ MAN5= wmii.rc.5 .include <bsd.port.pre.mk> +# The cairo backend is not recommended in production use, because the cairo +# library is still very buggy and causes crashes often. .if defined(WITH_CAIRO) LIB_DEPENDS= cairo.1:${PORTSDIR}/graphics/cairo MAKE_ARGS+= DRAW=cairo |