Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
From: "Gerrit P. Haase" <gerrit.haase@t-online.de>
Organization: convey Information Systems GmbH
To: cygwin@cygwin.com
Date: Wed, 3 Jan 2001 15:55:08 +0100
MIME-Version: 1.0
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Subject: (Fwd) Building dejagnu - tcl-diff
Reply-to: gerrit@familiehaase.de
Message-ID: <3A534B5C.6928.16D78FA@localhost>
X-mailer: Pegasus Mail for Win32 (v3.12cDE)

Hi cygwinners,

tried to build dejagnu from cvs-sources. I reported the first error 
after i found the missing headers, now i've done this little fix in 
the Makefile, (appended below). stub16.c compiled fine after that, 
but then i got a lot of parse errors during rest of make. What is 
wrong? Any suggests please...

Is it correct, that make went to tcl/win to compile? 
Shouldn't it be tcl/unix?

Is this patch useful?
======================BEGIN==========================================
diff -ur tcl-orig/win/Makefile.in tcl/win/Makefile.in
--- tcl-orig/win/Makefile.in	Thu Jun  8 03:26:03 2000
+++ tcl/win/Makefile.in	Wed Jan  3 13:21:07 2001
@@ -518,12 +518,12 @@
 ifeq ($(OBJEXT),o)
 
 $(TCLPIPEDLL): $(WINDIR)/stub16.c
-	$(CC) -c $(CON_CFLAGS) $(WINDIR)/stub16.c
+	$(CC) -c $(CON_CFLAGS) $(CFLAGS) $(WINDIR)/stub16.c
 	$(CC) $(linkdebug) $(conlflags) -o $@ $(TMPDIR)/stub16.$(OBJEXT) 
$(guilibs)
 else
 
 $(TCLPIPEDLL): $(WINDIR)/stub16.c
-	$(CC) -c $(CON_CFLAGS) -Fo$(TMPDIR)/ $(WINDIR)/stub16.c
+	$(CC) -c $(CON_CFLAGS) $(CFLAGS) -Fo$(TMPDIR)/ $(WINDIR)/stub16.c
 	link $(ldebug) $(conlflags) -out:$@ $(TMPDIR)/stub16.obj 
$(guilibsdll)
 endif
==============================END=====================================
Gerrit
gph
--
gerrit.haase@convey.de
PGP Version: 6.5.8 Public Key Information
KeyID: 0xC8C9D69A, Type/Size: DH/DSS 2048/1024bit 
Key fingerprint = 57C8 1B1D CFE4 8515 AA3E  4499 A326 0F3C C8C9 D69A

--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

