summaryrefslogtreecommitdiff
path: root/databases/mariadb101-server/files/patch-MDEV-15961
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-07-01 11:02:49 +0000
committerRene Ladan <rene@FreeBSD.org>2020-07-01 11:02:49 +0000
commit9233e8cca587c82fda3ea05cffb46dd52d484dba (patch)
tree518178f9dc0b14f53870ca304b590c118ae7ca68 /databases/mariadb101-server/files/patch-MDEV-15961
parentx11/mate-panel: sync no-x11 patch with upstream (diff)
Remove expired ports:
2020-07-01 databases/mariadb101-client: Port will be removed when 10.5 is added, please switch to a newer version 2020-07-01 databases/mariadb101-server: Port will be removed when 10.5 is added, please switch to a newer version 2020-07-01 databases/mariadb102-server: Port will be removed when 10.5 is added, please switch to a newer version 2020-07-01 databases/mariadb102-client: Port will be removed when 10.5 is added, please switch to a newer version
Notes
Notes: svn path=/head/; revision=540951
Diffstat (limited to 'databases/mariadb101-server/files/patch-MDEV-15961')
-rw-r--r--databases/mariadb101-server/files/patch-MDEV-1596146
1 files changed, 0 insertions, 46 deletions
diff --git a/databases/mariadb101-server/files/patch-MDEV-15961 b/databases/mariadb101-server/files/patch-MDEV-15961
deleted file mode 100644
index 5e765675c815..000000000000
--- a/databases/mariadb101-server/files/patch-MDEV-15961
+++ /dev/null
@@ -1,46 +0,0 @@
---- mysys/stacktrace.c.orig 2018-03-26 14:18:03 UTC
-+++ mysys/stacktrace.c
-@@ -34,19 +34,19 @@
- #include <execinfo.h>
- #endif
-
-+#ifdef __linux__
- #define PTR_SANE(p) ((p) && (char*)(p) >= heap_start && (char*)(p) <= heap_end)
--
- static char *heap_start;
--
--#ifdef HAVE_BSS_START
- extern char *__bss_start;
--#endif
-+#else
-+#define PTR_SANE(p) (p)
-+#endif /* __linux */
-
- void my_init_stacktrace()
- {
--#ifdef HAVE_BSS_START
-+#ifdef __linux__
- heap_start = (char*) &__bss_start;
--#endif
-+#endif /* __linux__ */
- }
-
- #ifdef __linux__
-@@ -149,15 +149,15 @@ static int safe_print_str(const char *ad
-
- int my_safe_print_str(const char* val, int max_len)
- {
-+#ifdef __linux__
- char *heap_end;
-
--#ifdef __linux__
- // Try and make use of /proc filesystem to safely print memory contents.
- if (!safe_print_str(val, max_len))
- return 0;
--#endif
-
- heap_end= (char*) sbrk(0);
-+#endif
-
- if (!PTR_SANE(val))
- {