Re: "make check" improvement for cygwin

Lists: pgsql-patches
From: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
To: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: "make check" improvement for cygwin
Date: 2003-10-27 23:33:16
Message-ID: 004201c39ce2$b302e840$6401a8c0@DUNSLANE
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

The attached patch limits parallelism for "make check" on cygwin to 10 - meaning that at least on my installation "make check" actually succeeds at last.

cheers

andrew

Attachment Content-Type Size
pg_regress.patch application/octet-stream 988 bytes

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
Cc: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-28 00:41:55
Message-ID: 18270.1067301715@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

"Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
> The attached patch limits parallelism for "make check" on cygwin to 10 - me=
> aning that at least on my installation "make check" actually succeeds at la=
> st.

If we're going to do something like that, I'd rather see it exposed as a
more general "at most N connections" knob, where the user could choose
N. There are plenty of other scenarios where such a restriction could
be useful --- for instance, "make check" runs up against
max-processes-per-user limits on a number of platforms.

I would also rather that the user be forced to supply that number, to
make certain he realizes that he's got a very low number-of-connections
resource limit. Sweeping such problems under the rug is exactly what
"make check" should not do.

regards, tom lane


From: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
To: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-28 01:20:44
Message-ID: 001101c39cf1$b5f17ee0$6401a8c0@DUNSLANE
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
Cc: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Sent: Monday, October 27, 2003 7:41 PM
Subject: Re: [PATCHES] "make check" improvement for cygwin

> "Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
> > The attached patch limits parallelism for "make check" on cygwin to 10 -
me=
> > aning that at least on my installation "make check" actually succeeds at
la=
> > st.
>
> If we're going to do something like that, I'd rather see it exposed as a
> more general "at most N connections" knob, where the user could choose
> N. There are plenty of other scenarios where such a restriction could
> be useful --- for instance, "make check" runs up against
> max-processes-per-user limits on a number of platforms.
>
> I would also rather that the user be forced to supply that number, to
> make certain he realizes that he's got a very low number-of-connections
> resource limit. Sweeping such problems under the rug is exactly what
> "make check" should not do.
>

Sure - I was just sharing what I did to get things working, as I have seen
reports on this from a number of people.

I should be able to generalise it fairly easily.

Something like this?

make MAX_CONNECTIONS=10 check

Maybe in the case of cygwin, where it is almost bound to fail without such
restrictions, we could put out a warning if it isn't used.

cheers

andrew


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
Cc: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-28 04:12:25
Message-ID: 19255.1067314345@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

"Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
> Something like this?
> make MAX_CONNECTIONS=10 check
> Maybe in the case of cygwin, where it is almost bound to fail without such
> restrictions, we could put out a warning if it isn't used.

That works for me. Possibly you should pop this proposal up on
pghackers, to make sure other people buy into it before you go to
the trouble of coding it...

regards, tom lane


From: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
To: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-29 00:32:56
Message-ID: 003a01c39db4$346b57b0$6401a8c0@DUNSLANE
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


----- Original Message -----
From: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
Cc: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Sent: Monday, October 27, 2003 11:12 PM
Subject: Re: [PATCHES] "make check" improvement for cygwin

> "Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
> > Something like this?
> > make MAX_CONNECTIONS=10 check
> > Maybe in the case of cygwin, where it is almost bound to fail without
such
> > restrictions, we could put out a warning if it isn't used.
>
> That works for me. Possibly you should pop this proposal up on
> pghackers, to make sure other people buy into it before you go to
> the trouble of coding it...
>

Well, I posted the note last night but I finished the patch today, because
it was very simple and took so little time.

I think this does what you suggested.

If it's accepted I'll do a doc patch to match.

cheers

andrew

Attachment Content-Type Size
pg_regress.patch application/octet-stream 3.9 KB

From: Jason Tishler <jason(at)tishler(dot)net>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-29 13:40:35
Message-ID: 20031029134035.GA5316@tishler.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Andrew,

> > > Something like this?
> > > make MAX_CONNECTIONS=10 check

AFAICT, non-server Windows versions have a listen backlog of 5:

http://support.microsoft.com/support/kb/articles/Q127/1/44.asp
http://216.239.57.104/search?q=cache:Ll4KYYj_BB8J:www.microsoft.com/windows2000/docs/tcpip2000.doc+site:microsoft.com+listen+backlog+winsock&hl=en&ie=UTF-8

So, I would suggest using "5" as the magic number instead of "10".

Anyway, I really appreciate you contributing this patch.

Thanks,
Jason

--
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6


From: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
To: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-29 13:45:30
Message-ID: 003201c39e22$eb430320$6401a8c0@DUNSLANE
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


The number isn't hardcoded at all (except for the warning on gygwin if you
choose some high value) - you can choose whatever value you like at run time
(even 1). This will be documented.

10 works for me on my XP-HE/cygwin installation, though. YMMV I guess.

cheers

andrew

----- Original Message -----
From: "Jason Tishler" <jason(at)tishler(dot)net>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
Cc: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Sent: Wednesday, October 29, 2003 8:40 AM
Subject: Re: [PATCHES] "make check" improvement for cygwin

> Andrew,
>
> > > > Something like this?
> > > > make MAX_CONNECTIONS=10 check
>
> AFAICT, non-server Windows versions have a listen backlog of 5:
>
> http://support.microsoft.com/support/kb/articles/Q127/1/44.asp
>
http://216.239.57.104/search?q=cache:Ll4KYYj_BB8J:www.microsoft.com/windows2000/docs/tcpip2000.doc+site:microsoft.com+listen+backlog+winsock&hl=en&ie=UTF-8
>
> So, I would suggest using "5" as the magic number instead of "10".
>
> Anyway, I really appreciate you contributing this patch.
>
> Thanks,
> Jason
>
> --
> PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
> Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)


From: Jason Tishler <jason(at)tishler(dot)net>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-29 16:18:09
Message-ID: 20031029161809.GA3644@tishler.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Andrew,

On Wed, Oct 29, 2003 at 08:45:30AM -0500, Andrew Dunstan wrote:
> The number isn't hardcoded at all

Understood.

> (except for the warning on gygwin if you choose some high value)

The above is my concern -- sorry, for being unclear.

> - you can choose whatever value you like at run time (even 1).

Understood.

> This will be documented.

Great.

> 10 works for me on my XP-HE/cygwin installation, though. YMMV I guess.
^^^^

Bingo!

Jason

--
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6


From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-29 16:34:34
Message-ID: 3F9FEC1A.6030106@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Jason Tishler wrote:

>Andrew,
>
>On Wed, Oct 29, 2003 at 08:45:30AM -0500, Andrew Dunstan wrote:
>
>
>>The number isn't hardcoded at all
>>
>>
>
>Understood.
>
>
>
>>(except for the warning on gygwin if you choose some high value)
>>
>>
>
>The above is my concern -- sorry, for being unclear.
>

I don't want to issue a warning on a setting that is likely to succeed
in some cases. How about this instead of what I had - it deals with the
most likely problem case?:

# ----------
# warn of cygwin likely failure
# if maxconnections = 0
# and we are running parallel tests
# ----------

case $host_platform in *-*-cygwin*)
case "$schedule" in *parallel*)
if [ $maxconnections -eq 0 ] ; then
echo using unlimited parallel connections is likely to fail or
hang on cygwin
echo try \"$me --max-connections=n\" or \"gmake MAX_CONNECTIONS=n
check\"
echo with n = 5 or 10 if this happens
echo
fi
;;
esac
;;
esac


From: Jason Tishler <jason(at)tishler(dot)net>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-29 22:30:49
Message-ID: 20031029223049.GA4260@tishler.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Andrew,

On Wed, Oct 29, 2003 at 11:34:34AM -0500, Andrew Dunstan wrote:
> I don't want to issue a warning on a setting that is likely to succeed
> in some cases. How about this instead of what I had - it deals with
> the most likely problem case?:
>
> # ----------
> # warn of cygwin likely failure
> # if maxconnections = 0
> # and we are running parallel tests
> # ----------
>
> [snip]

The above is fine. Sorry, to belabor this point.

Thanks,
Jason

--
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
Cc: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-10-31 21:56:12
Message-ID: 20194.1067637372@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

"Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
> Well, I posted the note last night but I finished the patch today, because
> it was very simple and took so little time.
> I think this does what you suggested.
> If it's accepted I'll do a doc patch to match.

It looks okay to me, modulo the later suggestion from Jason. Please add
that and incorporate a docs update.

regards, tom lane


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Andrew Dunstan" <andrew(at)dunslane(dot)net>
Cc: "PG Patches" <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-02 21:58:17
Message-ID: 3904.1067810297@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

"Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
> Well, I posted the note last night but I finished the patch today, because
> it was very simple and took so little time.

I've committed this with the later revision about the warning message,
and some other minor cleanups. I added documentation in the "Regression
Tests" chapter, but if there is anyplace else you want to mention it,
send in a docs patch.

