PostgreSQL 7.2.1 on NetWare

Lists: pgsql-hackers
From: "Ulrich Neumann" <U_Neumann(at)gne(dot)de>
To: <pgsql-hackers(at)postgresql(dot)org>
Subject: PostgreSQL 7.2.1 on NetWare
Date: 2002-08-05 15:25:21
Message-ID: sd4eb515.038@mail.gne.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

Hello together,

finally i've got PostgreSQL 7.2.1 running on NetWare.

Now I have two questions:

1. Where can I find the latest version 7.3 of PostgreSQL?
I want to check where I have to make changes and

2. Who is the best person to contact for submitting patches.
I would like to add the changes I've made to PostgreSQL
main source tree.

And very important: PostgreSQL is really great. I hope
I can contribute more to this wonderful project in the
future.

Ulrich
----------------------------------
This e-mail is virus scanned
Diese e-mail ist virusgeprueft


From: "Christopher Kings-Lynne" <chriskl(at)familyhealth(dot)com(dot)au>
To: "Ulrich Neumann" <U_Neumann(at)gne(dot)de>, <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: PostgreSQL 7.2.1 on NetWare
Date: 2002-08-06 01:49:04
Message-ID: GNELIHDDFBOCMGBFGEFOCEIFCDAA.chriskl@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

> 1. Where can I find the latest version 7.3 of PostgreSQL?
> I want to check where I have to make changes and

You will need to download it via CVS. Do this on the command line:

cvs -d :pserver:anoncvs(at)anoncvs(dot)postgresql(dot)org:/projects/cvsroot checkout
pgsql

This will create a subdirectory called 'pgsql' with the complete source in
it.

To compile it, type 'make' or 'gmake' in the pgsql directory. You will need
Bison installed to compile from cvs, and gmake if it's not a linux system.

> 2. Who is the best person to contact for submitting patches.
> I would like to add the changes I've made to PostgreSQL
> main source tree.

To generate an acceptable patch, go:

cvs diff -c > patchname.txt

>From the pgsql directory. This will generate a patch of the entire cvs
tree. You can specify a single filename if that's all you want to diff.
You should then email the patch to pgsql-patches(at)postgresql(dot)org along with
an explanation of the patch and a documentation patch if it changes
something that's user visible.

Looking forward to seeing a Netware port...

Cheers,

Chris