From 6ad5793a491a2e70e5610988a13f31f43c8946ad Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Fri, 10 Mar 2023 20:08:10 +0900 Subject: [PATCH] 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 --- src/include/Makefile | 2 +- src/include/meson.build | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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', -- 2.30.2