]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Add libxml2 include path for MSVC builds
authorAndrew Dunstan <andrew@dunslane.net>
Fri, 12 May 2017 14:17:54 +0000 (10:17 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Fri, 12 May 2017 14:22:20 +0000 (10:22 -0400)
On Unix this path is detected via the use of xml2-config, but that's not
available on Windows. This means that users building with libxml2 will
no longer need to move things around from the standard libxml2
installation for MSVC builds.

Backpatch to all live branches.

src/tools/msvc/Solution.pm

index f07029bce1612cd15d02495b729a94f23284a206..666605b47b9acd558ed007fa82b3dad131fc5624 100644 (file)
@@ -548,6 +548,7 @@ sub AddProject
        if ($self->{options}->{xml})
        {
                $proj->AddIncludeDir($self->{options}->{xml} . '\include');
+               $proj->AddIncludeDir($self->{options}->{xml} . '\include\libxml2');
                $proj->AddLibrary($self->{options}->{xml} . '\lib\libxml2.lib');
        }
        if ($self->{options}->{xslt})