From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Len Trigg Newsgroups: gmane.emacs.devel Subject: Re: Bug in 256 color terminal, colors > first 8 appear as white Date: Mon, 07 Jul 2008 09:15:35 +1200 Organization: NetValue Ltd. Message-ID: References: <200807040150.m641oRo6002447@sallyv1.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1215378961 25344 80.91.229.12 (6 Jul 2008 21:16:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 6 Jul 2008 21:16:01 +0000 (UTC) Cc: Emacs-Devel devel To: Dan Nicolaescu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jul 06 23:16:46 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KFbb9-0000cp-Ot for ged-emacs-devel@m.gmane.org; Sun, 06 Jul 2008 23:16:44 +0200 Original-Received: from localhost ([127.0.0.1]:60590 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KFbaI-0004xp-Km for ged-emacs-devel@m.gmane.org; Sun, 06 Jul 2008 17:15:50 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KFbaE-0004xk-KI for emacs-devel@gnu.org; Sun, 06 Jul 2008 17:15:46 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KFbaB-0004xX-JW for emacs-devel@gnu.org; Sun, 06 Jul 2008 17:15:45 -0400 Original-Received: from [199.232.76.173] (port=59068 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KFbaB-0004xU-Fw for emacs-devel@gnu.org; Sun, 06 Jul 2008 17:15:43 -0400 Original-Received: from [202.37.129.7] (port=48120 helo=netvalue.net.nz) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KFbaB-00019V-C5 for emacs-devel@gnu.org; Sun, 06 Jul 2008 17:15:43 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by netvalue.net.nz (Postfix) with ESMTP id 10DAA1330E1; Mon, 7 Jul 2008 09:13:20 +1200 (NZST) X-Virus-Scanned: Debian amavisd-new at netvalue.net.nz Original-Received: from netvalue.net.nz ([127.0.0.1]) by localhost (netvalue.net.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id j9yEsFtFcL5x; Mon, 7 Jul 2008 09:13:18 +1200 (NZST) Original-Received: from nepenthes.nz.reeltwo.com (colosus.18londonst.co.nz [131.203.126.193]) by netvalue.net.nz (Postfix) with ESMTP id A328C132443; Mon, 7 Jul 2008 09:13:18 +1200 (NZST) In-Reply-To: <200807040150.m641oRo6002447@sallyv1.ics.uci.edu> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.7 Emacs/23.0.60 (i686-pc-linux-gnu) MULE/6.0 (HANACHIRUSATO) X-Payment: hashcash 1.2 1:10:080706:dann@ics.uci.edu::fS5X3QsWEK7ZxgDq:001HV X-Hashcash: 1:10:080706:dann@ics.uci.edu::fS5X3QsWEK7ZxgDq:001HV X-Payment: hashcash 1.2 1:10:080706:emacs-devel@gnu.org::qUqaFOTaj0l/xJ/A:00000000000000000000000000000000000000000000AQ X-Hashcash: 1:10:080706:emacs-devel@gnu.org::qUqaFOTaj0l/xJ/A:00000000000000000000000000000000000000000000AQ X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 1) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:100395 Archived-At: Dan Nicolaescu wrote: > Do you have the header files for termcap or terminfo or ncurses installed? > > What do you get if you do: > > grep TERM emacs/src/config.h After getting your message, the grep gave me: /* #undef HAVE_TERMCAP_H */ #define HAVE_TERMIOS_H 1 /* #undef HAVE_TERM_H */ So I installed libtermcap-devel (I'm on centos 5.2), and now after doing: make maintainer-clean && ./configure --prefix=/home2/len/local && make bootstrap install the grep gives me: #define HAVE_TERMCAP_H 1 #define HAVE_TERMIOS_H 1 /* #undef HAVE_TERM_H */ Which looks better. However, the newly built emacs still exhibits the same problem. Is there more I need? Cheers, Len.