[COMMITTERS] pgsql: Cope with ERR_set_mark() and ERR_pop_to_mark() not existing in

2007-10-01 Thread Tom Lane
Log Message: --- Cope with ERR_set_mark() and ERR_pop_to_mark() not existing in older OpenSSL libraries --- just don't call them if they're not there. This might possibly lead to misleading error messages, but we'll just have to live with that. Modified Files: -- pgsql:

Re: [COMMITTERS] pgsql: Use BIO functions to avoid passing FILE * pointers to OpenSSL

2007-10-01 Thread Tom Lane
Gregory Stark <[EMAIL PROTECTED]> writes: > "Magnus Hagander" <[EMAIL PROTECTED]> writes: >> Use BIO functions to avoid passing FILE * pointers to OpenSSL functions. > Several buildfarm machines are failing: http://www.openssl.org/docs/crypto/ERR_set_mark.html says ERR_set_mark() and ERR_pop_to_m

Re: [COMMITTERS] pgsql: Use BIO functions to avoid passing FILE * pointers to OpenSSL

2007-10-01 Thread Gregory Stark
"Magnus Hagander" <[EMAIL PROTECTED]> writes: > Log Message: > --- > Use BIO functions to avoid passing FILE * pointers to OpenSSL functions. > This fixes potential crashes on old versions of OpenSSL and the requirement on > "Applink" in new versions when building with MSVC and using diff

[COMMITTERS] pgsql: Add catalogs.sgml documentation for text search catalogs.

2007-10-01 Thread Tom Lane
Log Message: --- Add catalogs.sgml documentation for text search catalogs. Modified Files: -- pgsql/doc/src/sgml: catalogs.sgml (r2.158 -> r2.159) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/catalogs.sgml?r1=2.158&r2=2.159) -

[COMMITTERS] pgsql: Use BIO functions to avoid passing FILE * pointers to OpenSSL

2007-10-01 Thread Magnus Hagander
Log Message: --- Use BIO functions to avoid passing FILE * pointers to OpenSSL functions. This fixes potential crashes on old versions of OpenSSL and the requirement on "Applink" in new versions when building with MSVC and using different runtimes. Dave Page with fixes from me. Modified F

[COMMITTERS] pgsql: Add some examples.

2007-10-01 Thread D'Arcy J.M. Cain
Log Message: --- Add some examples. Modified Files: -- pgsql/contrib/chkpass: README.chkpass (r1.4 -> r1.5) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/chkpass/README.chkpass?r1=1.4&r2=1.5) ---(end of broadcast)---

[COMMITTERS] pgsql: Add note warning against use of pre-8.4 multithreaded Tcl.

2007-10-01 Thread Tom Lane
Log Message: --- Add note warning against use of pre-8.4 multithreaded Tcl. Modified Files: -- pgsql/doc/src/sgml: installation.sgml (r1.292 -> r1.293) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/installation.sgml?r1=1.292&r2=1.293)

[COMMITTERS] pgsql: Avoid assuming that struct varattrib_pointer doesn't get padded

2007-10-01 Thread Tom Lane
Log Message: --- Avoid assuming that struct varattrib_pointer doesn't get padded by the compiler --- at least on ARM, it does. I suspect that the varvarlena patch has been creating larger-than-intended toast pointers all along on ARM, but it wasn't exposed until the latest tweak added some

[COMMITTERS] pginstaller - pginst: initdb parameter mistake.

2007-10-01 Thread User H-saito
Log Message: --- initdb parameter mistake. Modified Files: -- pginst/wxs: pginst.wxs (r1.218 -> r1.219) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/wxs/pginst.wxs.diff?r1=1.218&r2=1.219) ---(end of broadcast)

[COMMITTERS] pginstaller - pginst: Install the pl/pgsql debugger plugin from

2007-10-01 Thread User Dpage
Log Message: --- Install the pl/pgsql debugger plugin from EnterpriseDB Modified Files: -- pginst/ca: pginstca.c (r1.113 -> r1.114) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/ca/pginstca.c.diff?r1=1.113&r2=1.114) pginst/wxi:

