diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-02-21 09:55:55 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-02-21 09:55:55 +0900 |
commit | bf4ed12b58205d8527053d53c8f473074e191b8d (patch) | |
tree | e1e67709ec86f7e6c5431a6443ae4632ed6a3dbc | |
parent | fbabdf8f9a55894f7cd8f0fa86c9a4ef55576296 (diff) |
doc: Mention environment variable ZSTD in the TAP tests for MSVC
6c417bb has added the build infrastructure to support ZSTD, but forgot
to update this section of the docs to mention the variable ZSTD, as per
the change done in vcregress.pl.
While on it, reword this section of the docs to describe what happens in
the default case, as per a suggestion from Robert Haas.
Discussion: https://postgr.es/m/YhCL0fKnDv/Zvtuo@paquier.xyz
-rw-r--r-- | doc/src/sgml/install-windows.sgml | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/doc/src/sgml/install-windows.sgml b/doc/src/sgml/install-windows.sgml index 98fa6962f68..43d05bde4ec 100644 --- a/doc/src/sgml/install-windows.sgml +++ b/doc/src/sgml/install-windows.sgml @@ -534,9 +534,9 @@ $ENV{PROVE_TESTS}='t/020*.pl t/010*.pl' <varlistentry> <term><varname>GZIP_PROGRAM</varname></term> <listitem><para> - Path to a <application>gzip</application> command. The default is - <literal>gzip</literal>, that would be the command found in - <varname>PATH</varname>. + Path to a <application>gzip</application> command. The default is + <literal>gzip</literal>, which will search for a command by that + name in the configured <envar>PATH</envar>. </para></listitem> </varlistentry> @@ -544,8 +544,8 @@ $ENV{PROVE_TESTS}='t/020*.pl t/010*.pl' <term><varname>LZ4</varname></term> <listitem><para> Path to a <application>lz4</application> command. The default is - <literal>lz4</literal>, that would be the command found in - <varname>PATH</varname>. + <literal>lz4</literal>, which will search for a command by that + name in the configured <envar>PATH</envar>. </para></listitem> </varlistentry> @@ -553,8 +553,17 @@ $ENV{PROVE_TESTS}='t/020*.pl t/010*.pl' <term><varname>TAR</varname></term> <listitem><para> Path to a <application>tar</application> command. The default is - <literal>tar</literal>, that would be the command found in - <varname>PATH</varname>. + <literal>tar</literal>, which will search for a command by that + name in the configured <envar>PATH</envar>. + </para></listitem> + </varlistentry> + + <varlistentry> + <term><varname>ZSTD</varname></term> + <listitem><para> + Path to a <application>zstd</application> command. The default is + <literal>zstd</literal>, which will search for a command by that + name in the configured <envar>PATH</envar>. </para></listitem> </varlistentry> </variablelist> |