diff options
author | Robert Haas | 2022-02-18 18:40:31 +0000 |
---|---|---|
committer | Robert Haas | 2022-02-18 18:40:31 +0000 |
commit | 6c417bbcc8ff98875234ca269979fc7defde58e5 (patch) | |
tree | c90ee35e9aa3efab4c0f08031aed9a96e9d08ac2 /src/include | |
parent | 2e372869aa38a9d6e4552c192da4454b17e01e38 (diff) |
Add support for building with ZSTD.
This commit doesn't actually add anything that uses ZSTD; that will be
done separately. It just puts the basic infrastructure into place.
Jeevan Ladhe, Robert Haas, and Michael Paquier. Reviewed by Justin
Pryzby and Andres Freund.
Discussion: http://postgr.es/m/CA+TgmoatQKGd+8SjcV+bzvw4XaoEwminHjU83yG12+NXtQzTTQ@mail.gmail.com
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/pg_config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 12aac8616e2..635fbb2181c 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -352,6 +352,9 @@ /* Define to 1 if you have the `z' library (-lz). */ #undef HAVE_LIBZ +/* Define to 1 if you have the `zstd' library (-lzstd). */ +#undef HAVE_LIBZSTD + /* Define to 1 if you have the `link' function. */ #undef HAVE_LINK @@ -952,6 +955,9 @@ /* Define to select Win32-style shared memory. */ #undef USE_WIN32_SHARED_MEMORY +/* Define to 1 to build with ZSTD support. (--with-zstd) */ +#undef USE_ZSTD + /* Define to 1 if `wcstombs_l' requires <xlocale.h>. */ #undef WCSTOMBS_L_IN_XLOCALE |