diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-09 01:16:08 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-09-09 01:16:08 +0100 |
commit | 34778a883af806f77d0c89c85cebb315b43d7ef2 (patch) | |
tree | 8e615c495953908e5743664cbda21c127dae1bad | |
parent | 4b221bd49a0c2c980a63779d905e8eb9b9cfa690 (diff) |
[configure] Typo in test
The have_dl clause was meant to have been removed from the requirements
test for cairo-script-interpreter. Instead we left the test broken.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 985ea717..cb064813 100644 --- a/configure.ac +++ b/configure.ac @@ -653,7 +653,7 @@ CAIRO_ENABLE(trace, cairo-trace, yes, [ ]) CAIRO_ENABLE(interpreter, cairo-script-interpreter, yes, [ - if test "x$have_libz" != "xyes" "x$have_dl" != "xyes"; then + if test "x$have_libz" != "xyes"; then use_interpreter="no (requires zlib)" fi ]) |