Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Mar 2014 03:09:16 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r262643 - in stable/10: gnu/usr.bin/dialog lib/ncurses share/mk usr.bin/systat usr.bin/vi usr.sbin/bsdinstall/distextract usr.sbin/bsdinstall/distfetch usr.sbin/bsdinstall/partedit usr....
Message-ID:  <201403010309.s2139Gck030962@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brooks
Date: Sat Mar  1 03:09:16 2014
New Revision: 262643
URL: http://svnweb.freebsd.org/changeset/base/262643

Log:
  MFC r261296:
  
  Merge from CheriBSD:
  commit c1acf022c533c5ae27e0cd556977eafe3f5959eb
  Author: Brooks Davis <brooks@one-eyed-alien.net>
  Date:   Fri Jan 17 21:46:44 2014 +0000
  
  	Add an option WITHOUT_NCURSESW to suppress building and linking to
  	libncursesw.  While wide character support it useful we'd like to
  	only need one ncurses library on embedded systems.
  
  Sponsored by:	DARPA, AFRL

Modified:
  stable/10/gnu/usr.bin/dialog/Makefile
  stable/10/lib/ncurses/Makefile
  stable/10/share/mk/bsd.own.mk
  stable/10/usr.bin/systat/Makefile
  stable/10/usr.bin/systat/main.c
  stable/10/usr.bin/vi/Makefile
  stable/10/usr.sbin/bsdinstall/distextract/Makefile
  stable/10/usr.sbin/bsdinstall/distfetch/Makefile
  stable/10/usr.sbin/bsdinstall/partedit/Makefile
  stable/10/usr.sbin/tzsetup/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/gnu/usr.bin/dialog/Makefile
==============================================================================
--- stable/10/gnu/usr.bin/dialog/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/gnu/usr.bin/dialog/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -3,11 +3,21 @@
 DIALOG=	${.CURDIR}/../../../contrib/dialog
 PROG=   dialog
 
-DPADD=	${LIBDIALOG} ${LIBNCURSESW} ${LIBM}
-LDADD=	-ldialog -lncursesw -lm
+DPADD=	${LIBDIALOG} ${LIBM}
+LDADD=	-ldialog -lm
 CFLAGS+= -I${.CURDIR} -I${DIALOG}
 .PATH:	${DIALOG}
 
 WARNS?= 6
 
+.include <bsd.own.mk>
+
+.if ${MK_NCURSESW} == "no"
+DPADD+=	${LIBNCURSES}
+LDADD+=	-lncurses
+.else
+DPADD+=	${LIBNCURSESW}
+LDADD+=	-lncursesw
+.endif
+
 .include <bsd.prog.mk>

Modified: stable/10/lib/ncurses/Makefile
==============================================================================
--- stable/10/lib/ncurses/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/lib/ncurses/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -1,6 +1,11 @@
 # $FreeBSD$
 
-SUBDIR=	ncurses form menu panel \
-	ncursesw formw menuw panelw
+.include <bsd.own.mk>
+
+SUBDIR=	ncurses form menu panel
+
+.if ${MK_NCURSESW} != "no"
+SUBDIR+=	ncursesw formw menuw panelw
+.endif
 
 .include <bsd.subdir.mk>

Modified: stable/10/share/mk/bsd.own.mk
==============================================================================
--- stable/10/share/mk/bsd.own.mk	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/share/mk/bsd.own.mk	Sat Mar  1 03:09:16 2014	(r262643)
@@ -313,6 +313,7 @@ __DEFAULT_YES_OPTIONS = \
     MAILWRAPPER \
     MAKE \
     MAN \
+    NCURSESW \
     NDIS \
     NETCAT \
     NETGRAPH \

Modified: stable/10/usr.bin/systat/Makefile
==============================================================================
--- stable/10/usr.bin/systat/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/usr.bin/systat/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -16,7 +16,16 @@ CFLAGS+= -DINET6
 
 WARNS?=	0
 
-DPADD=	${LIBNCURSESW} ${LIBM} ${LIBDEVSTAT} ${LIBKVM}
-LDADD=	-lncursesw -lm -ldevstat -lkvm
+DPADD=	${LIBM} ${LIBDEVSTAT} ${LIBKVM}
+LDADD=	-lm -ldevstat -lkvm
+
+.if ${MK_NCURSESW} == "no"
+DPADD+=		${LIBNCURSES}
+LDADD+=		-lncurses
+.else
+CFLAGS+=	-DUSE_WIDECHAR
+DPADD+=		${LIBNCURSESW}
+LDADD+=		-lncursesw
+.endif
 
 .include <bsd.prog.mk>

Modified: stable/10/usr.bin/systat/main.c
==============================================================================
--- stable/10/usr.bin/systat/main.c	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/usr.bin/systat/main.c	Sat Mar  1 03:09:16 2014	(r262643)
@@ -84,7 +84,11 @@ main(int argc, char **argv)
 	size_t	size;
 	double t;
 
+#ifdef USE_WIDECHAR
 	(void) setlocale(LC_ALL, "");
