We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent2d0583a commit458c585Copy full SHA for 458c585
src/tools/msvc/Solution.pm
@@ -3,7 +3,7 @@ package Solution;
3
#
4
# Package that encapsulates a Visual C++ solution file generation
5
6
-# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.36 2008/02/28 12:17:59 mha Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.37 2008/03/21 02:50:02 adunstan Exp $
7
8
use Carp;
9
use strict;
@@ -205,6 +205,12 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
205
close(T);
206
}
207
208
+if (IsNewer('src\include\utils\probes.h','src\backend\utils\pg_trace.d'))
209
+ {
210
+print"Generating probes.h...\n";
211
+system('psed -f src\backend\utils\Gen_dummy_probes.sed src\backend\utils\probes.d > src\include\utils\probes.h');
212
+}
213
+
214
if (IsNewer('src\interfaces\libpq\libpq.rc','src\interfaces\libpq\libpq.rc.in'))
215
{
216
print"Generating libpq.rc...\n";