This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Compile problems with Readline and Guile 1.3


After this patch (which I applied it manually) I managed at last to
compile guile!


Στις Δευ, 19 Απρ  1999, Rafael E. Herrera εγραψε:
>I got this reply from Karl Eichwalder <ke@suse.de> that allowed me to
>compile guile 1.3.
>
>--
>
>Please, apply the following patch and run `autoconf' before invoking
>./configure again (for the background, have a look at the installation
>mmanual, index term `curses'):
>
>--- configure.in
>+++ configure.in        1999/02/05 14:45:37
>@@ -80,8 +80,12 @@
> if test $ac_cv_func_connect = no; then
>     AC_CHECK_LIB(socket, connect)
> fi
>-AC_CHECK_LIB(termcap, tgoto)
>-AC_CHECK_LIB(readline, readline)
>+dnl should be check for curses terminfo termlib, too?
>+for termlib in ncurses termcap ; do
>+   AC_CHECK_LIB(${termlib}, tgoto, 
>+    [LIBS="-l${termlib} $LIBS"; break])
>+done
>+AC_CHECK_LIB(readline, main)
> AC_CHECK_FUNCS(rl_clear_signals rl_cleanup_after_signal)
> 
> AC_CACHE_CHECK([for rl_getc_function pointer in readline],
>
>
>-- 
>Rafael Herrera
>Laboratory for Computational Neuroscience
>University of Pittsburgh
>http://www.neuronet.pitt.edu/~raffo