summaryrefslogtreecommitdiffstats
path: root/server/conf_macros.m4
diff options
context:
space:
mode:
Diffstat (limited to 'server/conf_macros.m4')
-rw-r--r--server/conf_macros.m413
1 files changed, 13 insertions, 0 deletions
diff --git a/server/conf_macros.m4 b/server/conf_macros.m4
index f6821e070..27006e6dd 100644
--- a/server/conf_macros.m4
+++ b/server/conf_macros.m4
@@ -130,3 +130,16 @@ AC_DEFUN(WITH_INIT_DIR,
])
+AC_DEFUN(WITH_SHADOW_UTILS_PATH,
+ [ AC_ARG_WITH([shadow-utils-path],
+ [AC_HELP_STRING([--with-shadow-utils-path=PATH],
+ [Where to look for shadow-utils binaries [/usr/sbin]]
+ )
+ ]
+ )
+ shadow_utils_path="${sbindir}"
+ if test x"$with_shadow_utils_path" != x; then
+ shadow_utils_path=$with_shadow_utils_path
+ fi
+ AC_SUBST(shadow_utils_path)
+ ])