aboutsummaryrefslogtreecommitdiff
path: root/services/modstack.c
diff options
context:
space:
mode:
Diffstat (limited to 'services/modstack.c')
-rw-r--r--services/modstack.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/services/modstack.c b/services/modstack.c
index 49bb2fd15adf..70e066670d5d 100644
--- a/services/modstack.c
+++ b/services/modstack.c
@@ -50,6 +50,9 @@
#ifdef WITH_PYTHONMODULE
#include "pythonmod/pythonmod.h"
#endif
+#ifdef USE_CACHEDB
+#include "cachedb/cachedb.h"
+#endif
/** count number of modules (words) in the string */
static int
@@ -121,6 +124,9 @@ module_list_avail(void)
#ifdef WITH_PYTHONMODULE
"python",
#endif
+#ifdef USE_CACHEDB
+ "cachedb",
+#endif
"validator",
"iterator",
NULL};
@@ -139,6 +145,9 @@ module_funcs_avail(void)
#ifdef WITH_PYTHONMODULE
&pythonmod_get_funcblock,
#endif
+#ifdef USE_CACHEDB
+ &cachedb_get_funcblock,
+#endif
&val_get_funcblock,
&iter_get_funcblock,
NULL};