X-Recipient: archive-cygwin@delorie.com
X-Spam-Check-By: sourceware.org
Date: Sat, 1 Dec 2007 13:00:32 +0100
From: Corinna Vinschen <corinna-cygwin@cygwin.com>
To: cygwin@cygwin.com
Subject: Re: Failure in building GFortran on Cygwin
Message-ID: <20071201120032.GB30894@calimero.vinschen.de>
Reply-To: cygwin@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
References: <Pine.CYG.4.58.0711292328360.1532@homepc> <474F61CD.1060405@verizon.net> <20071130142008.GX30894@calimero.vinschen.de> <47501D95.3030200@byu.net> <20071130145842.GY30894@calimero.vinschen.de> <20071130213601.GC24092@ednor.casa.cgf.cx> <20071201103155.GZ30894@calimero.vinschen.de> <4751420F.F35239F3@dessent.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <4751420F.F35239F3@dessent.net>
User-Agent: Mutt/1.5.16 (2007-06-09)
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On Dec  1 03:14, Brian Dessent wrote:
> Corinna Vinschen wrote:
> 
> > Unfortunately it doesn't work for variables.  We can hide the timezone
> > function, but how do we alias timezone to _timezone in libcygwin.a?
> 
> Why does the variable need to be renamed?  Can't we continue to call it
> _timezone internally and then "#define timezone _timezone" in a public
> header?  It looks like this is already what we get in <cygwin/time.h> if
> we simply stop defining __timezonefunc__.

That's the default case starting with 1.5.25.  You get timezone
by this #define in cygwin/time.h.

The problem right now is that this clashes with the previous definition
of `struct timezone'.  What happens is this:

  struct timezone { int foo; };    // by including sys/time.h
  [...]
  #define timezone _timezone       // sys/time.h includes cygwin/time.h
  [...]
  struct timezone tzp;             // the application defines this tzp var

So `struct timezone tzp' becomes `struct _timezone tzp' which is
an unknown structure type.

I have a simple patch for this which just reorders sys/time.h slightly.
The effect is that the #define is pulled in front of the structure
definition so all timezone gets _timezone and that's it.

> Or is pulluting the namespace with a macro called "timezone" too
> hideous?  In that case we could try declaring it "extern long timezone
> asm("_timezone");" in the header.

Erm... sorry if my lack of assembler inlining shows, but that really
works?  If so, it looks like a rather elegant solution to me.  I'll give
it a try.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

