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
e88cd787
...
e88cd787248cdf780ab07ea115b2307035eac606
authored
2003-01-22 13:08:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Renamed AUTHOBJS to IMAP_AUTHOBJS for clarity. Added call to MU_CHECK_GSASL.
1 parent
68b0e793
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
configure.ac
configure.ac
View file @
e88cd78
...
...
@@ -93,6 +93,8 @@ case "${withval}" in
*) AC_MSG_ERROR(bad value ${withval} for --without-readline) ;;
esac],[usereadline=yes])
AC_SUBST(IMAP_AUTHOBJS)
AC_ARG_WITH([gssapi],
AC_HELP_STRING([--with-gssapi],
[use GSSAPI authentication]),
...
...
@@ -107,11 +109,15 @@ if test "x$WITH_GSSAPI" != "xno"; then
else
AUTHLIBS="$AUTHLIBS $GSSAPI_LIBS"
AUTHINCS="$AUTHINCS $GSSAPI_CFLAGS"
AUTHOBJS="$
AUTHOBJS auth_gss.o"
IMAP_AUTHOBJS="$IMAP_
AUTHOBJS auth_gss.o"
AC_DEFINE(WITH_GSSAPI,1,[Define if mailutils is using GSSAPI])
fi
fi
AC_SUBST(AUTHOBJS)
MU_CHECK_GSASL(0.0.2, [
AC_DEFINE(WITH_GSASL,1,[Define if mailutils is using GNU SASL])
AUTHLIBS="$AUTHLIBS $GSASL_LIBS"
IMAP_AUTHOBJS="$IMAP_AUTHOBJS auth_gsasl.o"])
MU_CHECK_TLS
if test "$WITH_GNUTLS" != "no"; then
...
...
Please
register
or
sign in
to post a comment