From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Lennart Borgman" Newsgroups: gmane.emacs.devel Subject: Re: NT mingw/msys build problem Date: Wed, 27 Oct 2004 12:21:04 +0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <00ba01c4bc0f$31881630$0200a8c0@sedrcw11488> References: <417CB924.8080107@wyrdrune.com> <417CC43A.40804@gnu.org> <417D8125.2020005@wyrdrune.com> <00ab01c4bc0a$b0c87ac0$0200a8c0@sedrcw11488> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1098872727 31465 80.91.229.6 (27 Oct 2004 10:25:27 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 27 Oct 2004 10:25:27 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 27 12:25:16 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 1CMkzT-00078N-00 for ; Wed, 27 Oct 2004 12:25:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CMl7D-0007Ji-Nh for ged-emacs-devel@m.gmane.org; Wed, 27 Oct 2004 06:33:15 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CMl6k-0007Hk-Fq for emacs-devel@gnu.org; Wed, 27 Oct 2004 06:32:47 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CMl6i-0007Gj-4m for emacs-devel@gnu.org; Wed, 27 Oct 2004 06:32:44 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CMl6h-0007GF-LA for emacs-devel@gnu.org; Wed, 27 Oct 2004 06:32:43 -0400 Original-Received: from [81.228.11.114] (helo=av7-2-sn1.fre.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CMkyc-0001vr-7J; Wed, 27 Oct 2004 06:24:22 -0400 Original-Received: by av7-2-sn1.fre.skanova.net (Postfix, from userid 502) id 800593803C; Wed, 27 Oct 2004 12:24:21 +0200 (CEST) Original-Received: from smtp3-1-sn1.fre.skanova.net (smtp3-1-sn1.fre.skanova.net [81.228.11.163]) by av7-2-sn1.fre.skanova.net (Postfix) with ESMTP id 7283737E6B; Wed, 27 Oct 2004 12:24:21 +0200 (CEST) Original-Received: from sedrcw11488 (t2o58p174.telia.com [62.20.165.174]) by smtp3-1-sn1.fre.skanova.net (Postfix) with SMTP id 0EBDB37E42; Wed, 27 Oct 2004 12:24:19 +0200 (CEST) Original-To: "Jason Rumney" , "Guy Gascoigne-Piggford" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1409 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1409 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:29033 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:29033 ----- Original Message ----- From: "Lennart Borgman" : I do not believe that everything can be done from with cmd.exe as the shell. : The problem that Guy found with : : "./../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")' ... : : can not be resolved unless this is rewritten in some way. cmd.exe can't : handle the parameters. The eval must be put in some temporary file that is : loaded with " -load temporary-file" to solve this. Can this be done? Does : make support doing this? This was WRONG! I should have read the makefile sources first. It seems to be solved there (by using $(ARGQUOTE) and $(DQUOTE). So it seems that there is a rather simple way to build Emacs on ms windows (if MSYS sh is not in the path). - Lennart