config.mk: remove ncurses library to link - sob - simple output bar | |
git clone git://git.codemadness.org/sob | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit b46f6c23707a2270319dbe3ba9b20129b8f8d823 | |
parent 839fb50286a96f1deef6c4a53e59d83d23d2a78e | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sat, 11 Oct 2014 00:46:59 +0000 | |
config.mk: remove ncurses library to link | |
Diffstat: | |
M config.mk | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/config.mk b/config.mk | |
@@ -8,7 +8,7 @@ MANPREFIX = ${PREFIX}/share/man | |
# includes and libs | |
INCS = -I. -I/usr/include | |
-LIBS = -L/usr/lib -lc -lncurses | |
+LIBS = -L/usr/lib -lc | |
# flags | |
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809 -D_BSD_SOURCE -D_… |