Mon Jun 6 01:24:11 2022 UTC ()
curses.builtin.mk: fix a typo in a comment


(gutteridge)
diff -r1.20 -r1.21 pkgsrc/mk/curses.builtin.mk

cvs diff -r1.20 -r1.21 pkgsrc/mk/curses.builtin.mk (expand / switch to unified diff)

--- pkgsrc/mk/curses.builtin.mk 2019/06/17 18:19:55 1.20
+++ pkgsrc/mk/curses.builtin.mk 2022/06/06 01:24:11 1.21
@@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
1# $NetBSD: curses.builtin.mk,v 1.20 2019/06/17 18:19:55 sjmulder Exp $ 1# $NetBSD: curses.builtin.mk,v 1.21 2022/06/06 01:24:11 gutteridge Exp $
2 2
3BUILTIN_PKG:= curses 3BUILTIN_PKG:= curses
4 4
5BUILTIN_FIND_LIBS:= curses 5BUILTIN_FIND_LIBS:= curses
6BUILTIN_FIND_HEADERS_VAR:= H_CURSES 6BUILTIN_FIND_HEADERS_VAR:= H_CURSES
7BUILTIN_FIND_HEADERS.H_CURSES= curses.h 7BUILTIN_FIND_HEADERS.H_CURSES= curses.h
8 8
9# Functions and defines to search for. 9# Functions and defines to search for.
10# These are valid USE_CURSES options and will determine whether the 10# These are valid USE_CURSES options and will determine whether the
11# package can use the builtin curses or not. 11# package can use the built-in curses or not.
12# 12#
13BUILTIN_TEST_CURSES_FUNCS= chgat getsyx halfdelay putwin 13BUILTIN_TEST_CURSES_FUNCS= chgat getsyx halfdelay putwin
14BUILTIN_TEST_CURSES_FUNCS+= resize_term resizeterm ripoffline set_escdelay syncok 14BUILTIN_TEST_CURSES_FUNCS+= resize_term resizeterm ripoffline set_escdelay syncok
15BUILTIN_TEST_CURSES_FUNCS+= wgetnstr wsyncup mvwchgat vw_printw 15BUILTIN_TEST_CURSES_FUNCS+= wgetnstr wsyncup mvwchgat vw_printw
16BUILTIN_TEST_CURSES_FUNCS+= getmouse 16BUILTIN_TEST_CURSES_FUNCS+= getmouse
17BUILTIN_TEST_CURSES_DEFINES= WA_NORMAL 17BUILTIN_TEST_CURSES_DEFINES= WA_NORMAL
18 18
19.for func in ${BUILTIN_TEST_CURSES_FUNCS} 19.for func in ${BUILTIN_TEST_CURSES_FUNCS}
20BUILTIN_FIND_FILES_VAR+= H_CURSES_${func:tu} 20BUILTIN_FIND_FILES_VAR+= H_CURSES_${func:tu}
21BUILTIN_FIND_FILES.H_CURSES_${func:tu}= ${H_CURSES} 21BUILTIN_FIND_FILES.H_CURSES_${func:tu}= ${H_CURSES}
22BUILTIN_FIND_GREP.H_CURSES_${func:tu}= ${func} 22BUILTIN_FIND_GREP.H_CURSES_${func:tu}= ${func}
23.endfor 23.endfor
24 24