regards, tom lane


From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-03 03:53:55
Message-ID: 3FA5D153.6030607@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Tom Lane wrote:

>"Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
>
>
>>Well, I posted the note last night but I finished the patch today, because
>>it was very simple and took so little time.
>>
>>
>
>I've committed this with the later revision about the warning message,
>and some other minor cleanups. I added documentation in the "Regression
>Tests" chapter, but if there is anyplace else you want to mention it,
>send in a docs patch.
>
>
>

Thanks, Tom! I just sat down to do this work and saw your note.

This looks fine - the only other place it needs to be mentioned is in
FAQ_MSWIN I think.

patch for that attached.

cheers

andrew

Attachment Content-Type Size
faq.patch text/plain 997 bytes

From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-03 08:09:37
Message-ID: 3FA60D41.6000407@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

I have attached a more comprehensive MSWIN FAQ patch. Basically, the
instructions were way out of date and incorrect. Installing Postgres
from Cygwin is easier these days than the FAQ would imply.

This patch already includes Andrew's previous patch.

Chris

Andrew Dunstan wrote:

>
>
> Tom Lane wrote:
>
>> "Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
>>
>>
>>> Well, I posted the note last night but I finished the patch today,
>>> because
>>> it was very simple and took so little time.
>>>
>>
>>
>> I've committed this with the later revision about the warning message,
>> and some other minor cleanups. I added documentation in the "Regression
>> Tests" chapter, but if there is anyplace else you want to mention it,
>> send in a docs patch.

Attachment Content-Type Size
mswin.txt text/plain 5.8 KB

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-09 03:47:45
Message-ID: 200311090347.hA93lj318951@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


Patch applied to 7.4 and HEAD. Thanks.

---------------------------------------------------------------------------

Christopher Kings-Lynne wrote:
> I have attached a more comprehensive MSWIN FAQ patch. Basically, the
> instructions were way out of date and incorrect. Installing Postgres
> from Cygwin is easier these days than the FAQ would imply.
>
> This patch already includes Andrew's previous patch.
>
> Chris
>
> Andrew Dunstan wrote:
>
> >
> >
> > Tom Lane wrote:
> >
> >> "Andrew Dunstan" <andrew(at)dunslane(dot)net> writes:
> >>
> >>
> >>> Well, I posted the note last night but I finished the patch today,
> >>> because
> >>> it was very simple and took so little time.
> >>>
> >>
> >>
> >> I've committed this with the later revision about the warning message,
> >> and some other minor cleanups. I added documentation in the "Regression
> >> Tests" chapter, but if there is anyplace else you want to mention it,
> >> send in a docs patch.
>

