[PATCHES] Threading with non-shared libraries

2004-12-14 Thread Bruce Momjian
OK, it took me a while to figure this out, but it is similar to the problem we have on AIX. AIX shared libraries don't track other libraries needed by the shared library, and non-shared libraries also have no such dependency information. I have attached a patch that is very similar to the AIX fi

[PATCHES] Updated Turkish translations for 8.0.0

2004-12-14 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, http://postgresql.gunduz.org/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/postgres-tr.po fixes the error, per http://developer.postgresql.org/~petere/nlsstatus/po-current/postgres-tr.po.err http://postgresql.gunduz.org/translation/PostgreSQL-8.0/

[PATCHES] Patch to add version numbers to libpq.rc

2004-12-14 Thread Bruce Momjian
Bruce Momjian wrote: > We could do "date '+%y%j' to output 04349. How many bits do we have for > that last comma value? This would work unless you put out two > installers in the same day. However, this would not work for VC and BCC > because they don't have 'date'. This would give us an ever-i

Re: [PATCHES] Optional REFERENCES Feature in CREATE TRIGGER Command

2004-12-14 Thread hyip
I really appreciate that, Mr. Momjian. > > This has been saved for the 8.1 release: > > http:/momjian.postgresql.org/cgi-bin/pgpatches2 > > --- > > [EMAIL PROTECTED] wrote: >> Hi, >> >> The attached patch adds the option

Re: [PATCHES] Optional REFERENCES Feature in CREATE TRIGGER Command

2004-12-14 Thread hyip
Thanks, Tom. 1. If you remembered, before I implemented this new feature, I did discuss with you. Please refer the following emails. Original Message Subject: Re: Referencing OLD/NEW Rows on Trigger Definition From:"Tom Lane" <[EMAIL

Re: [PATCHES] Threading fix for AIX

2004-12-14 Thread Zeugswetter Andreas DAZ SD
>> 1. the snprintf long long int check that uses int64 as variable name which >> is >> a typedef in sys/inttypes.h > > I changed it to ac_int64. Does that help? One more is needed in c-library.m4. >> 2. whether strerror_r returns int check fails with a redefine of named >> function >>

Re: [PATCHES] Threading fix for AIX

2004-12-14 Thread Bruce Momjian
Bruce Momjian wrote: > > attached is a reworked patch that works on aix 4.3.2 and 5.2, please check > > the configure part, > > cause I don't have autoconf. > > I modified my patch to fix the problems you reported. Please report > back. > Sorry, patch now attached. -- Bruce Momjian

Re: [PATCHES] Threading fix for AIX

2004-12-14 Thread Bruce Momjian
Zeugswetter Andreas DAZ SD wrote: > > >> 1. the snprintf long long int check that uses int64 as variable name which > >> is > >>a typedef in sys/inttypes.h > > > > I changed it to ac_int64. Does that help? > > One more is needed in c-library.m4. OK, done. > >> 2. whether strerror_r retur

[PATCHES] Last french .po file

2004-12-14 Thread Guillaume LELARGE
Hi, This is the last remaining .po file for the french translation. Thanks. -- Guillaume. pg_resetxlog-fr.po.bz2 Description: application/bzip ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subs

[PATCHES] fix entab compile with gcc 3.3.5

2004-12-14 Thread Marko Kreen
entab did not compile for me (cvs head), as gcc 3.3.5 #error's on . This patch includes and also converts arg declaration to ANSI style, because K&R varargs are mystery to me. -- marko Index: src/tools/entab/entab.c === RCS file

Re: [PATCHES] fix entab compile with gcc 3.3.5

2004-12-14 Thread Bruce Momjian
This has been saved for the 8.1 release: http:/momjian.postgresql.org/cgi-bin/pgpatches2 --- Marko Kreen wrote: > > entab did not compile for me (cvs head), as > gcc 3.3.5 #error's on . > > This patch includes a

Re: [PATCHES] Optional REFERENCES Feature in CREATE TRIGGER Command

2004-12-14 Thread hyip
> I must be missing something, but AFAICS this patch doesn't actually *do* > anything useful. It looks to me like you've implemented a write-only > addition to the system catalogs. (And not even done a very good job of > that --- no documentation, no pg_dump support.) What's the point? I just w