From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 263FC3857C74 for ; Sat, 17 Oct 2020 18:35:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 263FC3857C74 Received: from fencepost.gnu.org ([2001:470:142:3::e]:59801) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kTr3R-0008FP-Ko for gdb@sourceware.org; Sat, 17 Oct 2020 14:35:45 -0400 Received: from pool-96-233-64-159.bstnma.fios.verizon.net ([96.233.64.159]:33138 helo=pdslaptop.home) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1kTr3R-00007A-9J for gdb@sourceware.org; Sat, 17 Oct 2020 14:35:45 -0400 Message-ID: Subject: Building gdb without ncursesw? From: Paul Smith Reply-To: psmith@gnu.org To: gdb@sourceware.org Date: Sat, 17 Oct 2020 14:35:44 -0400 Organization: GNU's Not UNIX! Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.36.4-0ubuntu1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_05, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Oct 2020 18:35:48 -0000 Hi all; Is there a way to force gdb to build against ncurses, not ncursesw, even if ncursesw headers/libraries do exist on the system? The problem with ncursesw is that not all distributions put it onto the system by default (everyone has ncurses by default) so if I compile GDB against ncursesw then I have to get everyone to install extra packages. There's really no need (that I can see) for ncursesw since we just always uses utf8 all the time for everything. But, I can't find any configure option or even cache setting I can use to force the use of ncurses. Cheers!