From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman (gmail)" Newsgroups: gmane.emacs.devel Subject: Re: Still cannot build native windows version of emacs 23.* Date: Sat, 09 Feb 2008 02:51:37 +0100 Message-ID: <47AD0729.8030307@gmail.com> References: <47A6F0BA.7020806@gnu.org> <47ACC94A.8050704@gmail.com> <47ACDCFA.3040103@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1202521925 10400 80.91.229.12 (9 Feb 2008 01:52:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 9 Feb 2008 01:52:05 +0000 (UTC) Cc: emacs-devel@gnu.org, Jason Rumney To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 09 02:52:26 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 1JNetG-0007mX-C5 for ged-emacs-devel@m.gmane.org; Sat, 09 Feb 2008 02:52:26 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JNeso-0003EM-15 for ged-emacs-devel@m.gmane.org; Fri, 08 Feb 2008 20:51:58 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JNesi-0003E9-Ke for emacs-devel@gnu.org; Fri, 08 Feb 2008 20:51:52 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JNesg-0003Dx-9F for emacs-devel@gnu.org; Fri, 08 Feb 2008 20:51:51 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JNesg-0003Du-2I for emacs-devel@gnu.org; Fri, 08 Feb 2008 20:51:50 -0500 Original-Received: from ch-smtp01.sth.basefarm.net ([80.76.149.212]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JNesY-0004ql-8H; Fri, 08 Feb 2008 20:51:42 -0500 Original-Received: from c83-254-148-228.bredband.comhem.se ([83.254.148.228]:64387 helo=[127.0.0.1]) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.68) (envelope-from ) id 1JNesW-00066f-4m; Sat, 09 Feb 2008 02:51:40 +0100 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.666 In-Reply-To: <47ACDCFA.3040103@gmail.com> X-Antivirus: avast! (VPS 080208-0, 2008-02-08), Outbound message X-Antivirus-Status: Clean X-Originating-IP: 83.254.148.228 X-Scan-Result: No virus found in message 1JNesW-00066f-4m. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1JNesW-00066f-4m 11b42b8217e66139b4242a674fb40a4d X-detected-kernel: by monty-python.gnu.org: Linux 2.6? (barebone, rare!) 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:88562 Archived-At: Lennart Borgman (gmail) wrote: > But now I get > > Generating autoloads for find-dired.el...done > Generating autoloads for find-file.el... > Generating autoloads for find-file.el...done > Generating autoloads for find-lisp.el... > Generating autoloads for find-lisp.el...done > Local variables entry is missing the suffix > make[1]: *** [autoloads] Error -1 > make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' > make: *** [bootstrap-gmake] Error 2 Further adventures: It looks like file endings are handled badly somewhere. I dumped some info in hack-local-variables: (message "-- %s: (%s)" file (buffer-substring-no-properties startpos endpos)) ... (if (looking-back suffix) delete-region (match-beginning 0) (point)) ;;(error "Local variables entry is missing the suffix")) (error "Local variables entry in %s is missing the suffix (suffix chars: %s), line:\n%s" file (append suffix nil) (buffer-substring-no-properties (line-beginning-position) (line-end-position)) )) The error message above showed that there was a CR (13) at the end of the line when processing finder-inf.el. When I changed the line endings from DOS to Unix this file got processed ok, but later on I got Generating autoloads for kermit.el...done Generating autoloads for kmacro.el... Generating autoloads for kmacro.el...done -- c:/eclean/bld/emacs/lisp/ldefs-boot.el: (;; version-control: never ;; no-byte-compile: t ;; no-update-autoloads: t ) Local variables entry in c:/eclean/bld/emacs/lisp/ldefs-boot.el is missing the suffix (suffix chars: (13 36)), line: version-control: never make[1]: *** [autoloads] Error -1 make[1]: Leaving directory `C:/eclean/bld/emacs/lisp' make: *** [bootstrap-gmake] Error 2