From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21154 invoked by alias); 26 Feb 2002 08:55:50 -0000 Mailing-List: contact sourcenav-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sourcenav-owner@sources.redhat.com Received: (qmail 21037 invoked from network); 26 Feb 2002 08:55:42 -0000 Received: from unknown (HELO shell4.bayarea.net) (209.128.82.1) by sources.redhat.com with SMTP; 26 Feb 2002 08:55:42 -0000 Received: from modrick (209-128-79-218.BAYAREA.NET [209.128.79.218]) by shell4.bayarea.net (8.9.3/8.9.3) with SMTP id AAA14181 for ; Tue, 26 Feb 2002 00:48:45 -0800 (envelope-from supermo@bayarea.net) Date: Tue, 26 Feb 2002 09:12:00 -0000 From: Mo DeJong To: sourcenav Subject: Re: Headaches building Source Navigator under Windows Message-Id: <20020226004746.401e91f0.supermo@bayarea.net> In-Reply-To: <26F9F6EAB586D411850700B0D049E6E4014D2E48@shasta.pdx.steptech.com> References: <26F9F6EAB586D411850700B0D049E6E4014D2E48@shasta.pdx.steptech.com> Organization: House of Mirth X-Mailer: Sylpheed version 0.4.99cvs6 (GTK+ 1.2.7; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2002-q1/txt/msg00131.txt.bz2 On Fri, 22 Feb 2002 13:07:46 -0800 Bruce Edson wrote: > I went to Cygwin site and figured out how to get the rest of the utilities. > So, now I am at the point where the 'configure' as described in the readme > file, breaks with the following errors. > ../sourc/configure --host=i686-pc-cygwin > --prefix="c:/docume~1/bruce/hpkeck~1/snkeck~1/opt/sourcenav" Well, this looks ok. Any particular reason you passed a --host option here? > 2. > configuring in itcl/win > running /bin/sh ../../../../source/itcl/itcl/win/configure > --host=i686-pc-cygwin --target=i686-pc-cygwin > '--prefix=c:/docume~1/bruce/hpkeck~1/snkeck~1/opt/sourcenav' > --cache-file=../../../config.cache --srcdir=../../../../source/itcl/itcl/win > cd: can't cd to ../../../tcl/win Humm, I would think that should be looking in ../tcl8.1/win, but I am not sure if it matters. > 6. > Configuring snavigator... > checking for Tcl configuration script... (cached) > /snbuild/tcl8.1/unix/tclConfig.sh > checking for Tk configuration script... (cached) > /snbuild/tk8.1/unix/tkConfig.sh > checking for Tcl headers in the source tree... (cached) configure: error: > Can't find any Tcl headers > Configure in /snbuild/snavigator failed, exiting. Well, this is not right. It should be checking in tcl8.1/win not the unix subdir. Me thinks something has gone wrong in tcl8.1/configure.in where it selects either the unix subdir or the win subdir based on the --host setting. Go into your $build/tcl8.1 dir and run this grep: grep CONFIGDIR config.status You should get a result like: s%@CONFIGDIR@%win%g If you get "unix" instead of "win" then that is the problem. You could try to not pass a --host option and see if that makes any diff. cheers Mo