mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
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
This commit is contained in:
@ -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 = {
|
|||||||
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)
|
||||||
|
Reference in New Issue
Block a user