summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/dynconfig.c1
-rw-r--r--source3/include/dynconfig.h4
2 files changed, 5 insertions, 0 deletions
diff --git a/source3/dynconfig.c b/source3/dynconfig.c
index 241a659a51..3a54507599 100644
--- a/source3/dynconfig.c
+++ b/source3/dynconfig.c
@@ -73,6 +73,7 @@ DEFINE_DYN_CONFIG_PARAM(LOGFILEBASE) /** Log file directory. **/
DEFINE_DYN_CONFIG_PARAM(LMHOSTSFILE) /** Statically configured LanMan hosts. **/
DEFINE_DYN_CONFIG_PARAM(CODEPAGEDIR)
DEFINE_DYN_CONFIG_PARAM(LIBDIR)
+DEFINE_DYN_CONFIG_PARAM(MODULESDIR)
DEFINE_DYN_CONFIG_PARAM(SHLIBEXT)
DEFINE_DYN_CONFIG_PARAM(LOCKDIR)
DEFINE_DYN_CONFIG_PARAM(PIDDIR)
diff --git a/source3/include/dynconfig.h b/source3/include/dynconfig.h
index 8a9bb5ef97..758bde33cc 100644
--- a/source3/include/dynconfig.h
+++ b/source3/include/dynconfig.h
@@ -55,6 +55,10 @@ const char *get_dyn_LIBDIR(void);
const char *set_dyn_LIBDIR(const char *newpath);
bool is_default_dyn_LIBDIR(void);
+const char *get_dyn_MODULESDIR(void);
+const char *set_dyn_MODULESDIR(const char *newpath);
+bool is_default_dyn_MODULESDIR(void);
+
const char *get_dyn_SHLIBEXT(void);
const char *set_dyn_SHLIBEXT(const char *newpath);
bool is_default_dyn_SHLIBEXT(void);