[COMMITTERS] stackbuilder - wizard: New Directory

2008-09-02 Thread Dave Page
Update of /cvsroot/stackbuilder/wizard/cmake
In directory pgfoundry.org:/tmp/cvs-serv94255/cmake

Log Message:
Directory /cvsroot/stackbuilder/wizard/cmake added to the repository


-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] stackbuilder - wizard: New, more robust module for finding wxWidgets.

2008-09-02 Thread Dave Page
Log Message:
---
New, more robust module for finding wxWidgets.

Modified Files:
--
wizard:
CMakeLists.txt (r1.17 -> r1.18)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/CMakeLists.txt.diff?r1=1.17&r2=1.18)

Added Files:
---
wizard/cmake:
FindWX.cmake (r1.1)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/cmake/FindWX.cmake?rev=1.1&content-type=text/x-cvsweb-markup)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] stackbuilder - wizard: Hide the temp variable from the UI

2008-09-02 Thread Dave Page
Log Message:
---
Hide the temp variable from the UI

Modified Files:
--
wizard/cmake:
FindWX.cmake (r1.1 -> r1.2)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/cmake/FindWX.cmake.diff?r1=1.1&r2=1.2)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] stackbuilder - wizard: Always link with default wxWidgets libraries on

2008-09-02 Thread Dave Page
Log Message:
---
Always link with default wxWidgets libraries on Windows

Modified Files:
--
wizard:
CMakeLists.txt (r1.18 -> r1.19)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/CMakeLists.txt.diff?r1=1.18&r2=1.19)
wizard/cmake:
FindWX.cmake (r1.2 -> r1.3)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/cmake/FindWX.cmake.diff?r1=1.2&r2=1.3)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] stackbuilder - wizard: wxWidgets is required

2008-09-02 Thread Dave Page
Log Message:
---
wxWidgets is required

Modified Files:
--
wizard:
CMakeLists.txt (r1.19 -> r1.20)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/CMakeLists.txt.diff?r1=1.19&r2=1.20)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] stackbuilder - wizard: Use CXXFLAGS not CPPFLAGS

2008-09-02 Thread Dave Page
Log Message:
---
Use CXXFLAGS not CPPFLAGS

Modified Files:
--
wizard/cmake:
FindWX.cmake (r1.3 -> r1.4)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/cmake/FindWX.cmake.diff?r1=1.3&r2=1.4)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] stackbuilder - wizard: Capitalise CPack correctly

2008-09-02 Thread Dave Page
Log Message:
---
Capitalise CPack correctly

Modified Files:
--
wizard:
CMakeLists.txt (r1.20 -> r1.21)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/stackbuilder/wizard/CMakeLists.txt.diff?r1=1.20&r2=1.21)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] pgsql: Prevent memory leaks in our various bison parsers when an error

2008-09-02 Thread Tom Lane
Log Message:
---
Prevent memory leaks in our various bison parsers when an error occurs
during parsing.  Formerly the parser's stack was allocated with malloc
and so wouldn't be reclaimed; this patch makes it use palloc instead,
so that flushing the current context will reclaim the memory.  Per
Marko Kreen.

Modified Files:
--
pgsql/contrib/cube:
cubeparse.y (r1.17 -> r1.18)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/cube/cubeparse.y?r1=1.17&r2=1.18)
pgsql/contrib/seg:
segparse.y (r1.17 -> r1.18)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/seg/segparse.y?r1=1.17&r2=1.18)
pgsql/src/backend/bootstrap:
bootparse.y (r1.93 -> r1.94)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/bootstrap/bootparse.y?r1=1.93&r2=1.94)
pgsql/src/backend/parser:
gram.y (r2.621 -> r2.622)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/gram.y?r1=2.621&r2=2.622)
pgsql/src/pl/plpgsql/src:
gram.y (r1.113 -> r1.114)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/gram.y?r1=1.113&r2=1.114)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers


[COMMITTERS] npgsql - Npgsql2: change multiset value to read from type rather than

2008-09-02 Thread User Jbcooley
Log Message:
---
change multiset value to read from type rather than attribute.  Also fixed 
functions, function parameters and procedure parameters to no longer depend on 
pg_attribute.  This corrected the parameter generations and drastically 
improved performance.

Modified Files:
--
Npgsql2/src/Npgsql:
NpgsqlSchema.ssdl (r1.6 -> r1.7)

(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlSchema.ssdl.diff?r1=1.6&r2=1.7)

-- 
Sent via pgsql-committers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers