Commit 39aadc98 authored by Michael Paquier's avatar Michael Paquier

Fix some inconsistencies in MSVC scripts

In configure scripts, --with-ossp-uuid is obsolete is replaced by
--with-uuid, and it needs to specify a path to its library builds when
building with the MSVC scripts.  --with-perl needs also to specify a
path.

Author: Kyotaro Horiguchi
Discussion: https://postgr.es/m/20190712.121529.194600624.horikyota.ntt@gmail.com
parent 170d11b8
...@@ -873,7 +873,7 @@ sub GetFakeConfigure ...@@ -873,7 +873,7 @@ sub GetFakeConfigure
$cfg .= ' --without-zlib' unless ($self->{options}->{zlib}); $cfg .= ' --without-zlib' unless ($self->{options}->{zlib});
$cfg .= ' --with-extra-version' if ($self->{options}->{extraver}); $cfg .= ' --with-extra-version' if ($self->{options}->{extraver});
$cfg .= ' --with-openssl' if ($self->{options}->{openssl}); $cfg .= ' --with-openssl' if ($self->{options}->{openssl});
$cfg .= ' --with-ossp-uuid' if ($self->{options}->{uuid}); $cfg .= ' --with-uuid' if ($self->{options}->{uuid});
$cfg .= ' --with-libxml' if ($self->{options}->{xml}); $cfg .= ' --with-libxml' if ($self->{options}->{xml});
$cfg .= ' --with-libxslt' if ($self->{options}->{xslt}); $cfg .= ' --with-libxslt' if ($self->{options}->{xslt});
$cfg .= ' --with-gssapi' if ($self->{options}->{gss}); $cfg .= ' --with-gssapi' if ($self->{options}->{gss});
......
...@@ -18,10 +18,10 @@ our $config = { ...@@ -18,10 +18,10 @@ our $config = {
nls => undef, # --enable-nls=<path> nls => undef, # --enable-nls=<path>
tap_tests => undef, # --enable-tap-tests tap_tests => undef, # --enable-tap-tests
tcl => undef, # --with-tcl=<path> tcl => undef, # --with-tcl=<path>
perl => undef, # --with-perl perl => undef, # --with-perl=<path>
python => undef, # --with-python=<path> python => undef, # --with-python=<path>
openssl => undef, # --with-openssl=<path> openssl => undef, # --with-openssl=<path>
uuid => undef, # --with-ossp-uuid uuid => undef, # --with-uuid=<path>
xml => undef, # --with-libxml=<path> xml => undef, # --with-libxml=<path>
xslt => undef, # --with-libxslt=<path> xslt => undef, # --with-libxslt=<path>
iconv => undef, # (not in configure, path to iconv) iconv => undef, # (not in configure, path to iconv)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment