From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Guy Gascoigne-Piggford Newsgroups: gmane.emacs.devel Subject: NT mingw/msys build problem Date: Mon, 25 Oct 2004 01:28:20 -0700 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <417CB924.8080107@wyrdrune.com> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1098692949 28778 80.91.229.6 (25 Oct 2004 08:29:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 25 Oct 2004 08:29:09 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 25 10:28:58 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CM0Dq-0008Ju-00 for ; Mon, 25 Oct 2004 10:28:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CM0LT-0000NM-7q for ged-emacs-devel@m.gmane.org; Mon, 25 Oct 2004 04:36:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CM0L8-0000Ly-TR for emacs-devel@gnu.org; Mon, 25 Oct 2004 04:36:31 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CM0L4-0000KT-Ai for emacs-devel@gnu.org; Mon, 25 Oct 2004 04:36:26 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CM0L4-0000Jv-62 for emacs-devel@gnu.org; Mon, 25 Oct 2004 04:36:26 -0400 Original-Received: from [204.127.198.35] (helo=rwcrmhc11.comcast.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CM0DG-0001qQ-Hz for emacs-devel@gnu.org; Mon, 25 Oct 2004 04:28:22 -0400 Original-Received: from wyrdrune (c-24-21-205-248.client.comcast.net[24.21.205.248]) by comcast.net (rwcrmhc11) with SMTP id <20041025082815013009i2nde>; Mon, 25 Oct 2004 08:28:16 +0000 Original-Received: from 127.0.0.1 by wyrdrune ([127.0.0.1] running VPOP3) with ESMTP for ; Mon, 25 Oct 2004 01:28:20 -0700 User-Agent: Mozilla Thunderbird 0.8 (Windows/20040913) X-Accept-Language: en-us, en Original-To: Emacs Devel X-Server: VPOP3 V1.5.0g - Registered 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: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:28884 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:28884 I've been trying to track down a problem that my NT build has when building with the latest mingw+msys environment. Emacs builds and runs, but certain autoloads seem to be missing, after much hunting through build logs I ended out with this being the cause of the problem: Eventually make runs this: "./../bin/emacs.exe" -batch --no-init-file --no-site-file --multibyte -l autoload \ --eval '(setq find-file-hooks nil \ find-file-suppress-same-file-warnings t \ generated-autoload-file \ "c:/dev/emacs-src/emacs/lisp/loaddefs.el")' \ -f batch-update-autoloads c:/dev/emacs-src/emacs/lisp calc calendar emacs-lisp emulation eshell gnus international language mail mh-e net obsolete play progmodes term textmodes toolbar url the output of which is: Wrote c:/dev/emacs-src/emacs/lisp/c;C:Devmsys.0evacs-srcacslisploaddefs.el Loading vc-cvs... Wrote c:/dev/emacs-src/emacs/lisp/c;C:Devmsys.0evacs-srcacslisploaddefs.el Autoloads file c:/dev/emacs-src/emacs/lisp/c;C:Devmsys.0evacs-srcacslisploaddefs.el does not exist I'm explicitly passing files of a style that I'd expect emacs to understand, but it looks like some part of the process is switching them back to dos style slashes and then passing them back to something that expects unix style names. Anyway I'm a bit stumped as to how to work around this, has anyone else seen this or have a suggestion? Guy