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
10a04162
...
10a04162a72b4de7006855e80500a075d1fcaf65
authored
2002-08-15 12:52:47 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
If -lcrypt is present, add it to LIBS, not just AUTHLIBS.
1 parent
ef41686e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
5 deletions
configure.ac
configure.ac
View file @
10a0416
...
...
@@ -301,15 +301,11 @@ if test x"$testpam" = x"yes"; then
AC_CHECK_LIB(pam, pam_start,
AUTHLIBS="$AUTHLIBS -lpam $LDL" ac_cv_have_libpam="yes",, $LDL)
AC_DEFINE(USE_LIBPAM,1,[Enable use of PAM])
AM_CONDITIONAL(USE_LIBPAM, test x"$ac_cv_have_libpam" != xno)
fi
fi
AC_CHECK_HEADERS(crypt.h)
AC_CHECK_FUNCS(crypt)
if test x"$ac_cv_func_crypt" = x"no"; then
AC_CHECK_LIB(crypt, crypt, AUTHLIBS="$AUTHLIBS -lcrypt",, -lcrypt)
fi
AC_CHECK_LIB(crypt, crypt)
AC_SUBST(AUTHLIBS)
AC_SUBST(AUTHINCS)
...
...
Please
register
or
sign in
to post a comment