NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

RE: lib/57376: libedit tab completion escapes spaces



I've uploaded a new version of bas55 in case you want to check with readline. Note that nothing changes in the source, I only enable --with-readline in the configure.ac that generates the configure script, to link with readline instead of libedit, that's all.

tar -xvzf bas55-1.20.tar.gz
cd bas55-1.20
./configure --with-libedit
make
src/bas55
10 print "hello"
LIST
10 PRINT "HELLO"
10<TAB>
10\ PRINT \"HELLO\"
quit

Now with GNU readline, I assume it is installed through pkgin. I'm sorry, I don't use NetBSD very often and adding these LDFLAGS is my only idea to make this copmile and run, I don't know if there is another better way to do it. Anyway, it works:

./configure LDFLAGS="-L/usr/pkg/lib -Wl,-R/usr/pkg/lib" --with-readline
make
src/bas55
10 print "hello"
10<TAB>
10 PRINT "HELLO"


Home | Main Index | Thread Index | Old Index