From owner-freebsd-stable@FreeBSD.ORG Tue Mar 3 09:38:12 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0D9152E for ; Tue, 3 Mar 2015 09:38:12 +0000 (UTC) Received: from hermes.heuristicsystems.com.au (hermes.heuristicsystems.com.au [203.41.22.115]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "hermes.heuristicsystems.com.au", Issuer "Heuristic Systems Type 4 Host CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F587CC7 for ; Tue, 3 Mar 2015 09:38:11 +0000 (UTC) Received: from [10.0.5.3] (ewsw01.hs [10.0.5.3]) (authenticated bits=0) by hermes.heuristicsystems.com.au (8.14.5/8.13.6) with ESMTP id t239LMNQ080021 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Tue, 3 Mar 2015 20:21:27 +1100 (EST) (envelope-from dewayne.geraghty@heuristicsystems.com.au) Message-ID: <54F57CF9.8000704@heuristicsystems.com.au> Date: Tue, 03 Mar 2015 20:20:57 +1100 From: Dewayne Geraghty User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: FreeBSD Stable Mailing List Subject: buildworld without libncursesw Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2015 09:38:12 -0000 Is there a preferred way to buildworld without libncursesw? When I add to /etc/src.conf WITHOUT_NCURSESW=yes I find that a buildworld fails due to missing libncursesw.*. So what uses libncurses? These guys do /usr/bin/dialog /usr/bin/dpv /usr/sbin/sade -> /usr/libexec/bsdinstall/partedit /usr/sbin/tzsetup Getting a little frustrated I modifed the Makefile:, so for example dialog (/usr/src/contrib/dialog) +.include + +.if ${MK_NCURSESW} == "no" +DPADD= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSES} ${LIBUTIL} ${LIBM} +LDADD= -ldpv -ldialog -lfigpar -lncurses -lutil -lm +.else DPADD= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBUTIL} ${LIBM} LDADD= -ldpv -ldialog -lfigpar -lncursesw -lutil -lm +.endif And checking # make -VMK_NCURSESW no I'm at a bit of a loss as to why these are proving difficult to build, or what I can do to get the desired outcome, ie no libncursesw.so* Dewayne.