Return-Path: owner-postman
Received: from localhost (localhost [127.0.0.1]) by nobozo.CS.Berkeley.EDU (8.6.4/8.6.3) with SMTP id UAA19637 for postgres-redist; Fri, 17 Jun 1994 20:41:53 -0700
Resent-From: POSTGRES mailing list <postman@postgres.Berkeley.EDU>
Resent-Message-Id: <199406180341.UAA19637@nobozo.CS.Berkeley.EDU>
Sender: owner-postman@postgres.Berkeley.EDU
X-Return-Path: owner-postman
Received: from faerie.CS.Berkeley.EDU (faerie.CS.Berkeley.EDU [128.32.149.14]) by nobozo.CS.Berkeley.EDU (8.6.4/8.6.3) with ESMTP id UAA19627 for <postgres@postgres.Berkeley.EDU>; Fri, 17 Jun 1994 20:41:52 -0700
Received: from localhost (localhost [127.0.0.1]) by faerie.CS.Berkeley.EDU (8.6.4/8.1B) with SMTP id UAA04525; Fri, 17 Jun 1994 20:41:51 -0700
Message-Id: <199406180341.UAA04525@faerie.CS.Berkeley.EDU>
X-Authentication-Warning: faerie.CS.Berkeley.EDU: Host localhost didn't use HELO protocol
From: aoki@CS.Berkeley.EDU (Paul M. Aoki)
To: postgres@postgres.Berkeley.EDU
Reply-To: aoki@CS.Berkeley.EDU (Paul M. Aoki)
Subject: new OS releases
Date: Fri, 17 Jun 94 20:41:51 -0700
X-Sender: aoki@postgres.Berkeley.EDU
Resent-To: postgres-redist@postgres.Berkeley.EDU
X-Mts: smtp
Resent-Date: Fri, 17 Jun 94 20:41:53 -0700
Resent-XMts: smtp

always manage to change the compilers as well, usually in incompatible 
ways.  ah well.

for hp-ux 9.03, the main stumbling block is that the c preprocessor
is just plain broken.  if you don't apply patch PHSS_4307 cpp won't
fully expand macros. :-P  i don't know if 9.02 shows the same behavior
or not.  sorry, you have to get patches from h-p, i can't redistribute
them.  thanks to steve dierker for pointing this one out and to carl 
staelin for the patches.

for osf/1 2.0, the hangup is that type promotion in expressions
changed.  there are a couple of lines in src/utils/adt/numutils.c
that must change.

42c42
<       if (l < -0x80000000) {
---
>       if (l < -0x80000000L) {
46c46
<       if (l > 0x7fffffff) {
---
>       if (l > 0x7fffffffL) {

i *think* that was the only important change.
--
  Paul M. Aoki  |  CS Div., Dept. of EECS, UCB  |  aoki@CS.Berkeley.EDU
                |  Berkeley, CA 94720           |  ...!uunet!ucbvax!aoki

==============================================================================
   To add/remove yourself to/from the POSTGRES mailing list: send mail with 
   the subject line ADD or DEL to "postgres-request@postgres.Berkeley.EDU"

   If this fails, send mail to "post_questions@postgres.Berkeley.EDU" and
   a human will deal with it.  DO NOT post to the "postgres" mailing list.
==============================================================================
