mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
vim: Upgrade 9.0.0021 -> 9.0.0063
Pulls in several CVE fixes. Added a patch to avoid timer_create cross compile issue (and submitted upstream). Also submit the race fix upstream. We disable timer_create in the native case since some systems have it and some don't so this makes us consistent. (From OE-Core rev: d0c1de084c7ce030d47a428e4bbfbc4ce2996057) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
51
meta/recipes-support/vim/files/crosscompile.patch
Normal file
51
meta/recipes-support/vim/files/crosscompile.patch
Normal file
@@ -0,0 +1,51 @@
|
||||
configure.ac: Fix create_timer solaris test for cross compiling
|
||||
|
||||
A runtime test was added for create_timer however this meant cross compiling
|
||||
would no longer work. Allow a cache value to be specified to allow cross
|
||||
compiling again.
|
||||
|
||||
Signed-off-by: Richard Purdie richard.purdie@linuxfoundation.org
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/vim/vim/pull/10777]
|
||||
|
||||
Index: git/src/configure.ac
|
||||
===================================================================
|
||||
--- git.orig/src/configure.ac
|
||||
+++ git/src/configure.ac
|
||||
@@ -3814,7 +3814,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
|
||||
dnl Check for timer_create. It probably requires the 'rt' library.
|
||||
dnl Run the program to find out if timer_create(CLOCK_MONOTONIC) actually
|
||||
dnl works, on Solaris timer_create() exists but fails at runtime.
|
||||
-AC_MSG_CHECKING([for timer_create])
|
||||
+AC_CACHE_CHECK([for timer_create], [vim_cv_timer_create],
|
||||
save_LIBS="$LIBS"
|
||||
LIBS="$LIBS -lrt"
|
||||
AC_RUN_IFELSE([AC_LANG_PROGRAM([
|
||||
@@ -3831,7 +3831,7 @@ static void set_flag(union sigval sv) {}
|
||||
if (timer_create(CLOCK_MONOTONIC, &action, &timer_id) < 0)
|
||||
exit(1); // cannot create a monotonic timer
|
||||
])],
|
||||
- AC_MSG_RESULT(yes; with -lrt); AC_DEFINE(HAVE_TIMER_CREATE),
|
||||
+ AC_MSG_NOTICE(timer_create with -lrt); vim_cv_timer_create=yes,
|
||||
LIBS="$save_LIBS"
|
||||
AC_RUN_IFELSE([AC_LANG_PROGRAM([
|
||||
#include<signal.h>
|
||||
@@ -3847,8 +3847,16 @@ static void set_flag(union sigval sv) {}
|
||||
if (timer_create(CLOCK_MONOTONIC, &action, &timer_id) < 0)
|
||||
exit(1); // cannot create a monotonic timer
|
||||
])],
|
||||
- AC_MSG_RESULT(yes); AC_DEFINE(HAVE_TIMER_CREATE),
|
||||
- AC_MSG_RESULT(no)))
|
||||
+ vim_cv_timer_create=yes,
|
||||
+ vim_cv_timer_create=no),
|
||||
+ AC_MSG_ERROR(cross-compiling: please set 'vim_cv_timer_create')
|
||||
+ )
|
||||
+)
|
||||
+
|
||||
+if test "x$vim_cv_timer_create" = "xyes" ; then
|
||||
+ AC_DEFINE(HAVE_TIMER_CREATE)
|
||||
+fi
|
||||
+
|
||||
|
||||
AC_CACHE_CHECK([whether stat() ignores a trailing slash], [vim_cv_stat_ignores_slash],
|
||||
[
|
||||
@@ -1,9 +1,13 @@
|
||||
The creation of the LINGUAS file is duplicated for each desktop file
|
||||
which can lead the commands to race against each other. Rework
|
||||
the makefile to avoid this as the expense of leaving the file on disk.
|
||||
po/Makefile: Avoid race over LINGUAS file
|
||||
|
||||
Upstream-Status: Pending
|
||||
RP 2021/2/15
|
||||
The creation of the LINGUAS file is duplicated for each desktop file
|
||||
which can lead the commands to race against each other. One target might
|
||||
remove it before another has been able to use it. Rework the makefile to
|
||||
avoid this as the expense of leaving the file on disk.
|
||||
|
||||
Signed-off-by: Richard Purdie richard.purdie@linuxfoundation.org
|
||||
|
||||
Upstream-Status: Submitted [https://github.com/vim/vim/pull/10776]
|
||||
|
||||
Index: git/src/po/Makefile
|
||||
===================================================================
|
||||
|
||||
@@ -19,10 +19,11 @@ SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \
|
||||
file://0001-src-Makefile-improve-reproducibility.patch \
|
||||
file://no-path-adjust.patch \
|
||||
file://racefix.patch \
|
||||
file://crosscompile.patch \
|
||||
"
|
||||
|
||||
PV .= ".0021"
|
||||
SRCREV = "5e59ea54c0c37c2f84770f068d95280069828774"
|
||||
PV .= ".0063"
|
||||
SRCREV = "d61efa50f8f5b9d9dcbc136705cc33874f0fdcb3"
|
||||
|
||||
# Remove when 8.3 is out
|
||||
UPSTREAM_VERSION_UNKNOWN = "1"
|
||||
@@ -95,6 +96,10 @@ EXTRA_OECONF = " \
|
||||
STRIP=/bin/true \
|
||||
"
|
||||
|
||||
# Some host distros don't have it, disable consistently
|
||||
EXTRA_OECONF:append:class-native = " vim_cv_timer_create=no"
|
||||
EXTRA_OECONF:append:class-target = " vim_cv_timer_create=yes"
|
||||
|
||||
do_install() {
|
||||
autotools_do_install
|
||||
|
||||
|
||||
Reference in New Issue
Block a user