> Index: doc/FAQ_MSWIN
> ===================================================================
> RCS file: /projects/cvsroot/pgsql-server/doc/FAQ_MSWIN,v
> retrieving revision 1.15
> diff -c -r1.15 FAQ_MSWIN
> *** doc/FAQ_MSWIN 11 Nov 2002 20:04:05 -0000 1.15
> --- doc/FAQ_MSWIN 3 Nov 2003 08:08:13 -0000
> ***************
> *** 2,37 ****
> ====================================
> $Date: 2002/11/11 20:04:05 $
>
> ! 1. Install the latest Cygwin package, available at http://cygwin.com/.
> ! The Cygwin package provides a UNIX-like API on top of the Win32
> ! API.
>
> ! A pre-built PostgreSQL is part of the standard Cygwin distribution
> ! and is installed by Cygwin's setup.exe. You are encouraged to use
> ! this version unless it does not meet your needs. Please read the
> ! README file, /usr/doc/Cygwin/postgresql-${version}.README, where
> ! "${version}" is the version (e.g., 7.2).
>
> ! 2. Install the latest cygipc package, available at
> ! http://www.neuro.gatech.edu/users/cwilson/cygutils/V1.1/cygipc/.
> ! Do not use versions prior to 1.04, they will not work.
>
> ! Use the following command to install the cygipc package:
>
> ! $ tar -C / -xjf cygipc-${version}.tar.bz2
>
> ! where "${version}" is the version (e.g., 1.11-1).
>
> ! 3. The Cygwin bin directory has to be placed in the path before the
> ! Windows program directories, because the sort.exe has to be taken
> ! from Cygwin, not Windows.
>
> ! 4. Start ipc-daemon from the cygipc package. Use "net start ipc-daemon",
> ! if ipc-daemon is installed as a service; otherwise, use "ipc-daemon &".
> ! This program needs to be running anytime you start the PostgreSQL
> ! server (postmaster) or initialize a database (initdb).
>
> ! 5. Proceed according to the INSTALL file (i.e., ./configure; make; etc.)
> noting the following Cygwin specific differences:
>
> o The GNU make command is called "make" not "gmake".
> --- 2,67 ----
> ====================================
> $Date: 2002/11/11 20:04:05 $
>
> ! PostgreSQL requires the Cygwin set of libraries to be installed in
> ! order that it functions under Windows.
>
> ! This document assumes that you do not have Cygwin already installed
> ! on your system. If that is not the case, then you will need to
> ! adjust these instructions accordingly.
>
> ! 1. Download and run the Cygwin installer. Visit http://cygwin.com/ and
> ! click on the "Install Cygwin now' link. This will prompt you
> ! to download a "setup.exe". Save this file somewhere on your
> ! system and then execute it.
>
> ! 2. Proceed through the Cygwin install wizard. Choose 'Install from
> ! Internet', specify a Local Package Directory and choose a mirror
> ! site that's close to you. Leave everything else as-is.
>
> ! When you come to the point of choosing which packages to install,
> ! expand the 'Database' section and click 'Skip' next to PostgreSQL
> ! to change it to the latest version of PostgreSQL available for
> ! Cygwin.
>
> ! 3. Once the download and install process is complete, open a Cygwin
> ! shell and do the following:
>
> ! 3a. Start ipc-daemon2 for shared memory support. Use
> ! "net start ipc-daemon2", if you want ipc-daemon2 installed
> ! as a service; otherwise, use "ipc-daemon2 &". This program
> ! needs to be running anytime you start the PostgreSQL server
> ! (postmaster) or initialize a database (initdb).
>
> ! 3b. Use the initdb command to create a new database cluster. An
> ! example command would be:
>
> ! initdb -D /usr/local/pgsql/data -W -E LATIN1
> !
> ! Which will create a cluster in the /usr/local/pgsql/data
> ! directory, will prompt for a superuser password and will
> ! set the default database encoding to LATIN1.
> !
> ! 3c. Start up the postmaster. Use a command similar to the
> ! following:
> !
> ! postmaster -D /usr/local/pgsql/data
> !
> ! This will start the postmaster, and if successful you will
> ! see some initial log entries, and an entry "LOG: database
> ! system is ready".
> !
> ! 4. You are now running a PostgreSQL server on your Windows machine.
> !
> ! Building from source
> ! --------------------
> !
> ! There are some points that are only relevant if you are building Cygwin
> ! PostgreSQL from source:
> !
> ! 1. Set your path to use the Cygwin bin directory before the Windows
> ! utilities. Cygwin sort must be used in preference to Windows sort.exe.
> !
> ! 2. Proceed according to the INSTALL file (i.e., ./configure; make; etc.)
> noting the following Cygwin specific differences:
>
> o The GNU make command is called "make" not "gmake".
> ***************
> *** 44,56 ****
> Alternatively, proceed according to the README file supplied with
> the Cygwin PostgreSQL package.
>
> ! NOTE: The following are known issues with PostgreSQL on Windows:
>
> 1. Cygwin's AF_UNIX sockets are really implemented as AF_INET sockets
> so they are inherently insecure.
>
> ! 2. make check can generate spurious regression test failures due to
> overflowing the listen() backlog queue which causes connection
> ! refused errors.
>
> Problem reports can be sent to pgsql-cygwin(at)postgresql(dot)org(dot)
> --- 74,92 ----
> Alternatively, proceed according to the README file supplied with
> the Cygwin PostgreSQL package.
>
> ! Known issues
> ! ------------
>
> 1. Cygwin's AF_UNIX sockets are really implemented as AF_INET sockets
> so they are inherently insecure.
>
> ! 2. "make check" can generate spurious regression test failures due to
> overflowing the listen() backlog queue which causes connection
> ! refused errors or hangs. You can limit the number of connections
> ! using the MAX_CONNECTIONS option thus:
> !
> ! make MAX_CONNECTIONS=5 check
> !
> ! (On some systems you can have up to about 10 simultaneous connections).
>
> Problem reports can be sent to pgsql-cygwin(at)postgresql(dot)org(dot)

>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose an index scan if your
> joining column's datatypes do not match

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073


From: Jason Tishler <jason(at)tishler(dot)net>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-10 14:06:18
Message-ID: 20031110140618.GD1820@tishler.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Christopher,

