diff options
author | 1999-05-11 16:21:05 +0000 | |
---|---|---|
committer | 1999-05-11 16:21:05 +0000 | |
commit | 4e56f6eea0b7f3e446a4c0b90c8db232489e6c1d (patch) | |
tree | 137c5fe99616242a94bb59eb70d8887aacab373c | |
parent | writev(2) may return EDESTADDRREQ if a write is attempted to a connect(2)'d (diff) | |
download | wireguard-openbsd-4e56f6eea0b7f3e446a4c0b90c8db232489e6c1d.tar.xz wireguard-openbsd-4e56f6eea0b7f3e446a4c0b90c8db232489e6c1d.zip |
Install termcap.h too. Some packages assume that if you are using
ncurses, termcap.h exists. Others, like X11's resize, use termcap.h
to determine whether or not you are running ncurses.
-rw-r--r-- | lib/libcurses/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurses/Makefile b/lib/libcurses/Makefile index b291542bfec..555c2428735 100644 --- a/lib/libcurses/Makefile +++ b/lib/libcurses/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.37 1999/03/02 06:23:26 millert Exp $ +# $OpenBSD: Makefile,v 1.38 1999/05/11 16:21:05 millert Exp $ # Uncomment this to enable tracing in libcurses #CURSESTRACE=-DTRACE @@ -176,7 +176,7 @@ includes: @cmp -s ${DESTDIR}/usr/include/ncurses.h ${.CURDIR}/curses.h || \ ${INSTALL} ${INSTALL_COPY} -m 444 -o $(BINOWN) -g $(BINGRP) \ ${.CURDIR}/curses.h ${DESTDIR}/usr/include/ncurses.h - @cd ${.CURDIR}; for i in unctrl.h term.h; do \ + @cd ${.CURDIR}; for i in unctrl.h term.h termcap.h; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ ${INSTALL} ${INSTALL_COPY} -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ ${DESTDIR}/usr/include; done |