diff options
author | roy <roy> | 2013-10-16 23:28:49 +0000 |
---|---|---|
committer | roy <roy> | 2013-10-16 23:28:49 +0000 |
commit | 003a745ef2b4a3963b0976bb0ac06c464d8b43db (patch) | |
tree | 619dea4a60367037000ceb51b4f811297ff4e68d /editors/tweak/patches | |
parent | 87a135be9c7f9fa1ffc4105aadc6fb629520f3df (diff) | |
download | pkgsrc-003a745ef2b4a3963b0976bb0ac06c464d8b43db.tar.gz |
Work with system curses
Diffstat (limited to 'editors/tweak/patches')
-rw-r--r-- | editors/tweak/patches/patch-Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/editors/tweak/patches/patch-Makefile b/editors/tweak/patches/patch-Makefile index 0a4b23948c5..60643a8af25 100644 --- a/editors/tweak/patches/patch-Makefile +++ b/editors/tweak/patches/patch-Makefile @@ -1,6 +1,6 @@ -$NetBSD: patch-Makefile,v 1.1 2013/01/08 10:16:43 wiz Exp $ +$NetBSD: patch-Makefile,v 1.2 2013/10/16 23:28:49 roy Exp $ -DESTDIR support. +DESTDIR and curses support. --- Makefile.orig 2006-05-18 08:27:43.000000000 +0000 +++ Makefile @@ -17,3 +17,12 @@ DESTDIR support. TWEAK := main.o keytab.o actions.o search.o rcfile.o buffer.o btree.o +@@ -34,7 +35,7 @@ ifeq ($(SLANG),yes) + LIBS += -lslang + TWEAK += slang.o + else +-LIBS += -lncurses ++LIBS += -lcurses + TWEAK += curses.o + endif + |