summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Cristau <jcristau@debian.org>2008-04-17 11:13:47 +0200
committerJulien Cristau <jcristau@debian.org>2008-04-17 11:15:09 +0200
commitdc10f0a0e243b7ba38d02a4e2c43027563aead7c (patch)
tree7e0c1e32bdd9d6d3d01200e1953100a0a9c85fd5
parent8716d081fdf61ddf956c30aff7697c70507911fd (diff)
Fix composite on !darwin
2ffdb0eb641ab6949783b4eb574f77e7486ac929 changes the default value of COMPOSITE to 'auto', but doesn't set it back to 'yes' as appropriate.
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 1670c6976..56303e49d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -789,6 +789,9 @@ if test "x$COMPOSITE" = xauto; then
darwin*)
[ "x$XQUARTZ" = xyes -o "x$XQUARTZ" = xauto ] && COMPOSITE=no
;;
+ *)
+ COMPOSITE=yes
+ ;;
esac
fi