summaryrefslogtreecommitdiff
path: root/usr.sbin/unbound/services/modstack.c
diff options
context:
space:
mode:
authorStuart Henderson <sthen@cvs.openbsd.org>2020-08-24 09:41:54 +0000
committerStuart Henderson <sthen@cvs.openbsd.org>2020-08-24 09:41:54 +0000
commita8caf799285f804684b3911bad666569243617d4 (patch)
treeece123666035943a5d1491020b1d3ce78c96db32 /usr.sbin/unbound/services/modstack.c
parent3798bdfa99216b77c98f20ad898ec10a40ec30a1 (diff)
merge unbound 1.11.0
Diffstat (limited to 'usr.sbin/unbound/services/modstack.c')
-rw-r--r--usr.sbin/unbound/services/modstack.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/usr.sbin/unbound/services/modstack.c b/usr.sbin/unbound/services/modstack.c
index 68e5928146d..a600549b16c 100644
--- a/usr.sbin/unbound/services/modstack.c
+++ b/usr.sbin/unbound/services/modstack.c
@@ -51,6 +51,9 @@
#ifdef WITH_PYTHONMODULE
#include "pythonmod/pythonmod.h"
#endif
+#ifdef WITH_DYNLIBMODULE
+#include "dynlibmod/dynlibmod.h"
+#endif
#ifdef USE_CACHEDB
#include "cachedb/cachedb.h"
#endif
@@ -140,6 +143,9 @@ module_list_avail(void)
#ifdef WITH_PYTHONMODULE
"python",
#endif
+#ifdef WITH_DYNLIBMODULE
+ "dynlib",
+#endif
#ifdef USE_CACHEDB
"cachedb",
#endif
@@ -171,6 +177,9 @@ module_funcs_avail(void)
#ifdef WITH_PYTHONMODULE
&pythonmod_get_funcblock,
#endif
+#ifdef WITH_DYNLIBMODULE
+ &dynlibmod_get_funcblock,
+#endif
#ifdef USE_CACHEDB
&cachedb_get_funcblock,
#endif