From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Taylor Venable Newsgroups: gmane.emacs.devel Subject: No XFT in CVS from this morning Date: Tue, 17 Jun 2008 11:21:22 -0400 Message-ID: <20080617112122.177cb232.taylor@metasyntax.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1213716206 20348 80.91.229.12 (17 Jun 2008 15:23:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 17 Jun 2008 15:23:26 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jun 17 17:24:09 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 1K8d2H-0007uK-W7 for ged-emacs-devel@m.gmane.org; Tue, 17 Jun 2008 17:23:56 +0200 Original-Received: from localhost ([127.0.0.1]:38280 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K8d1S-0007BN-3Q for ged-emacs-devel@m.gmane.org; Tue, 17 Jun 2008 11:23:02 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K8d0y-0006nx-CK for emacs-devel@gnu.org; Tue, 17 Jun 2008 11:22:32 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K8d0g-0006hP-5B for emacs-devel@gnu.org; Tue, 17 Jun 2008 11:22:29 -0400 Original-Received: from [199.232.76.173] (port=33672 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K8d0f-0006hM-VZ for emacs-devel@gnu.org; Tue, 17 Jun 2008 11:22:14 -0400 Original-Received: from mout.perfora.net ([74.208.4.194]:53729) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K8d0c-0004Td-L3 for emacs-devel@gnu.org; Tue, 17 Jun 2008 11:22:13 -0400 Original-Received: from lionel (75-149-208-122-Illinois.hfc.comcastbusiness.net [75.149.208.122]) by mrelay.perfora.net (node=mrus0) with ESMTP (Nemesis) id 0MKp8S-1K8d0B1twX-0003Yt; Tue, 17 Jun 2008 11:21:44 -0400 X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.9; x86_64--netbsd) X-Provags-ID: V01U2FsdGVkX18R7P50AenaKE1wPCpKwI3bbNUQ8E6lskutsam Tm54kSZ9r67eltxJQ9glBOW6Ds66ZAjENKnlIOQcoMVu0VwAh+ +oTLsZA42EqL/p1ZOG/pw== X-detected-kernel: by monty-python.gnu.org: Genre and OS details not recognized. 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:99345 Archived-At: I built Emacs from CVS this morning, and there's no font anti-aliasing being done. Here are the hopefully relevant lines from configure: checking XFT_CFLAGS... -D_POSIX_THREAD_SAFE_FUNCTIONS -I/usr/pkg/include -I/usr/pkg/include/freetype2 checking XFT_LIBS... -Wl,-R/usr/pkg/lib -L/usr/pkg/lib -lXft -lXrender -lfontconfig -lfreetype -lz -lX11 checking X11/Xft/Xft.h usability... yes checking X11/Xft/Xft.h presence... yes checking for X11/Xft/Xft.h... yes checking for XftFontOpen in -lXft... yes checking for pkg-config... (cached) /usr/pkg/bin/pkg-config checking for libotf... no checking for pkg-config... (cached) /usr/pkg/bin/pkg-config checking for m17n-flt... no Platform is NetBSD 4.99.63 on AMD64 with GCC 4.1.3 -- let me know if anything else would be useful. This was working on a build from probably about a month ago, but that was the last one I did until this morning, so about anything in-between I cannot say. Nothing else in the configuration has changed, and the behaviour is the same with or without "-q". Thanks, -- Taylor Venable http://real.metasyntax.net:2357/ foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or [f(l[0], foldr(f, i, l[1:]))])[0]