From: Bruno Haible Date: Wed, 30 Aug 2023 13:18:22 +0000 (+0200) Subject: Recognize the *-*-windows* config triplets introduced on 2023-06-26. X-Git-Tag: cln_1-3-7~1 X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=commitdiff_plain;h=ddda54a17b81654d53c321d9c259efd03c145c69;hp=c061316aeebe28770b318c489e779a2d215264c0;p=cln.git Recognize the *-*-windows* config triplets introduced on 2023-06-26. * configure.ac: Treat windows* as equivalent to mingw*. --- 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