patch 9.0.1900: Configure script uses non-portable == comparison

Commit: 
https://github.com/vim/vim/commit/e7d79eb98a30c529cf53fb4852a71b9fd1336c41
Author: Yee Cheng Chin <[email protected]>
Date:   Sat Sep 16 13:38:26 2023 +0200

    patch 9.0.1900: Configure script uses non-portable == comparison
    
    Problem:  Configure script uses non-portable == comparison
    Solution: Use the standard and portable "=" instead
    
    closes: #13095
    closes: #13099
    
    Signed-off-by: Christian Brabandt <[email protected]>
    Co-authored-by: Yee Cheng Chin <[email protected]>

diff --git a/src/auto/configure b/src/auto/configure
index 8e665eb50..34e9f449a 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -7045,7 +7045,7 @@ else $as_nop
          "major_minor='${vi_cv_var_python3_stable_abi}'.split('.'); 
print('0x{0:X}'.format( (int(major_minor.__getitem__(0))<<24) + 
(int(major_minor.__getitem__(1))<<16) ))"`
 fi
 
-        if test "X$vi_cv_var_python3_stable_abi_hex" == "X"; then
+        if test "X$vi_cv_var_python3_stable_abi_hex" = "X"; then
           as_fn_error $? "can't parse Python 3 stable ABI version. It should 
be \"<major>.<minor>\"" "$LINENO" 5
         fi
       fi
diff --git a/src/configure.ac b/src/configure.ac
index 1a4dd5c50..bfdcfea4d 100644
--- a/src/configure.ac
+++ b/src/configure.ac
@@ -1511,7 +1511,7 @@ if test "$enable_python3interp" = "yes" -o 
"$enable_python3interp" = "dynamic";
          vi_cv_var_python3_stable_abi_hex=`
          ${vi_cv_path_python3} -c \
          "major_minor='${vi_cv_var_python3_stable_abi}'.split('.'); 
print('0x{0:X}'.format( (int(major_minor.__getitem__(0))<<24) + 
(int(major_minor.__getitem__(1))<<16) ))"` ])
-        if test "X$vi_cv_var_python3_stable_abi_hex" == "X"; then
+        if test "X$vi_cv_var_python3_stable_abi_hex" = "X"; then
           AC_MSG_ERROR([can't parse Python 3 stable ABI version. It should be 
"<major>.<minor>"])
         fi
       fi
diff --git a/src/version.c b/src/version.c
index 4576d5a4c..edfd63539 100644
--- a/src/version.c
+++ b/src/version.c
@@ -699,6 +699,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1900,
 /**/
     1899,
 /**/

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/E1qhTjY-00Etn1-Ez%40256bit.org.

Raspunde prin e-mail lui