On Sat, Nov 08, 2003 at 10:47:45PM -0500, Bruce Momjian wrote:
> > ! PostgreSQL requires the Cygwin set of libraries to be installed in
^^^^^^^^^^^^^^^^^^^^^^^
> > ! order that it functions under Windows.

The phrase "Cygwin set of DLLs" is more accurate. Actually, the phrase
"appropriate subset of Cygwin DLLs" is even better.

> > ! 2. Proceed through the Cygwin install wizard. Choose 'Install from
> > ! Internet', specify a Local Package Directory and choose a mirror
> > ! site that's close to you. Leave everything else as-is.
^^^^^^^^^^^^^^^^^^^^^^^^^^^

The default will not work for all users.

> > ! 3a. Start ipc-daemon2 for shared memory support. Use
> > ! "net start ipc-daemon2", if you want ipc-daemon2 installed
> > ! as a service; otherwise, use "ipc-daemon2 &". This program
> > ! needs to be running anytime you start the PostgreSQL server
> > ! (postmaster) or initialize a database (initdb).

The above is missing the "ipc-daemon2 --install-as-service" step.

You may want to add installing postmaster as a service too.

> > ! There are some points that are only relevant if you are building Cygwin
> > ! PostgreSQL from source:
> > !
> > ! 1. Set your path to use the Cygwin bin directory before the Windows
> > ! utilities. Cygwin sort must be used in preference to Windows sort.exe.

Is the above needed during runtime too?

Sorry for being picky and not supplying a patch. Nevertheless, I
appreciate you updating the README.

Thanks,
Jason

--
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6


From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Jason Tishler <jason(at)tishler(dot)net>
Cc: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-10 14:18:14
Message-ID: 3FAF9E26.8010001@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


> The phrase "Cygwin set of DLLs" is more accurate. Actually, the phrase
> "appropriate subset of Cygwin DLLs" is even better.

Ok.

>>>! 2. Proceed through the Cygwin install wizard. Choose 'Install from
>>>! Internet', specify a Local Package Directory and choose a mirror
>>>! site that's close to you. Leave everything else as-is.
>
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^
>
> The default will not work for all users.

Why not? I tried it on a couple of machines... I particularly noted
that it now installs cygipc by default..

>>>! 3a. Start ipc-daemon2 for shared memory support. Use
>>>! "net start ipc-daemon2", if you want ipc-daemon2 installed
>>>! as a service; otherwise, use "ipc-daemon2 &". This program
>>>! needs to be running anytime you start the PostgreSQL server
>>>! (postmaster) or initialize a database (initdb).
>
>
> The above is missing the "ipc-daemon2 --install-as-service" step.
>
> You may want to add installing postmaster as a service too.

Can you please specify the exact set of steps to make this work
perfectly - I've never managed it myself... I managed to find your docs
on it on the Net once, but I never got it working 100%

>>>! There are some points that are only relevant if you are building Cygwin
>>>! PostgreSQL from source:
>>>!
>>>! 1. Set your path to use the Cygwin bin directory before the Windows
>>>! utilities. Cygwin sort must be used in preference to Windows sort.exe.
>
>
> Is the above needed during runtime too?

Not on any machine I've installed on. I just left those steps in
because they were in the old docs.

> Sorry for being picky and not supplying a patch. Nevertheless, I
> appreciate you updating the README.

That's cool. I would appreciate your tips on installing as a service,
however.

Chris


From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: Jason Tishler <jason(at)tishler(dot)net>
Cc: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>, Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-10 14:48:07
Message-ID: Pine.LNX.4.44.0311101547330.11030-100000@peter.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Jason Tishler writes:

> > > ! 1. Set your path to use the Cygwin bin directory before the Windows
> > > ! utilities. Cygwin sort must be used in preference to Windows sort.exe.
>
> Is the above needed during runtime too?

Can anyone see *any* use of "sort" that would warrant the above step?

--
Peter Eisentraut peter_e(at)gmx(dot)net


From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: Jason Tishler <jason(at)tishler(dot)net>, Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-10 15:23:10
Message-ID: 3FAFAD5E.6030300@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


>>>>! 1. Set your path to use the Cygwin bin directory before the Windows
>>>>! utilities. Cygwin sort must be used in preference to Windows sort.exe.
>>
>>Is the above needed during runtime too?
>
>
> Can anyone see *any* use of "sort" that would warrant the above step?

I have no idea. I just left that in because it was in the original version.

tsort steps?

Chris


