💾 Archived View for thrig.me › tech › openbsd › readline.gmi captured on 2024-05-10 at 12:35:56. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-07-10)
-=-=-=-=-=-=-
How to get readline 8 on OpenBSD 7.3. (These notes are historical as I rewrote my midnoi(1) tool to instead use editline.)
$ localarchdir OpenBSD7.3-amd64 $ ./configure --prefix=~/usr/`localarchdir` && make && make install ...
This is something of a kluge, but the lib/pkgconfig/readline.pc file needs modifiction, notably to remove the termcap line, to add -lncurses, and to use rpath linking.
prefix=/home/jmates/usr/OpenBSD7.3-amd64 exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: Readline Description: Gnu Readline library for command line editing URL: http://tiswww.cwru.edu/php/chet/readline/rltop.html Version: 8.2 Libs: -Wl,-R ${libdir} -L${libdir} -lreadline -lncurses Cflags: -I${includedir}
https://thrig.me/src/lingua.git
$ grep midnoi Makefile midnoi: midnoi.c $(CC) $(CFLAGS) `pkg-config --cflags --libs readline sqlite3` midnoi.c -o midnoi $ echo $PKG_CONFIG_PATH /home/jmates/usr/OpenBSD7.3-amd64/lib/pkgconfig:/usr/local/lib/pkgconfig $ ldd ./midnoi | grep readl 00000628bea8b000 00000628beaea000 rlib 0 1 0 /home/jmates/usr/OpenBSD7.3-amd64/lib/libreadline.so.8.2
tags #readline #openbsd