Merge branch 'master' into ossau-gds-dev
[bpt/guile.git] / FAQ
CommitLineData
d53f85dd
NJ
1Guile FAQ -*- outline -*-
2
3* Build problems
4
5** readline.c: error: `rl_pending_input' undeclared
6
7This occurs if the Readline library detected by Guile's configure
8script is actually the BSD Editline project's supposedly
9Readline-compatible library. The immediate fix is to uninstall
10Editline and install the real GNU Readline instead. When you do this,
11please note that it probably won't work to keep Editline in /usr and
12install GNU Readline in /usr/local (or some similar arrangement),
13because the Editline library will then still be picked up at link and
14run time; it's best (subject to other constraints) to remove Editline
15completely.
16
17For the longer term, please also report this problem to the Editline
18project, to encourage them to fix it in the next release of their
19Readline compatibility library.