8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c833b commit 5600aacCopy full SHA for 5600aac
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.53 2010/01/05 13:31:58 mha Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.54 2010/03/02 12:29:14 adunstan Exp $
7
8
use Carp;
9
use strict;
@@ -209,6 +209,11 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
209
print O "#define HAVE_LIBXML2\n";
210
print O "#define USE_LIBXML\n";
211
}
212
+ if ($self->{options}->{xslt})
213
+ {
214
+ print O "#define HAVE_LIBXSLT\n";
215
+ print O "#define USE_LIBXSLT\n";
216
+ }
217
if ($self->{options}->{krb5})
218
{
219
print O "#define KRB5 1\n";
0 commit comments