[COMMITTERS] pgsql: Build with /GS on 64-bit to work with modern Platform SDK.

2007-10-01 Thread Magnus Hagander
Log Message: --- Build with /GS on 64-bit to work with modern Platform SDK. Hiroshi Saito Modified Files: -- pgsql/src/interfaces/libpq: win32.mak (r1.47 -> r1.48) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/win32.mak?r1=1.47&r2=

[COMMITTERS] pginstaller - pginst: Client encoding used by psql.exe.

2007-10-01 Thread User H-saito
Log Message: --- Client encoding used by psql.exe. Modified Files: -- pginst/inst: psql.bat (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/inst/psql.bat.diff?r1=1.1&r2=1.2) pginst/wxs: pginst.wxs (r1.216 -> r1.217

[COMMITTERS] pgsql: Update pgcvslog text to simply ""

2007-10-01 Thread Bruce Momjian
Log Message: --- Update pgcvslog text to simply "" Modified Files: -- pgsql/src/tools: pgcvslog (r1.35 -> r1.36) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/tools/pgcvslog?r1=1.35&r2=1.36) ---(end of broadcast)

[COMMITTERS] pginstaller - pginst: Re-enable stackbuilder

2007-10-01 Thread User Dpage
Log Message: --- Re-enable stackbuilder Modified Files: -- pginst: settings.projinc (r1.6 -> r1.7) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/settings.projinc.diff?r1=1.6&r2=1.7) ---(end of broadcast)---

[COMMITTERS] pginstaller - pginst: Few minor bug fixes

2007-10-01 Thread User Dpage
Log Message: --- Few minor bug fixes Modified Files: -- pginst/wxs: pginst.wxs (r1.215 -> r1.216) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/wxs/pginst.wxs.diff?r1=1.215&r2=1.216) ---(end of broadcast)--

[COMMITTERS] pgsql: Enable __FUNCTION__ on MSVC builds.

2007-10-01 Thread Magnus Hagander
Log Message: --- Enable __FUNCTION__ on MSVC builds. Hannes Eder Modified Files: -- pgsql/src/include: pg_config.h.win32 (r1.42 -> r1.43) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/pg_config.h.win32?r1=1.42&r2=1.43)

[COMMITTERS] pginstaller - pginst: Client encoding for command lines is added.

2007-10-01 Thread User H-saito
Log Message: --- Client encoding for command lines is added. Modified Files: -- pginst/ca: locale.c (r1.12 -> r1.13) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/ca/locale.c.diff?r1=1.12&r2=1.13) pginst/lang: de.xml (r1.34 ->

[COMMITTERS] pginstaller - pginst: Add FInnish hints and tips for pgAdmin

2007-10-01 Thread User Dpage
Log Message: --- Add FInnish hints and tips for pgAdmin Modified Files: -- pginst/wxs: pginst.wxs (r1.213 -> r1.214) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/wxs/pginst.wxs.diff?r1=1.213&r2=1.214) ---(end of b

[COMMITTERS] pginstaller - pginst: Use the correct pgAdmin scripts directory

2007-10-01 Thread User Dpage
Log Message: --- Use the correct pgAdmin scripts directory Modified Files: -- pginst/wxs: pginst.wxs (r1.212 -> r1.213) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/wxs/pginst.wxs.diff?r1=1.212&r2=1.213) ---(end o

[COMMITTERS] stackbuilder - wizard: Attempt to auto-expand the appropriate mirror

2007-10-01 Thread User Dpage
Log Message: --- Attempt to auto-expand the appropriate mirror country node where possible. [Hiroshi Saito] Modified Files: -- wizard: MirrorList.cpp (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/MirrorList.cpp.diff?r1=1.5

[COMMITTERS] pgsql: Fix a minor typo.

2007-10-01 Thread D'Arcy J.M. Cain
Log Message: --- Fix a minor typo. Modified Files: -- pgsql/contrib/chkpass: README.chkpass (r1.3 -> r1.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/chkpass/README.chkpass?r1=1.3&r2=1.4) ---(end of broadcast)