diff options
| author | Enji Cooper <ngie@FreeBSD.org> | 2014-08-26 09:10:28 +0000 |
|---|---|---|
| committer | Enji Cooper <ngie@FreeBSD.org> | 2014-08-26 09:10:28 +0000 |
| commit | e5516195c61143a6be0d9cb0bb44edbdbeea5946 (patch) | |
| tree | 1b0d4bc43b0f2ea7ee75d8b422a4d1739f11e27b | |
| parent | 35829c84f1a820e48b4c74243e287c62003cdb92 (diff) | |
Notes
| -rw-r--r-- | usr.bin/bc/Makefile | 4 | ||||
| -rw-r--r-- | usr.bin/clang/lldb/Makefile | 4 | ||||
| -rw-r--r-- | usr.bin/talk/Makefile | 4 | ||||
| -rw-r--r-- | usr.sbin/gstat/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/bc/Makefile b/usr.bin/bc/Makefile index 5fd918d055c7b..d2f26f135f6a8 100644 --- a/usr.bin/bc/Makefile +++ b/usr.bin/bc/Makefile @@ -5,8 +5,8 @@ PROG= bc SRCS= bc.y scan.l tty.c CFLAGS+= -I. -I${.CURDIR} -LDADD+= -ledit -lcurses -DPADD+= ${LIBEDIT} ${LIBCURSES} +DPADD+= ${LIBEDIT} ${LIBNCURSESW} +LDADD+= -ledit -lncursesw NO_WMISSING_VARIABLE_DECLARATIONS= diff --git a/usr.bin/clang/lldb/Makefile b/usr.bin/clang/lldb/Makefile index b8dc38e3eee04..92e26400eea43 100644 --- a/usr.bin/clang/lldb/Makefile +++ b/usr.bin/clang/lldb/Makefile @@ -16,8 +16,8 @@ SRCS= Driver.cpp \ lldb.1: ln -fs ${LLDB_SRCS}/docs/lldb.1 ${.TARGET} -DPADD= ${LIBEDIT} ${LIBCURSES} ${LIBEXECINFO} -LDADD= -lcurses -ledit -lexecinfo -lpanel +DPADD= ${LIBEDIT} ${LIBNCURSESW} ${LIBEXECINFO} ${LIBPANEL} +LDADD= -ledit -lncursesw -lexecinfo -lpanel LLDB_LIBS=\ lldb \ diff --git a/usr.bin/talk/Makefile b/usr.bin/talk/Makefile index 438542ca65a7c..eb14d22ab8c24 100644 --- a/usr.bin/talk/Makefile +++ b/usr.bin/talk/Makefile @@ -4,7 +4,7 @@ PROG= talk SRCS= ctl.c ctl_transact.c display.c get_addrs.c get_iface.c get_names.c \ init_disp.c invite.c io.c look_up.c msgs.c talk.c -DPADD= ${LIBCURSESW} -LDADD= -lcursesw +DPADD= ${LIBNCURSESW} +LDADD= -lncursesw .include <bsd.prog.mk> diff --git a/usr.sbin/gstat/Makefile b/usr.sbin/gstat/Makefile index 2a6da4089afa3..8aceec07d4871 100644 --- a/usr.sbin/gstat/Makefile +++ b/usr.sbin/gstat/Makefile @@ -2,7 +2,7 @@ PROG= gstat MAN= gstat.8 -DPADD= ${LIBDEVSTAT} ${LIBKVM} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} ${LIBEDIT} ${LIBCURSES} -LDADD= -ldevstat -lkvm -lgeom -lbsdxml -lsbuf -ledit -lcurses +DPADD= ${LIBDEVSTAT} ${LIBKVM} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF} ${LIBEDIT} ${LIBNCURSESW} +LDADD= -ldevstat -lkvm -lgeom -lbsdxml -lsbuf -ledit -lncursesw .include <bsd.prog.mk> |