+#else
+	(void) setlocale(LC_TIME, "");
+#endif
 
 	argc--, argv++;
 	while (argc > 0) {

Modified: stable/10/usr.bin/vi/Makefile
==============================================================================
--- stable/10/usr.bin/vi/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/usr.bin/vi/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -36,7 +36,7 @@ CFLAGS+=-I${.CURDIR} -I${SRCDIR} -I${SRC
 DPADD=		${LIBUTIL}
 LDADD=		-lutil
 
-.if defined(RESCUE) || defined(RELEASE_CRUNCH)
+.if defined(RESCUE) || defined(RELEASE_CRUNCH) || ${MK_NCURSESW} == "no"
 DPADD+=		${LIBNCURSES}
 LDADD+=		-lncurses
 .else

Modified: stable/10/usr.sbin/bsdinstall/distextract/Makefile
==============================================================================
--- stable/10/usr.sbin/bsdinstall/distextract/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/usr.sbin/bsdinstall/distextract/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -2,10 +2,20 @@
 
 BINDIR= /usr/libexec/bsdinstall
 PROG=	distextract
-DPADD=	${LIBARCHIVE} ${LIBNCURSESW} ${LIBDIALOG} ${LIBM}
-LDADD=	-larchive -lncursesw -ldialog -lm
+DPADD=	${LIBARCHIVE} ${LIBDIALOG} ${LIBM}
+LDADD=	-larchive -ldialog -lm
 
 WARNS?=	6
 NO_MAN=	true
 
+.include <bsd.own.mk>
+
+.if ${MK_NCURSESW} == "no"
+DPADD+=	${LIBNCURSES}
+LDADD+=	-lncurses
+.else
+DPADD+=	${LIBNCURSESW}
+LDADD+=	-lncursesw
+.endif
+
 .include <bsd.prog.mk>

Modified: stable/10/usr.sbin/bsdinstall/distfetch/Makefile
==============================================================================
--- stable/10/usr.sbin/bsdinstall/distfetch/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/usr.sbin/bsdinstall/distfetch/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -2,10 +2,20 @@
 
 BINDIR= /usr/libexec/bsdinstall
 PROG=	distfetch
-DPADD=	${LIBFETCH} ${LIBNCURSESW} ${LIBDIALOG} ${LIBM}
-LDADD=	-lfetch -lncursesw -ldialog -lm
+DPADD=	${LIBFETCH} ${LIBDIALOG} ${LIBM}
+LDADD=	-lfetch -ldialog -lm
 
 WARNS?=	6
 NO_MAN=	true
 
+.include <bsd.own.mk>
+
+.if ${MK_NCURSESW} == "no"
+DPADD+=	${LIBNCURSES}
+LDADD+=	-lncurses
+.else
+DPADD+=	${LIBNCURSESW}
+LDADD+=	-lncursesw
+.endif
+
 .include <bsd.prog.mk>

Modified: stable/10/usr.sbin/bsdinstall/partedit/Makefile
==============================================================================
--- stable/10/usr.sbin/bsdinstall/partedit/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/usr.sbin/bsdinstall/partedit/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -5,8 +5,8 @@ PROG=	partedit
 LINKS= ${BINDIR}/partedit ${BINDIR}/autopart \
        ${BINDIR}/partedit ${BINDIR}/scriptedpart
 SYMLINKS= ${BINDIR}/partedit /usr/sbin/sade
-DPADD=	${LIBGEOM} ${LIBNCURSESW} ${LIBUTIL} ${LIBDIALOG} ${LIBM}
-LDADD=	-lgeom -lncursesw -lutil -ldialog -lm
+DPADD=	${LIBGEOM} ${LIBUTIL} ${LIBDIALOG} ${LIBM}
+LDADD=	-lgeom -lutil -ldialog -lm
 
 PARTEDIT_ARCH= ${MACHINE}
 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
@@ -22,4 +22,14 @@ SRCS=	diskeditor.c partedit.c gpart_ops.
 WARNS?=	3
 MAN= sade.8
 
+.include <bsd.own.mk>
+
+.if ${MK_NCURSESW} == "no"
+DPADD+=	${LIBNCURSES}
+LDADD+=	-lncurses
+.else
+DPADD+=	${LIBNCURSESW}
+LDADD+=	-lncursesw
+.endif
+
 .include <bsd.prog.mk>

Modified: stable/10/usr.sbin/tzsetup/Makefile
==============================================================================
--- stable/10/usr.sbin/tzsetup/Makefile	Sat Mar  1 02:57:22 2014	(r262642)
+++ stable/10/usr.sbin/tzsetup/Makefile	Sat Mar  1 03:09:16 2014	(r262643)
@@ -7,7 +7,17 @@ CFLAGS+= -I${.CURDIR}/../../contrib/dial
 
 WARNS?=	3
 
-DPADD=	${LIBDIALOG} ${LIBNCURSESW} ${LIBM}
-LDADD=	-ldialog -lncursesw -lm
+DPADD=	${LIBDIALOG} ${LIBM}
+LDADD=	-ldialog -lm
+
+.include <bsd.own.mk>
+
+.if ${MK_NCURSESW} == "no"
+DPADD+=	${LIBNCURSES}
+LDADD+=	-lncurses
+.else
+DPADD+=	${LIBNCURSESW}
+LDADD+= -lncursesw
+.endif
 
 .include <bsd.prog.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403010309.s2139Gck030962>