diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-11-20 22:31:21 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-11-20 22:32:26 +0100 |
commit | d23764182ccb5d1e96774cc958a7afaaa659e114 (patch) | |
tree | 0cac00f5b1c04e711141b751c0afb384d313c829 /configure.ac | |
parent | adbe531ef00b8149f9c09c27928746a6ed595043 (diff) |
check harder whether to build cairo
Change-Id: Ica2b9f1535f92c1b1cbceb7ec99ea96696742568
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1545ca827510..20299e9348b9 100644 --- a/configure.ac +++ b/configure.ac @@ -9425,7 +9425,10 @@ if test $_os = Darwin -o $_os = iOS -o $_os = Android -o "$enable_headless" = "y fi ENABLE_GTK="" if test "x$enable_gtk" = "xyes"; then - test_cairo=yes + if test "$GUIBASE" = "unx"; then + # Used in vcl/Library_vclplug_gtk.mk + test_cairo=yes + fi ENABLE_GTK="TRUE" R="gtk $R" fi |