[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 http://www.gunduz.org/postgresql/translation/PostgreSQL-8.0/PgSQL-DilDosyalari/pg_controldata-tr

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 wh

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] Fix VC++/Borland libpq build - pqsignal

2004-10-18 Thread Dave Page
Not entirely sure when this broke, but libpq's VC++ build is currently lacking pqsignal which is now required. This was found and fixed for VC++ by Shachar Shemesh, I simply duplicated the fix for the Borland makefile (untested, as I don't have that compiler). Please apply. Regards, Dave pqsign

[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 pl

[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 http:/

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. > > R

Re: [PATCHES] pg_regress --temp-keep

2004-10-18 Thread Tom Lane
Fabien COELHO <[EMAIL PROTECTED]> writes: > Improving the performance would require to fix the install script so that > it can handle more than one argument at once, and/or use a more or less > standard "install" program when available. We used to try to use the "standard" install program when a

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 warnin

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] Win32 psql fix

2004-10-18 Thread Tom Lane
"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] 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'

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.orgdevrim.gunduz~linux.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 fi

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 broadc

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

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 to

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 mi

[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 services.m

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. -

Re: [PATCHES] [HACKERS] Open Items

2004-10-18 Thread Magnus Hagander
>> 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 serv

Re: [PATCHES] additional GCC warning flags

2004-10-18 Thread Neil Conway
On Tue, 2004-10-19 at 11:59, Neil Conway wrote: > -Wpointer-arith might be worth enabling. I'll add it to the GCC CFLAGS > in the next patch I send in. Attached is a revised patch. Changes: - add -Wpointer-arith to the default CFLAGS when using GCC - add an AC macro AC_PROG_CC_CFLAGS_OPT that ch