mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
53 lines
1.3 KiB
Python
53 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
|
|
|
|
conf.CHECK_HEADERS('readline.h history.h readline/readline.h readline/history.h')
|
|
for termlib in ['ncurses', 'curses', 'termcap', 'terminfo', 'termlib', 'tinfo']:
|
|
if conf.CHECK_FUNCS_IN('tgetent', termlib):
|
|
conf.env['READLINE_TERMLIB'] = termlib
|
|
break
|
|
|
|
conf.CHECK_CODE('''
|
|
#ifdef HAVE_READLINE_READLINE_H
|
|
# include <readline/readline.h>
|
|
# ifdef HAVE_READLINE_HISTORY_H
|
|
# include <readline/history.h>
|
|
# endif
|
|
#else
|
|
# ifdef HAVE_READLINE_H
|
|
# include <readline.h>
|
|
# ifdef HAVE_HISTORY_H
|
|
# include <history.h>
|
|
# endif
|
|
# endif
|
|
#endif
|
|
int main(void) {rl_completion_t f; return 0;}
|
|
''',
|
|
'HAVE_RL_COMPLETION_FUNC_T', execute=False, addmain=False,
|
|
msg='Checking for rl_completion_t')
|
|
|
|
conf.CHECK_CODE('''
|
|
#ifdef HAVE_READLINE_READLINE_H
|
|
# include <readline/readline.h>
|
|
# ifdef HAVE_READLINE_HISTORY_H
|
|
# include <readline/history.h>
|
|
# endif
|
|
#else
|
|
# ifdef HAVE_READLINE_H
|
|
# include <readline.h>
|
|
# ifdef HAVE_HISTORY_H
|
|
# include <history.h>
|
|
# endif
|
|
# endif
|
|
#endif
|
|
int main(void) {CPPFunction f; return 0;}
|
|
''',
|
|
'HAVE_CPPFUNCTION', execute=False, addmain=False,
|
|
msg='Checking for CPPFunction')
|
|
|
|
if conf.CHECK_FUNCS_IN('rl_completion_matches', 'readline'):
|
|
conf.DEFINE('HAVE_NEW_LIBREADLINE', 1)
|
|
|
|
if conf.CHECK_FUNCS_IN('history_list', 'readline'):
|
|
conf.DEFINE('HAVE_HISTORY_LIST', 1)
|