From 11a8c730d2283099ea810729f6acbf6fb19605fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 20 Jan 2014 11:25:44 +0000 Subject: [PATCH] Enable OATH by default and tweak some option description strings. git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@754 185d5e19-27fe-0310-9dcf-9bff6b9f3609 --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index b6b518f..f27cffe 100644 --- a/configure.ac +++ b/configure.ac @@ -62,25 +62,25 @@ AC_ARG_WITH([doc], AM_CONDITIONAL([WITH_DOC], [test x"$with_doc" = x"yes"]) AC_ARG_WITH([pam-unix], - AC_HELP_STRING([--with-pam-unix], [compile sample pam_unix(8) module]), + AC_HELP_STRING([--with-pam-unix], [build sample pam_unix(8) module]), [], [with_pam_unix=no]) AM_CONDITIONAL([WITH_PAM_UNIX], [test x"$with_pam_unix" = x"yes"]) AC_ARG_WITH([oath], - AC_HELP_STRING([--with-oath], [compile OATH library, module and utility]), + AC_HELP_STRING([--without-oath], [do not build OATH library, module and utility]), [], - [with_oath=no]) + [with_oath=yes]) AM_CONDITIONAL([WITH_OATH], [test x"$with_oath" = x"yes"]) AC_ARG_WITH(pamtest, - AC_HELP_STRING([--with-pamtest], [compile test application]), + AC_HELP_STRING([--with-pamtest], [build test application]), [], [with_pamtest=no]) AM_CONDITIONAL([WITH_PAMTEST], [test x"$with_pamtest" = x"yes"]) AC_ARG_WITH(su, - AC_HELP_STRING([--with-su], [compile sample su(1) implementation]), + AC_HELP_STRING([--with-su], [build sample su(1) implementation]), [], [with_su=no]) AM_CONDITIONAL([WITH_SU], [test x"$with_su" = x"yes"])