From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Lars Hansen Newsgroups: gmane.emacs.bugs Subject: Building Emacs on MS Windows Date: Thu, 06 Feb 2003 00:16:21 +0100 Sender: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: <3E419B45.9020004@kabelnettet.dk> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1044487040 26809 80.91.224.249 (5 Feb 2003 23:17:20 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 5 Feb 2003 23:17:20 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18gYn7-0006y1-00 for ; Thu, 06 Feb 2003 00:17:17 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18gYnP-0002Vn-00 for gnu-bug-gnu-emacs@m.gmane.org; Wed, 05 Feb 2003 18:17:35 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18gYmf-0002Gp-00 for bug-gnu-emacs@gnu.org; Wed, 05 Feb 2003 18:16:49 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18gYlp-0001os-00 for bug-gnu-emacs@gnu.org; Wed, 05 Feb 2003 18:15:58 -0500 Original-Received: from [62.84.220.10] (helo=mail.dantel.dk) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18gYln-0001kl-00 for bug-gnu-emacs@gnu.org; Wed, 05 Feb 2003 18:15:55 -0500 Original-Received: from kabelnettet.dk [62.84.221.46] by mail.dantel.dk with ESMTP (SMTPD32-7.13) id AC18152500BC; Thu, 06 Feb 2003 00:19:52 +0100 User-Agent: Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.2.1) Gecko/20021130 X-Accept-Language: en-us, en Original-To: bug-gnu-emacs@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: bug-gnu-emacs-bounces+gnu-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:4397 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:4397 I have some problems building Emacs from CVS on MS Windows. 1. It seems the files nt/configure.bat and nt/makefile.w32-in have wrong newlines. 2. When I correct this and try the command "configure.bat" followed by mingw32-make.exe bootstrap" in the nt directory, I get a lot of errors like: >>Error occurred processing calc/calc-aent.el: File error (("Opening input file" "no such file or directory" "d:/cvs/emacs/nt/calc/calc-aent.el")) Obviosly the problem is that the directory calc resides in the directory lisp rather than in the directory nt. I have tried in the file lisp/makefile to prefix each module name in the variable WINS with "$(lisp)/". That seems to get me past the problem above. But then I get the following error: mingw32-make.exe[1]: Entering directory `D:/cvs/emacs/leim' "./../src/oo-spd/i386/emacs.exe" -batch --no-init-file --no-site-file --multibyte -l D:/cvs/emacs/leim/../lisp/international/titdic-cnv \ --eval '(batch-titdic-convert t)' \ -dir quail ./CXTERM-DIC Converting d:/cvs/emacs/nt/CXTERM-DIC to quail-package... Opening input file: no such file or directory, d:/cvs/emacs/nt/CXTERM-DIC Signal 127 mingw32-make.exe[1]: *** [quail/CCDOSPY.elc] Error 255 mingw32-make.exe[1]: Leaving directory `D:/cvs/emacs/leim' d:\mingw\bin\mingw32-make.exe: *** [all-other-dirs-gmake] Error 2 Obviosly the problem is the directory CXTERM-DIC resides in the directory leim rather than in the directory nt. What is wrong here?