diff options
author | roy <roy@pkgsrc.org> | 2013-10-16 23:28:49 +0000 |
---|---|---|
committer | roy <roy@pkgsrc.org> | 2013-10-16 23:28:49 +0000 |
commit | 5adbd5b09f41e852f7f5519530df30dc48de1915 (patch) | |
tree | 619dea4a60367037000ceb51b4f811297ff4e68d /editors/tweak/patches/patch-Makefile | |
parent | df49eac8e1501bb97d58a9c13d7d11fbc910d204 (diff) | |
download | pkgsrc-5adbd5b09f41e852f7f5519530df30dc48de1915.tar.gz |
Work with system curses
Diffstat (limited to 'editors/tweak/patches/patch-Makefile')
-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 + |