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
87eaa052
...
87eaa052018987b325535a9ca2418b9b4636459f
authored
2002-08-23 06:47:12 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Check if crypt is declared.
1 parent
51ea95ed
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
configure.ac
configure.ac
View file @
87eaa05
...
...
@@ -305,6 +305,16 @@ if test x"$testpam" = x"yes"; then
fi
AC_CHECK_HEADERS(crypt.h)
AC_CHECK_DECLS(crypt, , ,[
#include <unistd.h>
#ifdef HAVE_CRYPT_H
# include <crypt.h>
#endif])
AH_BOTTOM([
#if !HAVE_DECL_CRYPT
char *crypt(const char *key, const char *salt);
#endif])
AC_CHECK_LIB(crypt, crypt)
AC_SUBST(AUTHLIBS)
...
...
Please
register
or
sign in
to post a comment