diff mbox series

[1/2] package/postgresql: add configure and includedir-server output to pg_config

Message ID 20201005101951.3112095-2-fido_max@inbox.ru
State Accepted
Headers show
Series package/timescaledb: new package | expand

Commit Message

Maxim Kochetkov Oct. 5, 2020, 10:19 a.m. UTC
Some external packages call pg_config to determine the installed PostgreSQL
version. Add this output to Buildroots own pg_config, so these packages
correctly compile.

Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
---
 package/postgresql/pg_config     | 8 +++++++-
 package/postgresql/postgresql.mk | 1 +
 2 files changed, 8 insertions(+), 1 deletion(-)

Comments

Thomas Petazzoni Oct. 8, 2020, 9:20 p.m. UTC | #1
On Mon,  5 Oct 2020 13:19:50 +0300
Maxim Kochetkov <fido_max@inbox.ru> wrote:

> Some external packages call pg_config to determine the installed PostgreSQL
> version. Add this output to Buildroots own pg_config, so these packages
> correctly compile.
> 
> Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>
> ---
>  package/postgresql/pg_config     | 8 +++++++-
>  package/postgresql/postgresql.mk | 1 +
>  2 files changed, 8 insertions(+), 1 deletion(-)

Applied to master, thanks.

Thomas
Peter Korsgaard Oct. 11, 2020, 3:54 p.m. UTC | #2
>>>>> "Maxim" == Maxim Kochetkov <fido_max@inbox.ru> writes:

 > Some external packages call pg_config to determine the installed PostgreSQL
 > version. Add this output to Buildroots own pg_config, so these packages
 > correctly compile.

 > Signed-off-by: Maxim Kochetkov <fido_max@inbox.ru>

Committed to 2020.02.x, 2020.05.x and 2020.08.x, thanks.
diff mbox series

Patch

diff --git a/package/postgresql/pg_config b/package/postgresql/pg_config
index 642252f27f..59a9e6cfad 100644
--- a/package/postgresql/pg_config
+++ b/package/postgresql/pg_config
@@ -11,12 +11,18 @@  case "$1" in
   --includedir)
 	echo "$prefix/include"
 	;;
+  --includedir-server)
+	echo "$prefix/include/postgresql/server"
+	;;
   --libdir)
 	echo "$prefix/lib"
 	;;
   --version)
 	echo "PostgreSQL @POSTGRESQL_VERSION@"
 	;;
+  --configure)
+	echo "@POSTGRESQL_CONF_OPTIONS@"
+	;;
   *)
-	echo "Usage: $0 {--includedir|--libdir|--version}"
+	echo "Usage: $0 {--includedir|--includedir-server|--libdir|--version|--configure}"
 esac
diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index 18c7b2ade4..3630b5a385 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -115,6 +115,7 @@  POSTGRESQL_POST_INSTALL_TARGET_HOOKS += POSTGRESQL_INSTALL_TARGET_FIXUP
 define POSTGRESQL_INSTALL_CUSTOM_PG_CONFIG
 	$(INSTALL) -m 0755 -D package/postgresql/pg_config \
 		$(STAGING_DIR)/usr/bin/pg_config
+	$(SED) "s|@POSTGRESQL_CONF_OPTIONS@|$(POSTGRESQL_CONF_OPTS)|g" $(STAGING_DIR)/usr/bin/pg_config
 	$(SED) "s|@POSTGRESQL_VERSION@|$(POSTGRESQL_VERSION)|g" $(STAGING_DIR)/usr/bin/pg_config
 endef