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
5c6772fe
...
5c6772feb20b57059246edb25691f079ce60297b
authored
2002-02-18 08:33:17 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Check for rl_completion_matches being present.
1 parent
70f54114
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
configure.in
configure.in
View file @
5c6772f
...
...
@@ -276,7 +276,11 @@ if test x"$usereadline" = x"yes"; then
AC_CHECK_LIB(readline, readline,
[AC_CHECK_HEADERS(readline/readline.h,
AC_DEFINE(WITH_READLINE))
READLINE_LIBS="-lcurses -lreadline"],
READLINE_LIBS="-lcurses -lreadline"
saved_LIBS=$LIBS
LIBS="$LIBS $READLINE_LIBS"
AC_CHECK_FUNCS(rl_completion_matches)
LIBS=$saved_LIBS],
:,
-lcurses)
fi
...
...
Please
register
or
sign in
to post a comment