From 868434584c82251120fbf3fb908dd6c6bef4825b Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 1 Apr 2023 23:29:13 -0700 Subject: [PATCH] configure.ac: explicitly call PKG_PROG_PKG_CONFIG Without this, pkg-config only worked if the first PKG_CHECK_MODULES that appears *in the file* was executed, i.e. only if WITH_NTFS_3G=yes. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 3d26cb06..f77b3e7a 100644 --- a/configure.ac +++ b/configure.ac @@ -10,6 +10,7 @@ AM_SILENT_RULES([yes]) AC_C_BIGENDIAN m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_INIT +PKG_PROG_PKG_CONFIG AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile] [doc/Doxyfile] [wimlib.pc]) -- 2.46.1