-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove maketools and fix frontend tools tde data usage (#362)
This commit: 1. Removes autoconf builds for pg_tde so it can be together built with Postgres (now, used would have to go to contrib/pg_tde and build it explicitly after building Postgres) with make. There are still left pg_tde builds in CI tests since this PR depends on percona/postgres#20. So those leftover will be removed after merging PG PR 2. Adds necessary changes regarding new code (like kmip) so frontend tools (pg_waldump et al) can be compiled with pg_tde 2. Get rid of realpath as it has issues with optimised builds For: PG-1003, PG-1005
- Loading branch information
Showing
28 changed files
with
59 additions
and
8,917 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
TDE_OBJS = \ | ||
src/access/pg_tde_tdemap.o \ | ||
src/access/pg_tde_xlog_encrypt.o \ | ||
src/catalog/tde_global_space.o \ | ||
src/catalog/tde_keyring.o \ | ||
src/catalog/tde_keyring_parse_opts.o \ | ||
src/catalog/tde_principal_key.o \ | ||
src/common/pg_tde_utils.o \ | ||
src/encryption/enc_aes.o \ | ||
src/encryption/enc_tde.o \ | ||
src/keyring/keyring_api.o \ | ||
src/keyring/keyring_curl.o \ | ||
src/keyring/keyring_file.o \ | ||
src/keyring/keyring_vault.o \ | ||
src/keyring/keyring_kmip.o \ | ||
src/keyring/keyring_kmip_ereport.o \ | ||
src/libkmip/libkmip/src/kmip.o \ | ||
src/libkmip/libkmip/src/kmip_bio.o \ | ||
src/libkmip/libkmip/src/kmip_locate.o \ | ||
src/libkmip/libkmip/src/kmip_memset.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.