mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
7055827b8f
This makes it clearer that we always want to do heimdal changes via the lorikeet-heimdal repository. Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz> Autobuild-User(master): Joseph Sutton <jsutton@samba.org> Autobuild-Date(master): Wed Jan 19 21:41:59 UTC 2022 on sn-devel-184
29 lines
543 B
Plaintext
29 lines
543 B
Plaintext
dnl $Id$
|
|
dnl
|
|
dnl Tests for readline functions
|
|
dnl
|
|
|
|
dnl el_init
|
|
|
|
AC_DEFUN([KRB_READLINE],[
|
|
|
|
dnl readline
|
|
|
|
ac_foo=no
|
|
build_editline=no
|
|
if test "$with_readline" = yes; then
|
|
:
|
|
elif test "$with_libedit" = yes; then
|
|
LIB_readline="${LIB_libedit}"
|
|
elif test "$ac_cv_func_readline" = yes; then
|
|
:
|
|
else
|
|
build_libedit=yes
|
|
LIB_readline="\$(top_builddir)/lib/libedit/src/libheimedit.la \$(LIB_tgetent)"
|
|
fi
|
|
AM_CONDITIONAL(LIBEDIT, test "$build_libedit" = yes)
|
|
AC_DEFINE(HAVE_READLINE, 1,
|
|
[Define if you have a readline compatible library.])dnl
|
|
|
|
])
|