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
ce2e1107
...
ce2e1107074a441a3dd61c7aaf2bf9639f7821e3
authored
2003-01-20 13:21:36 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Reverted order of checks for libgnutls and libgcrypt. Thanks Simon Josefsson.
1 parent
216963b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
m4/tls.m4
m4/tls.m4
View file @
ce2e110
...
...
@@ -31,11 +31,12 @@ AC_DEFUN(MU_CHECK_TLS,
[WITH_GNUTLS=no])
if test "$WITH_GNUTLS" != "no"; then
saved_LIBS=$LIBS
AC_CHECK_LIB(gnutls, gnutls_global_init,
[TLS_LIBS="-lgnutls"],
[WITH_GNUTLS=no])
AC_CHECK_LIB(gcrypt, main,
[TLS_LIBS="$TLS_LIBS -lgcrypt"],
[TLS_LIBS="-lgcrypt"],
[WITH_GNUTLS=no])
LIBS="$LIBS $TLS_LIBS"
AC_CHECK_LIB(gnutls, gnutls_global_init,
[TLS_LIBS="-lgnutls $TLS_LIBS"],
[WITH_GNUTLS=no])
LIBS=$saved_LIBS
fi
...
...
Please
register
or
sign in
to post a comment