loksh-noxz

[fork] a Linux port of OpenBSD's ksh
git clone https://noxz.tech/git/loksh-noxz.git
Log | Files | README

commit: 528d0ddf4561038d54bc55d7dab8de34f403b27a
parent: fa7eff39f8f0781e4bdc723203dd121c1de3102a
author: Chris Noxz <chris@noxz.tech>
date:   Tue, 8 Oct 2019 21:03:24 +0200
Change ncurses to ncursesw
MMakefile4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -9,8 +9,8 @@ BIN_NAME ?= ksh
 MAN_DIR ?= $(PREFIX)/share/man
 DOC_DIR ?= $(PREFIX)/share/doc/loksh
 
-NCURSES_CFLAGS = $(shell pkg-config --cflags ncurses)
-NCURSES_LDFLAGS = $(shell pkg-config --libs ncurses)
+NCURSES_CFLAGS = $(shell pkg-config --cflags ncursesw)
+NCURSES_LDFLAGS = $(shell pkg-config --libs ncursesw)
 
 OBJECTS = alloc.o c_ksh.o c_sh.o c_test.o c_ulimit.o edit.o emacs.o eval.o \
           exec.o expr.o history.o io.o jobs.o lex.o mail.o main.o misc.o \