]> www.ginac.de Git - cln.git/commitdiff
Recognize the *-*-windows* config triplets introduced on 2023-06-26.
authorBruno Haible <bruno@clisp.org>
Wed, 30 Aug 2023 13:18:22 +0000 (15:18 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 30 Aug 2023 13:18:22 +0000 (15:18 +0200)
* configure.ac: Treat windows* as equivalent to mingw*.

configure.ac

index 16240af4e2caf7ec18318e0742443d766ed71771..f72af40e8fcb9707a47a1f8e0097b1e84dc353d0 100644 (file)
@@ -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