diff options
author | 2010-09-06 17:26:17 +0000 | |
---|---|---|
committer | 2010-09-06 17:26:17 +0000 | |
commit | 6bc6570d7fd20fe27f87e204c2ecf395c194fff8 (patch) | |
tree | f71d3f7957c33df4e938c0bb81284e3e9a4e738d /lib/libform | |
parent | add ssh_host_ecdsa_key to /etc; from Mattieu Baptiste <mattieu.b@gmail.com> (diff) | |
download | wireguard-openbsd-6bc6570d7fd20fe27f87e204c2ecf395c194fff8.tar.xz wireguard-openbsd-6bc6570d7fd20fe27f87e204c2ecf395c194fff8.zip |
Enable wide character support in ncurses. It is built into libcurses,
libform, libmenu, libpanel and each library is also linked to a
corresponding "w" version.
This is a major bump for all four libraries.
Thanks to landry, stsp, sthen, naddy, oga, Martin Pieuchot, and anyone
else I've forgotten for testing.
ok naddy krw deraadt
Diffstat (limited to 'lib/libform')
-rw-r--r-- | lib/libform/Makefile | 12 | ||||
-rw-r--r-- | lib/libform/shlib_version | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lib/libform/Makefile b/lib/libform/Makefile index 8ce3ad75cfa..aff6219ef33 100644 --- a/lib/libform/Makefile +++ b/lib/libform/Makefile @@ -57,4 +57,16 @@ includes: ${INSTALL} ${INSTALL_COPY} -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ ${DESTDIR}/usr/include; done +.include <bsd.own.mk> + +afterinstall: + -cd ${DESTDIR}${LIBDIR}; \ + for i in ${_LIBS}; do \ + ln -f $$i `echo $$i | sed 's/form/formw/'`; \ + done +.if (${DEBUGLIBS:L} == "yes") + -cd ${DESTDIR}${LIBDIR}/debug; \ + ln -f lib${LIB}.a lib`echo ${LIB} | sed 's/form/formw/'`.a +.endif + .include <bsd.lib.mk> diff --git a/lib/libform/shlib_version b/lib/libform/shlib_version index d9961ea9fef..3066b9771e7 100644 --- a/lib/libform/shlib_version +++ b/lib/libform/shlib_version @@ -1,2 +1,2 @@ -major=4 +major=5 minor=0 |