diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-01-30 20:10:01 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-02-01 02:13:10 +0100 |
commit | 8218305dc9dc0468081f5e0a503ed890a301c8ab (patch) | |
tree | 9318892d6ac274756add0c38edcfd1b11a611a0c /app-editors/vim-core | |
parent | dev-cpp/muParser: remove unused patch(es) (diff) | |
download | gentoo-8218305dc9dc0468081f5e0a503ed890a301c8ab.tar.gz gentoo-8218305dc9dc0468081f5e0a503ed890a301c8ab.tar.bz2 gentoo-8218305dc9dc0468081f5e0a503ed890a301c8ab.zip |
app-editors/vim-core: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/29345
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-editors/vim-core')
-rw-r--r-- | app-editors/vim-core/files/vim-9.0-fix-create-timer-for-cros-compiling.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/app-editors/vim-core/files/vim-9.0-fix-create-timer-for-cros-compiling.patch b/app-editors/vim-core/files/vim-9.0-fix-create-timer-for-cros-compiling.patch deleted file mode 100644 index 5247a80754cc..000000000000 --- a/app-editors/vim-core/files/vim-9.0-fix-create-timer-for-cros-compiling.patch +++ /dev/null @@ -1,28 +0,0 @@ -From bba26c9ed9d4ddc82afd0343f145dc9e14b91498 Mon Sep 17 00:00:00 2001 -From: Varsha Teratipally <teratipally@google.com> -Date: Tue, 2 Aug 2022 22:18:29 +0000 -Subject: [PATCH] Configure check for timer_create may give wrong error. -Give a warning instead of an error - -Partial solution from github.com/vim/vim/commit/5f6cae8b8a49c435556e32f84d067cd0b4d28e4c - ---- - src/configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/configure.ac b/src/configure.ac -index e8522ec05..41f41dee3 100644 ---- a/src/configure.ac -+++ b/src/configure.ac -@@ -3850,7 +3850,7 @@ static void set_flag(union sigval sv) {} - ])], - vim_cv_timer_create=yes, - vim_cv_timer_create=no), -- AC_MSG_ERROR(cross-compiling: please set 'vim_cv_timer_create') -+ AC_MSG_WARN(cross-compiling: please set 'vim_cv_timer_create') - )] - ) - --- - - |