Re: [PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-25 Thread Tom Lane
"Rocco Altier" <[EMAIL PROTECTED]> writes: > You propose making it similar to libpq. By that do you mean breaking it > into 2 separate diretories - backend/libpq & interfaces/libpq - so that > we create the libraries pgport and pgport_srv from different directories > - possibly using the existing

Re: [PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-25 Thread Rocco Altier
x - patch attached. Thanks -rocco (desperate to get AIX green on buildfarm) > -Original Message- > From: Tom Lane [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 24, 2005 7:34 PM > To: Rocco Altier > Cc: Patches (PostgreSQL) > Subject: Re: [PATCHES] Regressio

Re: [PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-24 Thread Tom Lane
"Rocco Altier" <[EMAIL PROTECTED]> writes: > This time I actually have the patches :-) I've applied the parts of this that add -lm to contrib modules, but not the parts that add -lpgport. That's because libpgport is not built to be relocatable, and so including it fails hard on platforms that car

Re: [PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-24 Thread Tom Lane
"Rocco Altier" <[EMAIL PROTECTED]> writes: >> It seems highly unlikely that this will accomplish anything, >> given that SHLIB_LINK is not used to construct regress.so. >> > I have another patch in queue for this. Oh, I see, you want to use SHLIB_LINK in the %$(DLSUFFIX): %.o rule. > Right now

Re: [PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-24 Thread Rocco Altier
ression - GNUmakefile - pg_usleep > > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of Tom Lane > > Sent: Sunday, July 24, 2005 10:47 AM > > To: Rocco Altier > > Cc: Patches (Postgr

Re: [PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-24 Thread Rocco Altier
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Tom Lane > Sent: Sunday, July 24, 2005 10:47 AM > To: Rocco Altier > Cc: Patches (PostgreSQL) > Subject: Re: [PATCHES] Regression - GNUmakefile - pg_usleep > > > &q

Re: [PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-24 Thread Tom Lane
"Rocco Altier" <[EMAIL PROTECTED]> writes: > Attached patch fixes the SHLIB_LINK to add pgport now that pg_usleep is > added. It seems highly unlikely that this will accomplish anything, given that SHLIB_LINK is not used to construct regress.so. > This is needed for AIX to resolve symbols at comp

[PATCHES] Regression - GNUmakefile - pg_usleep

2005-07-23 Thread Rocco Altier
Attached patch fixes the SHLIB_LINK to add pgport now that pg_usleep is added. This is needed for AIX to resolve symbols at compile time. This is also to be used in conjuction with the other patch I have pending for Makefile.aix to SHLIB_LINK instead of LIBS to compile shared objects. Thanks,