From ddda54a17b81654d53c321d9c259efd03c145c69 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Wed, 30 Aug 2023 15:18:22 +0200 Subject: [PATCH 1/1] Recognize the *-*-windows* config triplets introduced on 2023-06-26. * configure.ac: Treat windows* as equivalent to mingw*. --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 16240af..f72af40 100644 --- a/configure.ac +++ b/configure.ac @@ -51,12 +51,12 @@ CL_CANONICAL_HOST CL_CANONICAL_HOST_CPU dnl DEFS __${host_cpu}__ case $host_os in - *mingw*) - AC_DISABLE_SHARED dnl Shared libraries are not supported on some platforms [yet] + mingw* | windows*) + AC_DISABLE_SHARED ;; - *) - AC_ENABLE_SHARED + *) + AC_ENABLE_SHARED ;; esac LT_INIT -- 2.45.2