I hit the '0xa' bug in 2.5 and was delighted to see its been fixed already. I went to checkout HEAD (r968) and it built fine the first time then I realized there was no readline support so I installed libreadline-dev (7.0-3 in ubuntu 18.04) and the build fails with readline symbols not found:
cli/main.c: In function ‘wcalc_completion’:
cli/main.c:235:17: error: ‘rl_line_buffer’ undeclared (first use in this function); did you mean ‘rl_linebuf_func_t’?
if ('\' == rl_line_buffer[0]) {
^~~~~~~~~~~~~~
rl_linebuf_func_t
cli/main.c:259:43: error: ‘rl_filename_completion_function’ undeclared (first use in this function); did you mean ‘rl_completion_func_t’?
rl_filename_completion_function);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
rl_completion_func_t
etc etc. is there a fix for this? thanks, and thanks for wcalc!!
Ah! Good catch! Here's the fix: https://sourceforge.net/p/w-calc/git/ci/66b24c03e66a557bd2328e550066f22cb03600e6/
Thanks for the bug report!