diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-03-10 20:08:10 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-03-10 20:08:10 +0900 |
commit | 6ad5793a491a2e70e5610988a13f31f43c8946ad (patch) | |
tree | d76fdfe2dca2f39fcc0c81ffedc53de1a30e86cb | |
parent | 012ee842590d7bb56f250c15e00a8611ba0ae1da (diff) | |
download | postgresql-6ad5793a491a2e70e5610988a13f31f43c8946ad.tar.gz postgresql-6ad5793a491a2e70e5610988a13f31f43c8946ad.zip |
Include headers of archive/ in installation
These new headers have been recently added in 35739b8, but they were not
installed. Sravan has provided the patch for configure/make, while I
have fixed the meson part.
Author: Sravan Kumar, Michael Paquier
Discussion: https://postgr.es/m/CA+=NbjguiQy-MbVqfQ-jQ=2Fcmx3Zs36OkKb-vjt28jMTG0OOg@mail.gmail.com
-rw-r--r-- | src/include/Makefile | 2 | ||||
-rw-r--r-- | src/include/meson.build | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/include/Makefile b/src/include/Makefile index 7472cd5e015..56576dcf5c9 100644 --- a/src/include/Makefile +++ b/src/include/Makefile @@ -17,7 +17,7 @@ all: pg_config.h pg_config_ext.h pg_config_os.h # Subdirectories containing installable headers -SUBDIRS = access bootstrap catalog commands common datatype \ +SUBDIRS = access archive bootstrap catalog commands common datatype \ executor fe_utils foreign jit \ lib libpq mb nodes optimizer parser partitioning postmaster \ regex replication rewrite \ diff --git a/src/include/meson.build b/src/include/meson.build index 51ad06cecb7..33c0a5562c6 100644 --- a/src/include/meson.build +++ b/src/include/meson.build @@ -129,6 +129,7 @@ subdir('utils') header_subdirs = [ 'access', + 'archive', 'catalog', 'bootstrap', 'commands', |