From 5159c1cfe462deaeae7f2f2915a263f47cdd343c Mon Sep 17 00:00:00 2001 From: Christopher Ng Date: Fri, 3 Feb 2023 12:16:06 +0000 Subject: [PATCH] Fix building on MSYS2 Update cygwin libtool config in `configure.ac` to match MSYS2 build environments as well. MSYS2 is also a Windows build environment that produces DLLs. Signed-off-by: Christopher Ng Signed-off-by: Mathieu Desnoyers Change-Id: I48ca648123fd40b8003c72c0447c70a8b4bde6d6 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f074735..c4b2b6e 100644 --- a/configure.ac +++ b/configure.ac @@ -51,7 +51,7 @@ AM_SILENT_RULES([yes]) ## ## AS_CASE([$host], - [*-cygwin*], [LT_NO_UNDEFINED="-no-undefined"] + [*-cygwin* | *-msys*], [LT_NO_UNDEFINED="-no-undefined"] ) -- 2.34.1