[PATCHES] vcbuild verbosity

2007-01-09 Thread Magnus Hagander
This patch enables verbose output when building all projects. This is
the same output level that was used when building a single project
before, and really needed to get reasonable information about what
happens (non-verbose just says starting build of foo and done
building foo, more or less).

//Magnus
Index: src/tools/msvc/build.bat
===
RCS file: c:/prog/cvsrepo/pgsql/pgsql/src/tools/msvc/build.bat,v
retrieving revision 1.2
diff -c -r1.2 build.bat
*** src/tools/msvc/build.bat15 Sep 2006 21:42:02 -  1.2
--- src/tools/msvc/build.bat29 Dec 2006 21:25:18 -
***
*** 12,18 
  if not %CONFIG% ==  shift
  if %CONFIG% ==  set CONFIG=Debug
  
! if %1 ==  msbuild pgsql.sln /p:Configuration=%CONFIG%
  if not %1 ==  vcbuild %1.vcproj %CONFIG%
  
  cd %STARTDIR%
--- 12,18 
  if not %CONFIG% ==  shift
  if %CONFIG% ==  set CONFIG=Debug
  
! if %1 ==  msbuild pgsql.sln /verbosity:detailed /p:Configuration=%CONFIG%
  if not %1 ==  vcbuild %1.vcproj %CONFIG%
  
  cd %STARTDIR%

---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [PATCHES] vcbuild verbosity

2007-01-09 Thread Neil Conway
On Tue, 2007-01-09 at 18:56 +0100, Magnus Hagander wrote:
 This patch enables verbose output when building all projects.

Applied, thanks.

-Neil



---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match