Andrew Dunstan wrote: > Magnus Hagander wrote: >>> My point was that I can't even investigate how MSVC is working >>> at all. >> So what is it you're looking for, specifically, to help with that? >> >> > > As a very bare minimum, we need to change the installation procedure to > log its destination. > > Unless that has somehow got screwed up I can't see how Tom's theory of a > possibly left over .bki file can stand up.
Just to be clear, are you looking for something as simple as this? Index: Install.pm =================================================================== RCS file: /cvsroot/pgsql/src/tools/msvc/Install.pm,v retrieving revision 1.14 diff -c -r1.14 Install.pm *** Install.pm 25 Apr 2007 19:00:05 -0000 1.14 --- Install.pm 13 May 2007 15:21:51 -0000 *************** *** 35,41 **** $conf = "release"; } die "Could not find debug or release binaries" if ($conf eq ""); ! print "Installing for $conf\n"; EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc', 'doc/contrib', 'symbols'); --- 35,41 ---- $conf = "release"; } die "Could not find debug or release binaries" if ($conf eq ""); ! print "Installing for $conf in $target\n"; EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc', 'doc/contrib', 'symbols'); //Magnus ---------------------------(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