commit 122516721b4d10c792416fdebd5649f9a4c7bcbc
Author: Jean-Marc Lasgouttes <[email protected]>
Date:   Thu Oct 16 13:28:56 2025 +0200

    autoconf: catch RC in version name as signaling a prerelease
    
    The version names keep evolving. Now prereleases are detected
    when any of the following appear in the LyX version: pre, alpha, beta,
    rc and RC.
---
 config/lyxinclude.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config/lyxinclude.m4 b/config/lyxinclude.m4
index 3a662a10b7..d729620ec1 100644
--- a/config/lyxinclude.m4
+++ b/config/lyxinclude.m4
@@ -6,7 +6,7 @@ dnl         Allan Rae ([email protected])
 dnl Compute the default build type from AC_PACKAGE_VERSION at autoconf time.
 m4_define([LYX_BUILD_TYPE], [m4_bmatch(AC_PACKAGE_VERSION,
     [dev], [development],
-    [pre\|alpha\|beta\|rc], [prerelease],
+    [pre\|alpha\|beta\|rc\|RC], [prerelease],
     [release])])
 
 
-- 
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to