diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/Makefile.win32.features | 1 | ||||
-rw-r--r-- | build/Makefile.win32.features-h | 3 | ||||
-rw-r--r-- | build/configure.ac.features | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/build/Makefile.win32.features b/build/Makefile.win32.features index bc82d0ff..eb10b236 100644 --- a/build/Makefile.win32.features +++ b/build/Makefile.win32.features @@ -30,3 +30,4 @@ CAIRO_HAS_PDF_SURFACE=1 CAIRO_HAS_SVG_SURFACE=1 CAIRO_HAS_TEST_SURFACES=0 CAIRO_HAS_XML_SURFACE=1 +CAIRO_HAS_TRACE=1 diff --git a/build/Makefile.win32.features-h b/build/Makefile.win32.features-h index 4eb59326..552a2d0a 100644 --- a/build/Makefile.win32.features-h +++ b/build/Makefile.win32.features-h @@ -99,4 +99,7 @@ ifeq ($(CAIRO_HAS_XML_SURFACE),1) @echo "#define CAIRO_HAS_XML_SURFACE 1" >> src/cairo-features.h endif @echo "#define CAIRO_HAS_USER_FONT 1" >> src/cairo-features.h +ifeq ($(CAIRO_HAS_TRACE),1) + @echo "#define CAIRO_HAS_TRACE 1" >> src/cairo-features.h +endif @echo "#endif" >> src/cairo-features.h diff --git a/build/configure.ac.features b/build/configure.ac.features index ec9cde54..2606850b 100644 --- a/build/configure.ac.features +++ b/build/configure.ac.features @@ -393,6 +393,9 @@ AC_DEFUN([CAIRO_REPORT], echo " EGL functions: $use_egl" echo " Eagle functions: $use_eagle" echo "" + echo "The following features and utilies:" + echo " cairo-trace: $use_trace" + echo "" echo "And the following internal features:" echo " gtk-doc: $enable_gtk_doc" echo " gcov support: $use_gcov" |