diff options
author | gdt <gdt@pkgsrc.org> | 2017-03-19 00:23:00 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2017-03-19 00:23:00 +0000 |
commit | 2367855f7e0d3d120b5dc92abf39134396cbc343 (patch) | |
tree | bb69716058b9b0b78ed420bd4db8d3dec779db58 /geography/gpsd | |
parent | e007394ab36a6e7f805d65eb933c9c36e065396a (diff) | |
download | pkgsrc-2367855f7e0d3d120b5dc92abf39134396cbc343.tar.gz |
Require ncurses
The last commit used the curses framework, and allowed NetBSD base
system curses to be used. However, several programs in gpsd use
syncok, which NetBSD 7's curses doesn't have. Resolve this by asking
for ncurses.
Diffstat (limited to 'geography/gpsd')
-rw-r--r-- | geography/gpsd/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/geography/gpsd/Makefile b/geography/gpsd/Makefile index 08927be1943..91206f957a9 100644 --- a/geography/gpsd/Makefile +++ b/geography/gpsd/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.34 2017/01/04 18:06:59 roy Exp $ +# $NetBSD: Makefile,v 1.35 2017/03/19 00:23:00 gdt Exp $ # gpsd 3.11 has been released. It has only not been updated because # newer versions use scons. DISTNAME= gpsd-2.96 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= geography MASTER_SITES= http://download-mirror.savannah.gnu.org/releases/gpsd/ @@ -24,7 +24,8 @@ PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # not yet ported as of 2.96 USE_TOOLS+= gmake USE_LIBTOOL= yes USE_LANGUAGES= c99 c++ -FAKE_NCURSES= yes +# gpsd uses syncok, which is in pkgsrc ncurses but not NetBSD system curses +CURSES_DEFAULT= ncurses CFLAGS.SunOS= -DLOG_PERROR=0 |