diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-11 08:56:46 +0000 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-21 23:48:24 +0000 |
commit | f740ad3774c1adc7844451dd561c7de143766635 (patch) | |
tree | 9a3fca50cbcac9b78a4be880cadac30ff6b5d174 /INSTALL | |
parent | e3af05db9554662a5a8f3b15ebbe1dc5697643f8 (diff) | |
download | sciteco-f740ad3774c1adc7844451dd561c7de143766635.tar.gz |
fully support NetBSD with its native libcurses
* It requires a forced refresh on startup (even though that should be the
default). Otherwise, it wouldn't print the info line correctly.
* Redirect stdin and pass it to newterm() to fix key queuing.
Probably necessary for supporting ncurses on NetBSD as well.
* Avoid doupdate() if screen is too small: fixes crashes for very
small windows.
* Updated Scintilla: There were some implicit typing assumptions,
that are broken by this platform.
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -67,9 +67,14 @@ The same on Fedora: And on FreeBSD: - $ sudo pkg install git gmake pkgconfig autoconf automake libtool \ + $ sudo pkg install git gmake pkgconf autoconf automake libtool \ glib gtk3 groff doxygen +On NetBSD: + + $ sudo pkgin install git gmake pkg-config autoconf automake libtool-base \ + glib2 gtk3+ doxygen + Building from Source Tar Ball or Repository =========================================== |