Re: patch for include/utils/datetime.h to target NetWare

From: Thomas Lockhart <lockhart(at)fourpalms(dot)org>
To: Ulrich Neumann <u_neumann(at)gne(dot)de>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: patch for include/utils/datetime.h to target NetWare
Date: 2002-03-24 07:13:07
Message-ID: 3C9D7C83.9766516C@fourpalms.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> I would be happy if it is possible to apply this patch to include/utils/datetime.h
> to target NetWare.
> On NetWare TIMEZONE_GLOBAL is _timezone.

Without a context diff, it is not entirely clear to me what *exactly*
the patch is doing since I'm working with an already-patched datetime.h.

However, if you need TIMEZONE_GLOBAL defined as "_timezone" for netware
(as it is already defined for cygwin), then couldn't the patch simply
change

#ifdef __CYGWIN__

to

#if defined(__CYGWIN__) || defined(N_PLAT_NLM)

leaving everything else the same? Let me know and I'll go ahead and
patch it (unless of course, others on netware see a problem)...

- Thomas

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Lockhart 2002-03-24 17:58:39 Configuring for 64-bit integer date/time storage?
Previous Message Ulrich Neumann 2002-03-24 04:55:00 patch for include/utils/datetime.h to target NetWare