diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6b2ef7f3..c02626bc 100644 --- a/configure.ac +++ b/configure.ac @@ -1424,6 +1424,24 @@ fi AC_SUBST(GDM_SCREENSHOT_DIR) dnl --------------------------------------------------------------------------- +dnl - runtime conf +dnl --------------------------------------------------------------------------- + +withval="" +AC_ARG_WITH(runtime_conf, + AS_HELP_STRING([--with-runtime-conf=<FILENAME>], + [FILENAME to give to runtime configuration file @<:@default=GDM_RUN_DIR/custom.conf@:>@])) + +if test x$withval != x; then + GDM_RUNTIME_CONF="$withval" +else + GDM_RUNTIME_CONF="$GDM_RUN_DIR/custom.conf" +fi + +AC_SUBST(GDM_RUNTIME_CONF) + + +dnl --------------------------------------------------------------------------- dnl - Finish dnl --------------------------------------------------------------------------- |