summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac6
-rw-r--r--src/Makefile.am6
2 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index fc0b2029..edb9c3c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -90,6 +90,12 @@ AC_ARG_ENABLE([fts],
AM_CONDITIONAL(HAVE_FTS, test "x$enable_fts" != "xno")
+AC_ARG_ENABLE([explain-queries],
+ AS_HELP_STRING([--enable-explain-queries], [Enable SQL debugging]),
+ [explain_queries=$enableval],[enable_queries="no"])
+
+AM_CONDITIONAL(EXPLAIN_QUERIES, test "x$explain_queries" = "xyes")
+
AC_CONFIG_FILES([
Makefile
src/Makefile
diff --git a/src/Makefile.am b/src/Makefile.am
index 8495252d..eb92b4e9 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -18,6 +18,12 @@ AM_VALAFLAGS = \
$(top_srcdir)/config.vapi \
$(NULL)
+if EXPLAIN_QUERIES
+AM_VALAFLAGS = $(AM_VALAFLAGS) \
+ -D EXPLAIN_QUERIES \
+ $(NULL)
+endif
+
# Make sure every extension has only one vala file!
extensions_VALASOURCES = \
ext-data-source-registry.vala \