From: Jason Tishler <jason(at)tishler(dot)net>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-10 16:06:47
Message-ID: 20031110160647.GF1820@tishler.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Christopher,

On Mon, Nov 10, 2003 at 10:18:14PM +0800, Christopher Kings-Lynne wrote:
> >The default will not work for all users.
>
> Why not? I tried it on a couple of machines... I particularly noted
> that it now installs cygipc by default..

The user may be behind a firewall, so the default for "Select Your
Internet Connection" may not be appropriate.

> >You may want to add installing postmaster as a service too.
>
> Can you please specify the exact set of steps to make this work
> perfectly - I've never managed it myself... I managed to find your
> docs on it on the Net once,

I can only recommend culling to relevant information from my README:

http://www.tishler.net/jason/software/postgresql/postgresql-7.3.4.README

> but I never got it working 100%

Really? They always seem to work for me... :,)

Jason

--
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6


From: Jason Tishler <jason(at)tishler(dot)net>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>, Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-10 16:19:07
Message-ID: 20031110161907.GG1820@tishler.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Peter,

On Mon, Nov 10, 2003 at 03:48:07PM +0100, Peter Eisentraut wrote:
> Jason Tishler writes:
> > > > ! 1. Set your path to use the Cygwin bin directory before the Windows
> > > > ! utilities. Cygwin sort must be used in preference to Windows sort.exe.
> >
> > Is the above needed during runtime too?
>
> Can anyone see *any* use of "sort" that would warrant the above step?

Not in practice. I just dragged it along because it was in older
versions of the FAQ.

Jason

--
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6


From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Jason Tishler <jason(at)tishler(dot)net>
Cc: Peter Eisentraut <peter_e(at)gmx(dot)net>, Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-10 19:09:23
Message-ID: 200311101909.hAAJ9Nd24528@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Jason Tishler wrote:
> Peter,
>
> On Mon, Nov 10, 2003 at 03:48:07PM +0100, Peter Eisentraut wrote:
> > Jason Tishler writes:
> > > > > ! 1. Set your path to use the Cygwin bin directory before the Windows
> > > > > ! utilities. Cygwin sort must be used in preference to Windows sort.exe.
> > >
> > > Is the above needed during runtime too?
> >
> > Can anyone see *any* use of "sort" that would warrant the above step?
>
> Not in practice. I just dragged it along because it was in older
> versions of the FAQ.

Would someone send a patch to modify the MSWIN FAQ, if required?

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073


From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: Jason Tishler <jason(at)tishler(dot)net>, Peter Eisentraut <peter_e(at)gmx(dot)net>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-11 01:41:08
Message-ID: 3FB03E34.9060406@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


>>>>>>! 1. Set your path to use the Cygwin bin directory before the Windows
>>>>>>! utilities. Cygwin sort must be used in preference to Windows sort.exe.
>>>>
>>>>Is the above needed during runtime too?
>>>
>>>Can anyone see *any* use of "sort" that would warrant the above step?
>>
>>Not in practice. I just dragged it along because it was in older
>>versions of the FAQ.
>
>
> Would someone send a patch to modify the MSWIN FAQ, if required?

I'll do it shortly.

Chris


