0001-pkg-config-Requires.private-entries-should-be-comma-.patch
text/plain
Filename: 0001-pkg-config-Requires.private-entries-should-be-comma-.patch
Type: text/plain
Part: 0
Patch
Format: format-patch
Series: patch 0001
Subject: pkg-config Requires.private entries should be comma-separated
| File | + | − |
|---|---|---|
| src/interfaces/ecpg/compatlib/Makefile | 1 | 1 |
| src/interfaces/ecpg/ecpglib/Makefile | 1 | 1 |
| src/interfaces/libpq/Makefile | 1 | 1 |
From 5501fd952566654e49bcf5b8b4d5dc6c1026a90b Mon Sep 17 00:00:00 2001 From: Peter Eisentraut <peter@eisentraut.org> Date: Wed, 15 Mar 2023 08:42:27 +0100 Subject: [PATCH] pkg-config Requires.private entries should be comma-separated --- src/interfaces/ecpg/compatlib/Makefile | 2 +- src/interfaces/ecpg/ecpglib/Makefile | 2 +- src/interfaces/libpq/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile index da470e5418..b9483fba08 100644 --- a/src/interfaces/ecpg/compatlib/Makefile +++ b/src/interfaces/ecpg/compatlib/Makefile @@ -32,7 +32,7 @@ OBJS = \ $(WIN32RES) \ informix.o -PKG_CONFIG_REQUIRES_PRIVATE = libecpg libpgtypes +PKG_CONFIG_REQUIRES_PRIVATE = libecpg, libpgtypes all: all-lib diff --git a/src/interfaces/ecpg/ecpglib/Makefile b/src/interfaces/ecpg/ecpglib/Makefile index 6fadebf53d..652e023405 100644 --- a/src/interfaces/ecpg/ecpglib/Makefile +++ b/src/interfaces/ecpg/ecpglib/Makefile @@ -41,7 +41,7 @@ SHLIB_PREREQS = submake-libpq submake-pgtypeslib SHLIB_EXPORTS = exports.txt -PKG_CONFIG_REQUIRES_PRIVATE = libpq libpgtypes +PKG_CONFIG_REQUIRES_PRIVATE = libpq, libpgtypes all: all-lib diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index c18e914228..0919d8f32f 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -96,7 +96,7 @@ SHLIB_PREREQS = submake-libpgport SHLIB_EXPORTS = exports.txt ifeq ($(with_ssl),openssl) -PKG_CONFIG_REQUIRES_PRIVATE = libssl libcrypto +PKG_CONFIG_REQUIRES_PRIVATE = libssl, libcrypto endif all: all-lib libpq-refs-stamp -- 2.39.2