From a83f3d327aefe8d628230f326621b014d82f55b4 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Wed, 13 Apr 2022 09:48:44 +0530 Subject: autotools: Fix static linking when openssl is enabled in windows This adds Requires.private field in pkgconfig file. Using that field, pkgconfig pulls all the private cflags or libs while static linking. OpenSSL static libraries require some windows system libraies. Otherwise static liking fails with libarchive. --- build/pkgconfig/libarchive.pc.in | 1 + 1 file changed, 1 insertion(+) (limited to 'build') diff --git a/build/pkgconfig/libarchive.pc.in b/build/pkgconfig/libarchive.pc.in index 4b631e63..1f51e77f 100644 --- a/build/pkgconfig/libarchive.pc.in +++ b/build/pkgconfig/libarchive.pc.in @@ -10,3 +10,4 @@ Cflags: -I${includedir} Cflags.private: -DLIBARCHIVE_STATIC Libs: -L${libdir} -larchive Libs.private: @LIBS@ +Requires.private: @LIBSREQUIRED@ -- cgit v1.2.1