From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Ben Key Newsgroups: gmane.emacs.devel Subject: Error building Emacs 21.3.50 CVS using MSVC 6 - Continued Date: Wed, 9 Oct 2002 13:46:13 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: <762A7BB74D6AD51195EF00B0D0AA16602C3806@STPETE> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: main.gmane.org 1034186637 13695 127.0.0.1 (9 Oct 2002 18:03:57 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 9 Oct 2002 18:03:57 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17zLBZ-0003YF-00 for ; Wed, 09 Oct 2002 20:03:53 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17zLzh-0006me-00 for ; Wed, 09 Oct 2002 20:55:42 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17zL84-00058v-00; Wed, 09 Oct 2002 14:00:16 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17zL7J-0003u9-00 for emacs-devel@gnu.org; Wed, 09 Oct 2002 13:59:29 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17zL7G-0003r4-00 for emacs-devel@gnu.org; Wed, 09 Oct 2002 13:59:28 -0400 Original-Received: from stpete.freedomscientific.com ([209.101.206.132] helo=stpete.FreedomScientific) by monty-python.gnu.org with esmtp (Exim 4.10) id 17zL7G-0003q2-00 for emacs-devel@gnu.org; Wed, 09 Oct 2002 13:59:26 -0400 Original-Received: by STPETE with Internet Mail Service (5.5.2656.59) id <4BN0TV1C>; Wed, 9 Oct 2002 13:46:13 -0400 Original-To: "GNU Emacs Devel (E-mail)" X-Mailer: Internet Mail Service (5.5.2656.59) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:8486 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:8486 I am building Emacs using the following batch file: REM BEGIN buildmsvc.bat @ECHO OFF cd emacs\nt call configure.bat --with-msvc IF ERRORLEVEL 1 GOTO ERROR_STATE nmake /f Makefile.nt bootstrap INSTALL_DIR=D:\EMACS_CVS MSVCNT11=1 IF ERRORLEVEL 1 GOTO ERROR_STATE nmake /f Makefile.nt install INSTALL_DIR=D:\EMACS_CVS MSVCNT11=1 IF ERRORLEVEL 1 GOTO ERROR_STATE GOTO SUCCESSFUL_BUILD :ERROR_STATE ECHO DAMNED! An error occured while building emacs. GOTO END :SUCCESSFUL_BUILD ECHO Emacs was built successfully. Hurray. :END cd .. cd .. REM END buildmsvc.bat I am now getting the following error Directories: calendar emacs-lisp emulation eshell gnus international language mail net play progmodes term textm odes ..\bin\emacs.exe -batch --no-init-file --no-site-file --multibyte -l autoload --eval "(setq find-file-ho oks nil generated-autoload-file \"./loaddefs.el\")" -f batch-update-autoloads . calendar emacs-lisp emulation eshell gnus international language mail net play progmodes term textmodes Saving file d:/emacs_cvs/_src/emacs/lisp/loaddefs.el... Loading vc-cvs (source)... Wrote d:/emacs_cvs/_src/emacs/lisp/loaddefs.el for %f in (./emacs-lisp/byte-opt.el ./emacs-lisp/bytecomp.el ./subr.el) do ..\bin\emacs.exe -batch --n o-init-file --no-site-file --multibyte -f batch-byte-compile %f >>Error occurred processing /emacs-lisp: File error (("Opening input file" "no such file or directory" "d:/emacs -lisp")) >>Error occurred processing /byte-opt.el: File error (("Opening input file" "no such file or directory" "d:/byte -opt.el")) >>Error occurred processing /emacs-lisp: File error (("Opening input file" "no such file or directory" "d:/emacs -lisp")) >>Error occurred processing /bytecomp.el: File error (("Opening input file" "no such file or directory" "d:/byte comp.el")) >>Error occurred processing /subr.el: File error (("Opening input file" "no such file or directory" "d:/subr.el" )) NMAKE : fatal error U1077: 'for' : return code '0x1' Stop. NMAKE : fatal error U1077: '"C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\VC98\BIN\nmake.exe"' : return code '0x2' Stop. DAMNED! An error occured while building emacs. Please help me resolve this issue.