]> Savannah Git Hosting - gnulib.git/commitdiff
csharpexec-script, csharpcomp-script: Prepare support for dotnet.
authorBruno Haible <bruno@clisp.org>
Wed, 9 Oct 2024 01:11:32 +0000 (03:11 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 16 Oct 2024 12:05:32 +0000 (14:05 +0200)
* m4/csharp.m4 (gt_CSHARP_CHOICE): Recognize 'dotnet' as value of
--enable-csharp.

ChangeLog
m4/csharp.m4

index 669c70c31d2d3ea8e16a54ee47af6913d66e0343..b1c83c199e4be1ff350c241433e6dbac5d7d4cc4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-10-08  Bruno Haible  <bruno@clisp.org>
+
+       csharpexec-script, csharpcomp-script: Prepare support for dotnet.
+       * m4/csharp.m4 (gt_CSHARP_CHOICE): Recognize 'dotnet' as value of
+       --enable-csharp.
+
 2024-10-08  Bruno Haible  <bruno@clisp.org>
 
        csharpcomp: Behave like csharpcomp-script.
index f92f1c7453b93b90599f54d9bf733f07fe8fb9ab..4dcf122d4e93cb8cdf267f18482a771e06dfb9e7 100644 (file)
@@ -1,16 +1,20 @@
-# csharp.m4 serial 4
+# csharp.m4 serial 5
 dnl Copyright (C) 2004-2005, 2009-2024 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.
 
 # Sets CSHARP_CHOICE to the preferred C# implementation:
-# 'mono' or 'any' or 'no'.
+# 'mono' or 'dotnet' or 'any' or 'no'.
+# Here
+#   - 'mono' means <https://en.wikipedia.org/wiki/Mono_(software)>.
+#   - 'dotnet' means the (newer) .NET <https://en.wikipedia.org/wiki/.NET>,
+#     *not* the .NET framework <https://en.wikipedia.org/wiki/.NET_Framework>.
 AC_DEFUN([gt_CSHARP_CHOICE],
 [
   AC_MSG_CHECKING([for preferred C[#] implementation])
   AC_ARG_ENABLE([csharp],
-    [  --enable-csharp[[=IMPL]]  choose preferred C[#] implementation (mono)],
+    [  --enable-csharp[[=IMPL]]  choose preferred C[#] implementation (mono, dotnet)],
     [CSHARP_CHOICE="$enableval"],
     CSHARP_CHOICE=any)
   AC_SUBST([CSHARP_CHOICE])
@@ -20,5 +24,9 @@ AC_DEFUN([gt_CSHARP_CHOICE],
       AC_DEFINE([CSHARP_CHOICE_MONO], [1],
         [Define if mono is the preferred C# implementation.])
       ;;
+    dotnet)
+      AC_DEFINE([CSHARP_CHOICE_DOTNET], [1],
+        [Define if dotnet is the preferred C# implementation.])
+      ;;
   esac
 ])