summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-21 09:51:36 +1100
committerDamien Miller <djm@mindrot.org>1999-12-21 09:51:36 +1100
commit368cf64d5c7cee6eb85d9240ea04ccf43273b5fc (patch)
tree19b5ce1233714df994e9e1699e791d269c577d2c /configure.in
parentfdb7caf293e860fda343f9cc98ff3342ed997b73 (diff)
Made utmpx optional
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 19372e2d5..86d6a3241 100644
--- a/configure.in
+++ b/configure.in
@@ -290,6 +290,12 @@ AC_ARG_WITH(md5-passwords,
290 [AC_DEFINE(HAVE_MD5_PASSWORDS)] 290 [AC_DEFINE(HAVE_MD5_PASSWORDS)]
291) 291)
292 292
293dnl Check whether to enable utmpx support
294AC_ARG_WITH(utmpx,
295 [ --with-utmpx Enable utmpx support],
296 [AC_DEFINE(USE_UTMPX)]
297)
298
293dnl Check for the path to xauth 299dnl Check for the path to xauth
294AC_PATH_PROG(xauth_path, xauth) 300AC_PATH_PROG(xauth_path, xauth)
295AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path") 301AC_DEFINE_UNQUOTED(XAUTH_PATH, "$xauth_path")