From 6c8a073e7ea87e5ac074320351ced2b39d85c2c0 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Fri, 24 Feb 2023 10:08:31 +0100 Subject: [PATCH] Add flags to find libssl includes to two modules needing them --- modules/gpgsqlbackend/Makefile.am | 3 ++- modules/remotebackend/Makefile.am | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/gpgsqlbackend/Makefile.am b/modules/gpgsqlbackend/Makefile.am index 04f9172996..b9663a530a 100644 --- a/modules/gpgsqlbackend/Makefile.am +++ b/modules/gpgsqlbackend/Makefile.am @@ -1,4 +1,5 @@ -AM_CPPFLAGS += $(PGSQL_CFLAGS) +AM_CPPFLAGS += $(PGSQL_CFLAGS) \ + $(LIBCRYPTO_INCLUDES) pkglib_LTLIBRARIES = libgpgsqlbackend.la EXTRA_DIST = \ diff --git a/modules/remotebackend/Makefile.am b/modules/remotebackend/Makefile.am index 718913dee4..38f531f2c3 100644 --- a/modules/remotebackend/Makefile.am +++ b/modules/remotebackend/Makefile.am @@ -2,6 +2,7 @@ AM_CPPFLAGS += \ -I$(top_srcdir)/ext/json11 \ $(YAHTTP_CFLAGS) \ $(LIBCRYPTO_CFLAGS) \ + $(LIBCRYPTO_INCLUDES) \ $(LIBZMQ_CFLAGS) if LUA -- 2.47.2