[PATCHES] pg_config-zh_TW.po for 8.0

2004-10-18 Thread Zhenbang Wei
All messages translated Thanks pg_config-zh_TW.po.gz Description: GNU Zip compressed data ---(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

[PATCHES] Updated Turkish translations

2004-10-18 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I've updated pg_ctl, initdb and pg_controldata translations: http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/initdb-tr.po

Re: [PATCHES] pg_regress --temp-keep

2004-10-18 Thread Fabien COELHO
Dear Tom, What I'd rather see is some effort spent on speeding up our install script, maybe by allowing it to install multiple files per invocation. The recent changes to force install-all-headers have caused a serious degradation of make install performance, Yes, I agree. and I think that's where

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Bruce Momjian
FYI, I also use: -Wpointer-arith -Wcast-align locally. I think -Wcast-align throws errors on some platforms and can't be use generally. --- Neil Conway wrote: This patch adds code to configure to check if GCC

[PATCHES] Win32 psql fix

2004-10-18 Thread Dave Page
The attached patch fixes psql's win32 frontend-only build, by using pg_strcasecmp in variables.c, and #ifdef'ing out PostmasterPid in miscadmin.h. Please apply. Regards Dave. psql.diff Description: psql.diff ---(end of broadcast)--- TIP 9: the

[PATCHES] (Turkish) New Translation: pgscripts

2004-10-18 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I've translated pgscripts into Turkish: http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pgscripts-tr.po Could you please apply it? Regards, - -- Devrim GUNDUZ devrim~gunduz.orgdevrim.gunduz~linux.org.tr

Re: [PATCHES] Win32 psql fix

2004-10-18 Thread Bruce Momjian
Patch applied. Thanks. --- Dave Page wrote: The attached patch fixes psql's win32 frontend-only build, by using pg_strcasecmp in variables.c, and #ifdef'ing out PostmasterPid in miscadmin.h. Please apply. Regards

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Tom Lane
Neil Conway [EMAIL PROTECTED] writes: This patch updates configure.in and configure (I re-ran autoconf 2.53). It doesn't introduce any additional warning messages locally (Linux, GCC 3.4), but might do so on some platforms (the code in src/port/ is likely to trigger some warnings, I think).

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Bruce Momjian
Agreed, I see no harm in adding it now. --- Tom Lane wrote: Neil Conway [EMAIL PROTECTED] writes: This patch updates configure.in and configure (I re-ran autoconf 2.53). It doesn't introduce any additional warning

Re: [PATCHES] windows progname / regression fixes

2004-10-18 Thread Bruce Momjian
I will add some comments to the code when applying. Your patch has been added to the PostgreSQL unapplied patches list at: http://momjian.postgresql.org/cgi-bin/pgpatches It will be applied as soon as one of the PostgreSQL committers reviews and approves it.

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Peter Eisentraut
Neil Conway wrote: This patch adds code to configure to check if GCC supports the following warning flags: -Wdeclaration-after-statement (GCC 3.4+), -Wold-style-definition (GCC 3.4+), and -Wendif-labels (GCC 3.3+). Any of these options that are supported by $CC are added to $CFLAGS. Can't you

Re: [PATCHES] pg_config-zh_TW.po for 8.0

2004-10-18 Thread Peter Eisentraut
Zhenbang Wei wrote: All messages translated Installed. -- Peter Eisentraut http://developer.postgresql.org/~petere/ ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

[PATCHES] (Turkish) New translation: libpq

2004-10-18 Thread Devrim GUNDUZ
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I've translated about %35 of libpq into Turkish: http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/libpq-tr.po Could you please apply it for 8.0? Regards, - -- Devrim GUNDUZ devrim~gunduz.org

Re: [PATCHES] Updated Turkish translations

2004-10-18 Thread Peter Eisentraut
Devrim GUNDUZ wrote: I've updated pg_ctl, initdb and pg_controldata translations: Installed. -- Peter Eisentraut http://developer.postgresql.org/~petere/ ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings

Re: [PATCHES] Win32 psql fix

2004-10-18 Thread Bruce Momjian
Tom Lane wrote: Dave Page [EMAIL PROTECTED] writes: The attached patch fixes psql's win32 frontend-only build, by using pg_strcasecmp in variables.c, and #ifdef'ing out PostmasterPid in miscadmin.h. What in the world is client-side code doing including miscadmin.h in the first place?

Re: [PATCHES] [HACKERS] Final libpq patch?

2004-10-18 Thread Tom Lane
Here's the patch actually applied. I cleaned up the state problem, fixed a couple minor omissions in the code, and did some work on the documentation; also updated exports.txt which is now the source for the *.def files. regards, tom lane *** doc/src/sgml/libpq.sgml.orig

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Neil Conway
On Tue, 2004-10-19 at 03:19, Tom Lane wrote: As long as it can only introduce warnings and not errors, I think it is fine to apply now. Okay -- I'll submit a revised patch that incorporates the suggestions from Peter and yourself later today. -Neil ---(end of

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Neil Conway
On Mon, 2004-10-18 at 21:43, Bruce Momjian wrote: FYI, I also use: -Wpointer-arith -Wcast-align locally. I think -Wcast-align throws errors on some platforms and can't be use generally. -Wpointer-arith might be worth enabling. I'll add it to the GCC CFLAGS in the next patch I send

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Tom Lane
Neil Conway [EMAIL PROTECTED] writes: -Wpointer-arith might be worth enabling. I'll add it to the GCC CFLAGS in the next patch I send in. If PG builds cleanly or nearly so with it on, by all means. As you said, -Wcast-align can't be enabled in general at the moment because it flags a ton of

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Neil Conway
On Tue, 2004-10-19 at 12:21, Tom Lane wrote: When I looked at the current gcc Info docs, I noticed that there seem to be several new warning types that might be worth turning on. Did you consider others beyond the three you're proposing now? I took a look through the list, but I probably

[PATCHES] Translation updates: pt_BR

2004-10-18 Thread Euler Taveira de Oliveira
Hi, I just updated the pt_BR translation. The URL above contain a tarball with all the updates. http://br.geocities.com/eulerto/pg/pg_pt-br.tgz Please apply. = Euler Taveira de Oliveira euler[at]yahoo_com_br __ Do You Yahoo!? Tired of spam?

Re: [PATCHES] [HACKERS] Open Items

2004-10-18 Thread Zeugswetter Andreas DAZ SD
o fix shared memory on Win2k terminal server We might be able to just mark this as not supported. I have attached a patch that I think fixes this. The problem I saw and fixed is, that the shmem created in a terminal services client is not visible to the console (or

Re: [PATCHES] [HACKERS] Open Items

2004-10-18 Thread Bruce Momjian
Agreed on the memory name change and I will do it when I apply the patch. Your patch has been added to the PostgreSQL unapplied patches list at: http://momjian.postgresql.org/cgi-bin/pgpatches It will be applied as soon as one of the PostgreSQL committers reviews and approves it.