summaryrefslogtreecommitdiff
path: root/package/mysql/patches/patch-include_my_global_h
blob: 0513e1ca4e8a594d7dac5adc93a2a733ace1873e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
--- mysql-5.0.85.orig/include/my_global.h	2009-08-11 12:50:17.000000000 +0200
+++ mysql-5.0.85/include/my_global.h	2009-08-27 22:21:39.363259500 +0200
@@ -350,29 +350,32 @@ C_MODE_END
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
+
 #if defined(__cplusplus) && defined(NO_CPLUSPLUS_ALLOCA)
 #undef HAVE_ALLOCA
 #undef HAVE_ALLOCA_H
 #endif
-#ifdef HAVE_ALLOCA_H
-#include <alloca.h>
+
+#if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__)
+#ifndef BSD
+#define BSD
 #endif
-#ifdef HAVE_ATOMIC_ADD
-#define new my_arg_new
-#define need_to_restore_new 1
-C_MODE_START
-#include <asm/atomic.h>
-C_MODE_END
-#ifdef need_to_restore_new /* probably safer than #ifdef new */
-#undef new
-#undef need_to_restore_new
 #endif
+
+#if defined(HAVE_ALLOCA_H) && !defined(BSD)
+#include <alloca.h>
 #endif
+
 #include <errno.h>				/* Recommended by debian */
 /* We need the following to go around a problem with openssl on solaris */
+#ifdef BSD
+#include <pwd.h>
+#include <unistd.h>
+#else
 #if defined(HAVE_CRYPT_H)
 #include <crypt.h>
 #endif
+#endif
 
 /*
   A lot of our programs uses asserts, so better to always include it
@@ -791,9 +794,11 @@ typedef SOCKET_SIZE_TYPE size_socket;
 #define finite(x) (1.0 / fabs(x) > 0.0)
 #endif
 
+/*
 #ifndef HAVE_ISNAN
 #define isnan(x) ((x) != (x))
 #endif
+*/
 
 #ifdef HAVE_ISINF
 /* Check if C compiler is affected by GCC bug #39228 */