]> granicus.if.org Git - postgresql/commitdiff
Add support for XML build option to MSVC build scripts.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 29 Dec 2006 16:49:02 +0000 (16:49 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 29 Dec 2006 16:49:02 +0000 (16:49 +0000)
Magnus Hagander

src/tools/msvc/Solution.pm

index e60525656d21660a72115d0c7837a8ea75128881..3b9c64cd0a1aa0ae91637f5202317849677eb092 100644 (file)
@@ -84,6 +84,10 @@ sub GenerateFiles {
                print O "#define USE_SSL 1\n" if ($self->{options}->{openssl});
                print O "#define ENABLE_NLS 1\n" if ($self->{options}->{nls});
                print O "#define LOCALEDIR \"/usr/local/pgsql/share/locale\"\n" if ($self->{options}->{nls});
+               if ($self->{options}->{xml}) {
+         print O "#define HAVE_LIBXML2\n";
+         print O "#define USE_LIBXML\n";
+      }
                if ($self->{options}->{krb5}) {
                        print O "#define KRB5 1\n";
                        print O "#define HAVE_KRB5_ERROR_TEXT_DATA 1\n";
@@ -246,6 +250,11 @@ sub AddProject {
                $proj->AddLibrary($self->{options}->{krb5} . '\lib\i386\krb5_32.lib');
                $proj->AddLibrary($self->{options}->{krb5} . '\lib\i386\comerr32.lib');
        }
+       if ($self->{options}->{xml}) {
+      $proj->AddIncludeDir($self->{options}->{xml} . '\include');
+      $proj->AddIncludeDir($self->{options}->{iconv} . '\include');
+      $proj->AddLibrary($self->{options}->{xml} . '\lib\libxml2.lib');
+   }
        return $proj;
 }