From: Christopher Ng Date: Fri, 3 Feb 2023 12:16:06 +0000 (+0000) Subject: Fix building on MSYS2 X-Git-Tag: v0.14.0~10 X-Git-Url: https://git.lttng.org/?p=urcu.git;a=commitdiff_plain;h=5159c1cfe462deaeae7f2f2915a263f47cdd343c 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 --- 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"] )