client: New configure --with-readline

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2015-12-08 20:57:49 +01:00
parent 1cbda2c7dd
commit 56f426ae9e
3 changed files with 19 additions and 2 deletions

View file

@ -73,7 +73,7 @@ LIBS_util="$LIBS"
LIBS="$LIBS_SOCKETS $LIBS"
AX_LIB_SOCKET_NSL
LIBS_server="$LIBS"
MY_LIB_READLINE
MY_WITH_READLINE
### Checks for header files
@ -235,6 +235,7 @@ AC_OUTPUT
AC_MSG_NOTICE([])
AC_MSG_NOTICE([-= Configuration summary =-])
AC_MSG_NOTICE([Thread package: $empthread])
AC_MSG_NOTICE([ readline: $with_readline])
AC_MSG_NOTICE([ terminfo: $with_terminfo])
AC_MSG_NOTICE([ EMPIREHOST: $EMPIREHOST])
AC_MSG_NOTICE([ EMPIREPORT: $EMPIREPORT])

View file

@ -23,3 +23,18 @@ AC_DEFUN([MY_LIB_READLINE], [
[Define if you have libreadline])
fi
])
AC_DEFUN([MY_WITH_READLINE],
[
AC_ARG_WITH([readline],
[AS_HELP_STRING([--with-readline],
[support fancy command line editing @<:@default=check@:>@])],
[],
[with_readline=check])
if test "x$with_readline" != xno; then
MY_LIB_READLINE
if test "x$have_readline$with_readline" = xnoyes; then
AC_MSG_FAILURE([--with-readline was given, but test for readline failed])
fi
with_readline="$have_readline"
fi])

View file

@ -58,7 +58,7 @@ if test "$Windows_API" = yes; then
AC_LIBOBJ([w32/w32io])
AC_LIBOBJ([w32/w32sockets])
fi
MY_LIB_READLINE
MY_WITH_READLINE
### Checks for header files.
@ -94,6 +94,7 @@ AC_OUTPUT
AC_MSG_NOTICE([])
AC_MSG_NOTICE([-= Configuration summary =-])
AC_MSG_NOTICE([ readline: $with_readline])
AC_MSG_NOTICE([ terminfo: $with_terminfo])
AC_MSG_NOTICE([ EMPIREHOST: $EMPIREHOST])
AC_MSG_NOTICE([ EMPIREPORT: $EMPIREPORT])