summaryrefslogtreecommitdiff
path: root/dev-db/sqlite/files/sqlite-3.49.1-jimsh.patch
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2025-09-05 12:20:33 +0200
committerJakov Smolić <jsmolic@gentoo.org>2025-09-05 12:20:33 +0200
commite6a78f4d5d7353f10addd21dbb15b14516d28b88 (patch)
tree2d355cc97a9a96acad81246036488a8784cb42fa /dev-db/sqlite/files/sqlite-3.49.1-jimsh.patch
parentb84ebc44875c02084bdbecc0e3fb45545f650389 (diff)
downloadgentoo-e6a78f4d5d7353f10addd21dbb15b14516d28b88.tar.gz
gentoo-e6a78f4d5d7353f10addd21dbb15b14516d28b88.tar.bz2
gentoo-e6a78f4d5d7353f10addd21dbb15b14516d28b88.zip
dev-db/sqlite: drop 3.46.1, 3.49.1, 3.49.2
Bug: https://bugs.gentoo.org/955819 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-db/sqlite/files/sqlite-3.49.1-jimsh.patch')
-rw-r--r--dev-db/sqlite/files/sqlite-3.49.1-jimsh.patch61
1 files changed, 0 insertions, 61 deletions
diff --git a/dev-db/sqlite/files/sqlite-3.49.1-jimsh.patch b/dev-db/sqlite/files/sqlite-3.49.1-jimsh.patch
deleted file mode 100644
index 8f7f082a6d88..000000000000
--- a/dev-db/sqlite/files/sqlite-3.49.1-jimsh.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-# https://bugs.gentoo.org/949981
-# https://www2.sqlite.org/src/info/ffd05de8a3b7cab1
-From 09591b78ae28c6bb385ae96fef44edfb52454830 Mon Sep 17 00:00:00 2001
-From: stephan <stephan@noemail.net>
-Date: Mon, 24 Feb 2025 04:47:34 +0000
-Subject: [PATCH] Update jimsh0.c from upstream autosetup to address
- [https://github.com/msteveb/autosetup/issues/75|autosetup ticket #75],
- triggered by this build in the Gentoo project.
-
-FossilOrigin-Name: ffd05de8a3b7cab1b8e91b99da74b43ec5a7b91c78dcfd7cf338b66126e30a56
----
- autosetup/jimsh0.c | 20 ++++++++------------
- manifest | 12 ++++++------
- manifest.uuid | 2 +-
- 3 files changed, 15 insertions(+), 19 deletions(-)
-
-diff --git a/autosetup/jimsh0.c b/autosetup/jimsh0.c
-index 0526b9a446..1a6453d0c8 100644
---- a/autosetup/jimsh0.c
-+++ b/autosetup/jimsh0.c
-@@ -1252,6 +1252,14 @@ int Jim_OpenForRead(const char *filename);
-
- #endif
-
-+# ifndef MAXPATHLEN
-+# ifdef PATH_MAX
-+# define MAXPATHLEN PATH_MAX
-+# else
-+# define MAXPATHLEN JIM_PATH_LEN
-+# endif
-+# endif
-+
-
- int Jim_FileStoreStatData(Jim_Interp *interp, Jim_Obj *varName, const jim_stat_t *sb);
-
-@@ -2088,10 +2096,6 @@ enum wbuftype {
- #define UNIX_SOCKETS 0
- #endif
-
--#ifndef MAXPATHLEN
--#define MAXPATHLEN JIM_PATH_LEN
--#endif
--
-
-
-
-@@ -4173,14 +4177,6 @@ int Jim_regexpInit(Jim_Interp *interp)
- #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
- #endif
-
--# ifndef MAXPATHLEN
--# ifdef PATH_MAX
--# define MAXPATHLEN PATH_MAX
--# else
--# define MAXPATHLEN JIM_PATH_LEN
--# endif
--# endif
--
- #if defined(__MINGW32__) || defined(__MSYS__) || defined(_MSC_VER)
- #define ISWINDOWS 1
-