From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: Jason Tishler <jason(at)tishler(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-11 02:02:10
Message-ID: 3FB04322.1040000@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Here's some improvements. I just ended up referring people to Jason's
website for install as service, because it's a quite a long and complex
process.

Is that README included with the cygwin package, Jason? Because I
couldn't find it in mine...?

Chris

Bruce Momjian wrote:

> Jason Tishler wrote:
>
>>Peter,
>>
>>On Mon, Nov 10, 2003 at 03:48:07PM +0100, Peter Eisentraut wrote:
>>
>>>Jason Tishler writes:
>>>
>>>>>>! 1. Set your path to use the Cygwin bin directory before the Windows
>>>>>>! utilities. Cygwin sort must be used in preference to Windows sort.exe.
>>>>
>>>>Is the above needed during runtime too?
>>>
>>>Can anyone see *any* use of "sort" that would warrant the above step?
>>
>>Not in practice. I just dragged it along because it was in older
>>versions of the FAQ.
>
>
> Would someone send a patch to modify the MSWIN FAQ, if required?
>

Attachment Content-Type Size
mswin2.txt text/plain 3.8 KB

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Jason Tishler <jason(at)tishler(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-12 04:14:44
Message-ID: 200311120414.hAC4EiH11610@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches


Patch applied to CVS HEAD and 7.4CVS. Thanks.

---------------------------------------------------------------------------

Christopher Kings-Lynne wrote:
> Here's some improvements. I just ended up referring people to Jason's
> website for install as service, because it's a quite a long and complex
> process.
>
> Is that README included with the cygwin package, Jason? Because I
> couldn't find it in mine...?
>
> Chris
>
> Bruce Momjian wrote:
>
> > Jason Tishler wrote:
> >
> >>Peter,
> >>
> >>On Mon, Nov 10, 2003 at 03:48:07PM +0100, Peter Eisentraut wrote:
> >>
> >>>Jason Tishler writes:
> >>>
> >>>>>>! 1. Set your path to use the Cygwin bin directory before the Windows
> >>>>>>! utilities. Cygwin sort must be used in preference to Windows sort.exe.
> >>>>
> >>>>Is the above needed during runtime too?
> >>>
> >>>Can anyone see *any* use of "sort" that would warrant the above step?
> >>
> >>Not in practice. I just dragged it along because it was in older
> >>versions of the FAQ.
> >
> >
> > Would someone send a patch to modify the MSWIN FAQ, if required?
> >

> Index: doc/FAQ_MSWIN
> ===================================================================
> RCS file: /projects/cvsroot/pgsql-server/doc/FAQ_MSWIN,v
> retrieving revision 1.16
> diff -c -r1.16 FAQ_MSWIN
> *** doc/FAQ_MSWIN 9 Nov 2003 03:47:51 -0000 1.16
> --- doc/FAQ_MSWIN 11 Nov 2003 01:59:40 -0000
> ***************
> *** 1,9 ****
> How to install PostgreSQL on Windows
> ====================================
> $Date: 2003/11/09 03:47:51 $
>
> ! PostgreSQL requires the Cygwin set of libraries to be installed in
> ! order that it functions under Windows.
>
> This document assumes that you do not have Cygwin already installed
> on your system. If that is not the case, then you will need to
> --- 1,10 ----
> How to install PostgreSQL on Windows
> ====================================
> +
> $Date: 2003/11/09 03:47:51 $
>
> ! PostgreSQL requires the appropriate subset of Cygwin DLLs to be
> ! installed in order that it functions under Windows.
>
> This document assumes that you do not have Cygwin already installed
> on your system. If that is not the case, then you will need to
> ***************
> *** 16,22 ****
>
> 2. Proceed through the Cygwin install wizard. Choose 'Install from
> Internet', specify a Local Package Directory and choose a mirror
> ! site that's close to you. Leave everything else as-is.
>
> When you come to the point of choosing which packages to install,
> expand the 'Database' section and click 'Skip' next to PostgreSQL
> --- 17,24 ----
>
> 2. Proceed through the Cygwin install wizard. Choose 'Install from
> Internet', specify a Local Package Directory and choose a mirror
> ! site that's close to you. Answer the other installer questions
> ! appropriately for your configuration.
>
> When you come to the point of choosing which packages to install,
> expand the 'Database' section and click 'Skip' next to PostgreSQL
> ***************
> *** 24,34 ****
> Cygwin.
>
> 3. Once the download and install process is complete, open a Cygwin
> ! shell and do the following:
>
> ! 3a. Start ipc-daemon2 for shared memory support. Use
> ! "net start ipc-daemon2", if you want ipc-daemon2 installed
> ! as a service; otherwise, use "ipc-daemon2 &". This program
> needs to be running anytime you start the PostgreSQL server
> (postmaster) or initialize a database (initdb).
>
> --- 26,35 ----
> Cygwin.
>
> 3. Once the download and install process is complete, open a Cygwin
> ! shell and do the following for a basic installation:
>
> ! 3a. Start ipc-daemon2 for shared memory support. To do this,
> ! enter the command "ipc-daemon2 &". This program
> needs to be running anytime you start the PostgreSQL server
> (postmaster) or initialize a database (initdb).
>
> ***************
> *** 52,57 ****
> --- 53,64 ----
>
> 4. You are now running a PostgreSQL server on your Windows machine.
>
> + 5. It is possible to install ipc-daemon2 and the postmaster as
> + Windows NT services. For information on how to do this, please
> + refer to one of the README documents here:
> +
> + http://www.tishler.net/jason/software/postgresql/
> +
> Building from source
> --------------------
>
> ***************
> *** 59,65 ****
> PostgreSQL from source:
>
> 1. Set your path to use the Cygwin bin directory before the Windows
> ! utilities. Cygwin sort must be used in preference to Windows sort.exe.
>
> 2. Proceed according to the INSTALL file (i.e., ./configure; make; etc.)
> noting the following Cygwin specific differences:
> --- 66,72 ----
> PostgreSQL from source:
>
> 1. Set your path to use the Cygwin bin directory before the Windows
> ! utilities. This will help prevent problems with compilation.
>
> 2. Proceed according to the INSTALL file (i.e., ./configure; make; etc.)
> noting the following Cygwin specific differences:

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073


From: Jason Tishler <jason(at)tishler(dot)net>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-12 18:49:40
Message-ID: 20031112184940.GD1452@tishler.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Christopher,

On Tue, Nov 11, 2003 at 11:14:44PM -0500, Bruce Momjian wrote:
> Patch applied to CVS HEAD and 7.4CVS. Thanks.
>
> Christopher Kings-Lynne wrote:
> > [snip]
> > Is that README included with the cygwin package, Jason? Because I
> > couldn't find it in mine...?

Yes, it is currently located in:

/usr/doc/Cygwin/postgresql-7.3.4.README

The next version will be located in:

/usr/share/doc/Cygwin/postgresql-7.3.4.README

to comply with Cygwin's recent FHS requirement.

Jason

--
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D 8784 1AFD E4CC ECF4 8EF6


From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Jason Tishler <jason(at)tishler(dot)net>
Cc: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-13 01:52:43
Message-ID: 3FB2E3EB.4010207@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

OK, here's a final tweak then.

Chris

Jason Tishler wrote:

> Christopher,
>
> On Tue, Nov 11, 2003 at 11:14:44PM -0500, Bruce Momjian wrote:
>
>>Patch applied to CVS HEAD and 7.4CVS. Thanks.
>>
>>Christopher Kings-Lynne wrote:
>>
>>>[snip]
>>>Is that README included with the cygwin package, Jason? Because I
>>>couldn't find it in mine...?
>
>
> Yes, it is currently located in:
>
> /usr/doc/Cygwin/postgresql-7.3.4.README
>
> The next version will be located in:
>
> /usr/share/doc/Cygwin/postgresql-7.3.4.README
>
> to comply with Cygwin's recent FHS requirement.
>
> Jason
>

Attachment Content-Type Size
mswin3.txt text/plain 937 bytes

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
Cc: Jason Tishler <jason(at)tishler(dot)net>, PG Patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: "make check" improvement for cygwin
Date: 2003-11-13 03:53:12
Message-ID: 200311130353.hAD3rC215286@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-patches

Patch applied. Thanks.

---------------------------------------------------------------------------

---------------------------------------------------------------------------

Christopher Kings-Lynne wrote:
> OK, here's a final tweak then.
>
> Chris
>
> Jason Tishler wrote:
>
> > Christopher,
> >
> > On Tue, Nov 11, 2003 at 11:14:44PM -0500, Bruce Momjian wrote:
> >
> >>Patch applied to CVS HEAD and 7.4CVS. Thanks.
> >>
> >>Christopher Kings-Lynne wrote:
> >>
> >>>[snip]
> >>>Is that README included with the cygwin package, Jason? Because I
> >>>couldn't find it in mine...?
> >
> >
> > Yes, it is currently located in:
> >
> > /usr/doc/Cygwin/postgresql-7.3.4.README
> >
> > The next version will be located in:
> >
> > /usr/share/doc/Cygwin/postgresql-7.3.4.README
> >
> > to comply with Cygwin's recent FHS requirement.
> >
> > Jason
> >

> Index: FAQ_MSWIN
> ===================================================================
> RCS file: /projects/cvsroot/pgsql-server/doc/FAQ_MSWIN,v
> retrieving revision 1.17
> diff -c -r1.17 FAQ_MSWIN
> *** FAQ_MSWIN 12 Nov 2003 04:14:30 -0000 1.17
> --- FAQ_MSWIN 13 Nov 2003 01:49:38 -0000
> ***************
> *** 55,63 ****
>
> 5. It is possible to install ipc-daemon2 and the postmaster as
> Windows NT services. For information on how to do this, please
> ! refer to one of the README documents here:
> !
> ! http://www.tishler.net/jason/software/postgresql/
>
> Building from source
> --------------------
> --- 55,62 ----
>
> 5. It is possible to install ipc-daemon2 and the postmaster as
> Windows NT services. For information on how to do this, please
> ! refer to the README document included with Cygwin PostgreSQL. It
> ! is installed in the /usr/share/doc/Cygwin directory.
>
> Building from source
> --------------------

>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073