diff options
author | Nathan Bossart | 2023-08-23 02:16:12 +0000 |
---|---|---|
committer | Nathan Bossart | 2023-08-23 02:16:12 +0000 |
commit | f4b54e1ed9853ab9aff524494866823f951b1e7f (patch) | |
tree | d828a0aceba5a1e74372170b58c97bae56eeefa3 /src/tools/msvc/Install.pm | |
parent | 711479115836b2180f50c00bbf0773220848a7f5 (diff) |
Introduce macros for protocol characters.
This commit introduces descriptively-named macros for the
identifiers used in wire protocol messages. These new macros are
placed in a new header file so that they can be easily used by
third-party code.
Author: Dave Cramer
Reviewed-by: Alvaro Herrera, Tatsuo Ishii, Peter Smith, Robert Haas, Tom Lane, Peter Eisentraut, Michael Paquier
Discussion: https://postgr.es/m/CADK3HHKbBmK-PKf1bPNFoMC%2BoBt%2BpD9PH8h5nvmBQskEHm-Ehw%40mail.gmail.com
Diffstat (limited to 'src/tools/msvc/Install.pm')
-rw-r--r-- | src/tools/msvc/Install.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/msvc/Install.pm b/src/tools/msvc/Install.pm index 05548d7c0aa..b6dd2c3bbac 100644 --- a/src/tools/msvc/Install.pm +++ b/src/tools/msvc/Install.pm @@ -614,6 +614,8 @@ sub CopyIncludeFiles 'src/include/', 'c.h', 'port.h', 'postgres_fe.h'); lcopy('src/include/libpq/pqcomm.h', $target . '/include/internal/libpq/') || croak 'Could not copy pqcomm.h'; + lcopy('src/include/libpq/protocol.h', $target . '/include/internal/libpq/') + || croak 'Could not copy protocol.h'; CopyFiles( 'Server headers', |