Author: ngie
Date: Tue Aug 26 09:10:28 2014
New Revision: 270650
URL: http://svnweb.freebsd.org/changeset/base/270650

Log:
  Convert LIBCURSES to LIBNCURSES to fix "make checkdpadd"
  
  Also, add a missing LIBPANEL dependency for lldb
  
  Approved by: rpaulo (mentor)
  Suggested by: brooks
  MFC after: 5 days
  Phabric: D675 (as part of a larger diff)
  PR: 192762

Modified:
  head/usr.bin/bc/Makefile
  head/usr.bin/clang/lldb/Makefile
  head/usr.bin/talk/Makefile
  head/usr.sbin/gstat/Makefile

Modified: head/usr.bin/bc/Makefile
==============================================================================
--- head/usr.bin/bc/Makefile    Tue Aug 26 09:01:11 2014        (r270649)
+++ head/usr.bin/bc/Makefile    Tue Aug 26 09:10:28 2014        (r270650)
@@ -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=
 

Modified: head/usr.bin/clang/lldb/Makefile
==============================================================================
--- head/usr.bin/clang/lldb/Makefile    Tue Aug 26 09:01:11 2014        
(r270649)
+++ head/usr.bin/clang/lldb/Makefile    Tue Aug 26 09:10:28 2014        
(r270650)
@@ -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 \

Modified: head/usr.bin/talk/Makefile
==============================================================================
--- head/usr.bin/talk/Makefile  Tue Aug 26 09:01:11 2014        (r270649)
+++ head/usr.bin/talk/Makefile  Tue Aug 26 09:10:28 2014        (r270650)
@@ -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>

Modified: head/usr.sbin/gstat/Makefile
==============================================================================
--- head/usr.sbin/gstat/Makefile        Tue Aug 26 09:01:11 2014        
(r270649)
+++ head/usr.sbin/gstat/Makefile        Tue Aug 26 09:10:28 2014        
(r270650)
@@ -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>
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to