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
dc8fe4d0
...
dc8fe4d0a553b73e058a19831ac79ce8b2e2eb1c
authored
2001-06-30 09:18:11 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Call util_save_outgoing() to preserve the message.
Set umask 077 before calling mkstemp().
1 parent
29d84e71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
configure.in
configure.in
View file @
dc8fe4d
...
...
@@ -128,7 +128,7 @@ dnl Check threading support
# We have to rearrange things a little, it appears that the new autoconf
# does not like long cascading AC_CHECK_LIB.
if test x"$usepthread" = x"yes"; then
AC_CHECK_LIB(pthread, pthread_cancel, have_libpthread=yes
AC_CHECK_LIB(pthread, pthread_cancel, have_libpthread=yes
,
have_libpthread=no)
if test x"$have_libpthread" = x"yes"; then
AC_CHECK_HEADERS(pthread.h, AC_DEFINE(WITH_PTHREAD))
...
...
@@ -152,10 +152,14 @@ AC_CHECK_FUNC(socket, [true],
AC_CHECK_LIB(socket, socket, LIBS="-lsocket $LIBS"))
dnl Check for GNU Readline
AC_SUBST(READLINE_LIBS)
if test x"$usereadline" = x"yes"; then
AC_CHECK_LIB(readline, readline,
[AC_CHECK_HEADERS(readline/readline.h, AC_DEFINE(WITH_READLINE))
LIBS="$LIBS -lreadline"])
[AC_CHECK_HEADERS(readline/readline.h,
AC_DEFINE(WITH_READLINE))
READLINE_LIBS="-lcurses -lreadline"],
:,
-lcurses)
fi
dnl Check for Berkeley DB
...
...
Please
register
or
sign in
to post a comment