From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Pretest Date: Sat, 28 Oct 2006 15:14:56 +0200 Message-ID: References: <87lkn1tzav.fsf@stupidchicken.com> <4543389E.3090006@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1162041330 23931 80.91.229.2 (28 Oct 2006 13:15:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 28 Oct 2006 13:15:30 +0000 (UTC) Cc: cyd@stupidchicken.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 28 15:15:28 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Gdo1p-0000c8-Dh for ged-emacs-devel@m.gmane.org; Sat, 28 Oct 2006 15:15:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gdo1o-0001kw-K0 for ged-emacs-devel@m.gmane.org; Sat, 28 Oct 2006 09:15:12 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gdo1Z-0001ji-W3 for emacs-devel@gnu.org; Sat, 28 Oct 2006 09:14:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gdo1Y-0001jJ-K2 for emacs-devel@gnu.org; Sat, 28 Oct 2006 09:14:57 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gdo1Y-0001jE-CN for emacs-devel@gnu.org; Sat, 28 Oct 2006 09:14:56 -0400 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Gdo1W-0005Mr-7J; Sat, 28 Oct 2006 09:14:54 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-84-228-227-157.inter.net.il [84.228.227.157]) by romy.inter.net.il (MOS 3.7.3-GA) with ESMTP id GCN09410 (AUTH halo1); Sat, 28 Oct 2006 15:14:51 +0200 (IST) Original-To: Jason Rumney In-reply-to: <4543389E.3090006@gnu.org> (message from Jason Rumney on Sat, 28 Oct 2006 12:01:50 +0100) 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:61283 Archived-At: > Date: Sat, 28 Oct 2006 12:01:50 +0100 > From: Jason Rumney > Cc: emacs-devel@gnu.org > > On a fresh install with w32, I got the following error: > > > gcc -I. -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0400 -D_X86_=1 -c > -gstabs+ -g3 -mtune=pentium4 -O2 -Di386 -D_CRTAPI1=_cdecl > -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 > -DHAVE_CONFIG_H=1 -I../nt/inc -I../src -o oo-spd/i386/digest-doc.o > digest-doc.c > gcc -o oo-spd/i386/digest-doc.exe -gstabs+ -g3 > oo-spd/i386/digest-doc.o -ladvapi32 > mingw32-make[1]: *** No rule to make target > `../src/oo-spd/i386/temacs.exe', needed by `DOC'. Stop. > mingw32-make[1]: Leaving directory `C:/emacs-22.0.90/lib-src' > mingw32-make: *** [all-other-dirs-gmake] Error 2 > > > I'll look into it, and see if it is a configuration problem with this > PC, or a problem with the makefiles that has gone undetected. It's a real bug, it happens the first time a source tree is compiled. Please try the patch below. I will check it in if there are no objections. diff -u "emacs-pretest/emacs-22.0.90/lib-src/makefile.w32-in~" "emacs-pretest/emacs-22.0.90/lib-src/makefile.w32-in" --- emacs-pretest/emacs-22.0.90/lib-src/makefile.w32-in~ 2006-10-10 21:01:30.000000000 +0200 +++ emacs-pretest/emacs-22.0.90/lib-src/makefile.w32-in 2006-10-28 15:08:33.420500000 +0200 @@ -263,6 +263,13 @@ $(lispsource)window.elc \ $(lispsource)version.el +# This is needed the first time we build the tree, since temacs.exe +# does not exist yet, and the DOC rule needs it to rebuild DOC whenever +# Emacs is rebuilt. +../src/$(BLD)/temacs.exe: + - mkdir "../src/$(OBJDIR)" + - mkdir "../src/$(BLD)" + @echo temacs > $@ DOC = DOC $(DOC): $(BLD) $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2) Diff finished. Sat Oct 28 15:11:59 2006