From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: Re: 23.0; Error in generated makefile on windows xp Date: Sat, 01 Mar 2008 16:53:28 +0200 Message-ID: References: <47C6ECA5.1010502@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1204383231 24251 80.91.229.12 (1 Mar 2008 14:53:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 1 Mar 2008 14:53:51 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org, christoph.conrad@gmx.de To: Jason Rumney Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sat Mar 01 15:54:17 2008 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JVT6N-0001pC-36 for geb-bug-gnu-emacs@m.gmane.org; Sat, 01 Mar 2008 15:54:15 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JVT5q-0003rK-Ip for geb-bug-gnu-emacs@m.gmane.org; Sat, 01 Mar 2008 09:53:42 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JVT5l-0003rC-Jb for bug-gnu-emacs@gnu.org; Sat, 01 Mar 2008 09:53:37 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JVT5j-0003qs-8X for bug-gnu-emacs@gnu.org; Sat, 01 Mar 2008 09:53:36 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JVT5j-0003qp-2n for bug-gnu-emacs@gnu.org; Sat, 01 Mar 2008 09:53:35 -0500 Original-Received: from romy.inter.net.il ([213.8.233.24]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JVT5f-0004aP-2r; Sat, 01 Mar 2008 09:53:31 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-84-229-228-118.inter.net.il [84.229.228.118]) by romy.inter.net.il (MOS 3.7.3-GA) with ESMTP id KKC62488 (AUTH halo1); Sat, 1 Mar 2008 16:53:10 +0200 (IST) In-reply-to: <47C6ECA5.1010502@gnu.org> (message from Jason Rumney on Thu, 28 Feb 2008 17:17:25 +0000) X-detected-kernel: by monty-python.gnu.org: FreeBSD 4.7-5.2 (or MacOS X 10.2-10.4) (2) X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:17626 Archived-At: > Date: Thu, 28 Feb 2008 17:17:25 +0000 > From: Jason Rumney > Cc: bug-gnu-emacs@gnu.org > > Christoph Conrad wrote: > > Current CVS emacs, Visual Studio .NET 2003. > > > > .\configure.bat --with-msvc --without-png --without-jpeg --without-gif --without-tiff --without-xpm > > > > ,---- > > | ifdef USE_FONTBACKEND > > | FONTOBJ = $(BLD)/w32font.$(O) > > | endif > > `---- > > > > in "src\makefile" should be > > > > ,---- > > | !ifdef USE_FONTBACKEND > > | FONTOBJ = $(BLD)/w32font.$(O) > > | !endif > > `---- > > > > '!' is missing at two places. > > > > If someone can come up with a simple fix that does not break the build > when using GNU make/gcc, then it can be installed One way of fixing this would be to move this conditional into gamke.defs and nmake.defs, where one can use the syntax appropriate for each flavor of Make.