We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd81f41 commit 2be6ba0Copy full SHA for 2be6ba0
configure.ac
@@ -32,14 +32,19 @@ AM_INIT_AUTOMAKE([1.11.2 foreign subdir-objects])
32
# Make the compilation flags quiet unless V=1 is used.
33
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
34
35
-PKG_PROG_PKG_CONFIG
36
-
37
AC_PROG_CC
38
AM_PROG_AS
39
AM_PROG_AR
40
+# Clear some cache variables as a workaround for a bug that appears due to a bad
+# interaction between AM_PROG_AR and LT_INIT when combining MSVC's archiver lib.exe.
41
+# https://debbugs.gnu.org/cgi/bugreport.cgi?bug=54421
42
+AS_UNSET(ac_cv_prog_AR)
43
+AS_UNSET(ac_cv_prog_ac_ct_AR)
44
LT_INIT([win32-dll])
45
46
+PKG_PROG_PKG_CONFIG
47
+
48
build_windows=no
49
50
case $host_os in
0 commit comments