diff options
author | brooks <brooks@FreeBSD.org> | 2014-07-17 18:24:34 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2014-07-17 18:24:34 +0000 |
commit | ea5a037d1f7b17969046da0165700dcc51245472 (patch) | |
tree | 3ff2151befbc35e13a819af1c5dc8b2239bd1183 /secure/usr.bin | |
parent | 1dcd5569710eaeea64703d6bb3affedc5cc74ce1 (diff) | |
download | FreeBSD-src-ea5a037d1f7b17969046da0165700dcc51245472.zip FreeBSD-src-ea5a037d1f7b17969046da0165700dcc51245472.tar.gz |
Replace all uses of libncurses and libtermcap with their wide character
variants. This allows usable file system images (i.e. those with both a
shell and an editor) to be created with only one copy of the curses library.
Exp-run: antoine
PR: 189842
Discussed with: bapt
Sponsored by: DARPA, AFRL
Diffstat (limited to 'secure/usr.bin')
-rw-r--r-- | secure/usr.bin/sftp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/usr.bin/sftp/Makefile b/secure/usr.bin/sftp/Makefile index 15dcaa5..bb1c325 100644 --- a/secure/usr.bin/sftp/Makefile +++ b/secure/usr.bin/sftp/Makefile @@ -11,8 +11,8 @@ CFLAGS+=-I${SSHDIR} -include ssh_namespace.h SRCS+= roaming_dummy.c .endif -DPADD= ${LIBSSH} ${LIBEDIT} ${LIBNCURSES} -LDADD= -lssh -ledit -lncurses +DPADD= ${LIBSSH} ${LIBEDIT} ${LIBNCURSESW} +LDADD= -lssh -ledit -lncursesw USEPRIVATELIB= ssh .if ${MK_LDNS} != "no" |