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
ddb7d1ef
...
ddb7d1ef7758602f7b47b093055204d9d0beb598
authored
2002-02-07 07:47:57 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
New option: --with-gssapi
1 parent
4e5c6eae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
configure.in
configure.in
View file @
ddb7d1e
...
...
@@ -38,6 +38,25 @@ AC_ARG_WITH(readline,
*) AC_MSG_ERROR(bad value ${withval} for --without-readline) ;;
esac],[usereadline=yes])
AC_ARG_WITH(gssapi,
[ --with-gssapi use GSSAPI authentication ],
[WITH_GSSAPI=$withval],
[WITH_GSSAPI=no])
if test "x$WITH_GSSAPI" != "xno"; then
MU_CHECK_GSSAPI($WITH_GSSAPI)
if test "$GSSAPI_IMPL" = "none"; then
AC_CACHE_SAVE
AC_MSG_RESULT([GSSAPI libraries not found])
else
AUTHLIBS="$AUTHLIBS $GSSAPI_LIBS"
AUTHINCS="$AUTHINCS $GSSAPI_CFLAGS"
AUTHOBJS="$AUTHOBJS auth_gss.o"
AC_DEFINE(WITH_GSSAPI)
fi
fi
AC_SUBST(AUTHOBJS)
AC_ARG_WITH(guile,
[ --without-guile do not build guile interface],
[case "${withval}" in
...
...
@@ -218,6 +237,7 @@ if test x"$ac_cv_have_libpam" != x"yes"; then
fi
fi
AC_SUBST(AUTHLIBS)
AC_SUBST(AUTHINCS)
#When using thread support some platforms need -D_REENTRANT to get the
#right prototypes including errno.
...
...
Please
register
or
sign in
to post a comment