aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2007-04-18 10:14:06 +0000
committerMagnus Hagander <magnus@hagander.net>2007-04-18 10:14:06 +0000
commit62d25256f13d067f3150200efba38b7ec5102327 (patch)
treed93ec6bd22c5e0a6c288aa7b675867a12a30922a /doc/src
parent5574c9f3a5d4ec8432cee5a10949b82929308eed (diff)
downloadpostgresql-62d25256f13d067f3150200efba38b7ec5102327.tar.gz
postgresql-62d25256f13d067f3150200efba38b7ec5102327.zip
Change default build to release, to be consistent with unix build.
Make it possible to set the default from builenv.bat. Per request from Dave Page
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/install-win32.sgml17
1 files changed, 12 insertions, 5 deletions
diff --git a/doc/src/sgml/install-win32.sgml b/doc/src/sgml/install-win32.sgml
index f2fbdb8440f..a304df09f34 100644
--- a/doc/src/sgml/install-win32.sgml
+++ b/doc/src/sgml/install-win32.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.38 2007/03/29 15:30:52 mha Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/install-win32.sgml,v 1.39 2007/04/18 10:14:06 mha Exp $ -->
<chapter id="install-win32">
<title>Installation on <productname>Windows</productname></title>
@@ -186,17 +186,17 @@
<title>Building</title>
<para>
- To build all of PostgreSQL in debug configuration (the default), run the
+ To build all of PostgreSQL in release configuration (the default), run the
command:
<screen>
<userinput>
build
</userinput>
</screen>
- To build all of PostgreSQL in release configuration, run the command:
+ To build all of PostgreSQL in debug configuration, run the command:
<screen>
<userinput>
- build RELEASE
+ build DEBUG
</userinput>
</screen>
To build just a single project, for example psql, run the commands:
@@ -205,7 +205,14 @@
build psql
</userinput>
<userinput>
- build RELEASE psql
+ build DEBUG psql
+ </userinput>
+ </screen>
+ To change the default build configuration to debug, put the following
+ in the buildenv.bat file:
+ <screen>
+ <userinput>
+ set CONFIG=Debug
</userinput>
</screen>
</para>