summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1999-05-11 16:21:05 +0000
committermillert <millert@openbsd.org>1999-05-11 16:21:05 +0000
commit4e56f6eea0b7f3e446a4c0b90c8db232489e6c1d (patch)
tree137c5fe99616242a94bb59eb70d8887aacab373c
parentwritev(2) may return EDESTADDRREQ if a write is attempted to a connect(2)'d (diff)
downloadwireguard-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/Makefile4
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