diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0d85c2fc1..ef5725fb2 100644 --- a/configure.ac +++ b/configure.ac @@ -50,6 +50,16 @@ AC_CHECK_LIB(z, compress, [have_libz="no (requires zlib http://www.gzip.org/zlib/)"])], [have_libz="no (requires zlib http://www.gzip.org/zlib/)"]) +AC_CHECK_LIB(ttrace, traceBegin, + [AC_CHECK_HEADER(ttrace.h, [ + have_ttrace=yes + AC_DEFINE(HAVE_TTRACE, 1, [Define to 1 if you have ttrace available]) + ttrace_LIBS="-lttrace" + ], + [have_ttrace="no (requires ttrace)"])], + [have_ttrace="no (requires ttraec)"]) +LIBS="$ttrace_LIBS $LIBS" + AC_CHECK_LIB(wayland-client, wl_display_connect, [AC_CHECK_HEADER(wayland-client.h, [ have_wayland=yes @@ -843,6 +853,12 @@ CAIRO_ENABLE(trace, cairo-trace, auto, [ fi ]) +CAIRO_ENABLE(ttrace, cairo-ttrace, no, [ + if test "x$have_ttrace" != "xyes"; then + use_ttrace="no (requires ttrace)" + fi +]) + CAIRO_ENABLE(interpreter, cairo-script-interpreter, yes, [ if test "x$have_libz" != "xyes"; then use_interpreter="no (requires zlib)" |