Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
81f90323
...
81f90323629a0407768c5546463de846a9d7db8c
authored
2003-01-22 20:18:48 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Raised version number to 0.2.2; Added support for cram-md5 password file
1 parent
72491012
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletions
configure.ac
configure.ac
View file @
81f9032
...
...
@@ -17,7 +17,7 @@
# Foundation, Inc.
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
AC_INIT([GNU Mailutils], [0.2.
1
], [bug-mailutils@gnu.org], [mailutils])
AC_INIT([GNU Mailutils], [0.2.
2
], [bug-mailutils@gnu.org], [mailutils])
AC_CONFIG_SRCDIR([mailbox/mailbox.c])
AC_CONFIG_AUX_DIR([scripts])
AC_CANONICAL_TARGET([])
...
...
@@ -119,6 +119,17 @@ MU_CHECK_GSASL(0.0.2, [
AUTHLIBS="$AUTHLIBS $GSASL_LIBS"
IMAP_AUTHOBJS="$IMAP_AUTHOBJS auth_gsasl.o"])
AC_SUBST(SITE_CRAM_MD5_PWD)
SITE_CRAM_MD5_PWD="\$(sysconfdir)/cram-md5.pwd"
AC_ARG_WITH(cram-passwd,
AC_HELP_STRING([--with-cram-passwd=FILE],
[use keep passwords for CRAM-MD5 authentication method in FILE (default $SITE_CRAM_MD5_PWD)]),
[case "${withval}" in
/*) SITE_CRAM_MD5_PWD="${withval}";;
./*|../*) AC_MSG_ERROR(Bad value for --with-cram-passwd);;
*) SITE_CRAM_MD5_PWD="\$(sysconfdir)/${withval}";;
esac])
MU_CHECK_TLS
if test "$WITH_GNUTLS" != "no"; then
AUTHLIBS="$AUTHLIBS $TLS_LIBS"
...
...
Please
register
or
sign in
to post a comment