Mailing-List: contact cygwin-developers-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-developers-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin-developers AT sources DOT redhat DOT com Date: Mon, 28 May 2001 17:53:25 EDT To: cygwin-developers AT cygwin DOT com Subject: Re: release announcement for setup.exe? X-Mailer: Virtual Access by Atlantic Coast PLC, http://www.atlantic-coast.com/va Message-Id: From: Brian Keener Reply-To: bkeener AT thesoftwaresource DOT com In-Reply-To: <20010528165557.C29676@redhat.com> References: <20010525231633 DOT A29781 AT redhat DOT com> <20010527170534 DOT A25094 AT redhat DOT com> <20010528165557 DOT C29676 AT redhat DOT com> Christopher Faylor wrote: > >the file iniparse.h wouldn't happen to ring a bell would it. I updated from > >cvs and now when I try to compile setup - the make is complaining about no such > >file or directory on iniparse.h. This header is actually being referenced by > >inilex.l and iniparse.y. I don't seem to have a copy of it in my source. > > > >Got any ideas? > > Look at the setup.exe Makefile. > Yes I think that is where it might be - the change you submitted was as follows: -iniparse.c iniparse.h : iniparse.y - bison -d -o iniparse.c $(srcdir)/iniparse.y +iniparse.cc iniparse.h : iniparse.y + bison -d -o iniparse.cc $(srcdir)/iniparse.y and I am still testing this theory but it appears the header file being built in my build directory is now called iniparse.cc.h instead of iniparse.h like it apparently used to be. If I'm right I'm not sure how it should be fixed other than changing the two references of iniparse.h in inilex.l and iniparse.y to be references to iniparse.cc.h. Is this bison that is causing this or is it deeper in the compile that just the Makefile. bk bk