blob: f56fd61ce3bfd6e802141b0882b0dcb6ced06714 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- include/mysql-8.0/my_sys.h.orig 2022-12-10 21:58:26 UTC
+++ include/mysql-8.0/my_sys.h
@@ -34,8 +34,12 @@
#include "my_config.h"
#ifdef HAVE_ALLOCA_H
+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
+#include <stdlib.h>
+#else
#include <alloca.h>
#endif
+#endif
#include <limits.h>
#ifdef _WIN32
#include <malloc.h>
@@ -322,6 +326,8 @@ typedef int (*IO_CACHE_CALLBACK)(IO_CACHE *);
struct IO_CACHE;
typedef int (*IO_CACHE_CALLBACK)(IO_CACHE *);
+
+typedef unsigned long ulong;
struct IO_CACHE_SHARE {
mysql_mutex_t mutex; /* To sync on reads into buffer. */
|