From de1386406f5130876be25d9fbee685fb9f0b3020 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 23 Sep 2024 13:45:02 -0700 Subject: mtd-utils: also check for static libuuid PKG_CHECK_MODULES confusingly does not check to see if a static version of the library is available. Actually with older glibc, it might fail as lpthread needs to be passed to linker flags (Libs.private in pc files) which can only be obtained if --static is passed to pkg-config. Signed-off-by: Rosen Penev Signed-off-by: David Oberhollenzer --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index cf3a959..6222356 100644 --- a/configure.ac +++ b/configure.ac @@ -145,7 +145,8 @@ AS_IF([test "x$with_zlib" != "xno"], [ ], []) if test "x$need_uuid" = "xyes"; then - PKG_CHECK_MODULES(UUID, [uuid], [], [uuid_missing="yes"]) + PKG_CHECK_MODULES(UUID, [uuid], [], + [PKG_CHECK_MODULES_STATIC(UUID, [uuid], [], [uuid_missing="yes"])]) fi if test "x$need_clock_gettime" = "xyes"; then -- cgit v1.2.3