diff options
author | Andrea Canciani <ranma42@gmail.com> | 2011-06-16 09:22:54 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2011-06-16 15:11:24 +0200 |
commit | 3a504282ef2c3383ad91209a522aa049898bd2c4 (patch) | |
tree | 7310253bef051ac4f563e86a20562ac011acc3ac /util | |
parent | f409f74decf63b3dbf68b713317a1eb17cd71a0f (diff) |
build: Don't build cairo-sphinx when the tee surface is off
cairo-sphinx depends on cairo-tee, which is not always enabled.
Reported-by: James Cloos <cloos@jhcloos.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/Makefile.am b/util/Makefile.am index 807a1940..dc13abd6 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -21,9 +21,11 @@ endif if BUILD_SPHINX if CAIRO_HAS_SCRIPT_SURFACE +if CAIRO_HAS_TEE_SURFACE SUBDIRS += cairo-sphinx endif endif +endif AM_CPPFLAGS = -I$(top_srcdir)/src \ -I$(top_builddir)/src \ |