kiss-repo

personal package repository
git clone git://bvnf.space/kiss-repo.git
Log | Files | Refs | README | LICENSE

commit 37769ce035f96daece88c38905f0b980d4c8082b
parent 5004859e365a3388eea2c26f782d3f0eb80a949a
Author: phoebos <ben@bvnf.space>
Date:   Tue, 19 Sep 2023 14:54:47 +0100

netbsd-curses: add comments

Diffstat:
Mnetbsd-curses/build | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/netbsd-curses/build b/netbsd-curses/build @@ -1,5 +1,6 @@ #!/bin/sh -e +export CFLAGS="$CFLAGS -fPIC" make \ LDFLAGS="$LDFLAGS -static" \ DESTDIR="$1" \ @@ -13,3 +14,11 @@ install -Dm755 ncurses5-config "$1/usr/bin/ncurses5-config" # Install the license install -Dm755 COPYING "$1/usr/share/licenses/netbsd-curses/COPYING" + +# note: ncurses has symlinks from the non-wide libs to the wide libs, +# netbsd-curses has symlinks from the wide libs to the non-wide libs +# ie. +# ncurses has /usr/lib/libform.a -> libformw.a +# netbsd-curses has /usr/lib/libformw.a -> libform.a +# +# which makes kiss alternatives get itself into sticky situations going one way.