Kaydet (Commit) 0a8b02ad authored tarafından Fridrich Štrba's avatar Fridrich Štrba

trying to make the whole mariadb sundry on windows

Change-Id: I5d775272ba83752fdafe7b7b702a67e8c76e605a
üst 5c18df9e
...@@ -21,6 +21,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,mariadb,1)) ...@@ -21,6 +21,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,mariadb,1))
$(eval $(call gb_UnpackedTarball_add_patches,mariadb,\ $(eval $(call gb_UnpackedTarball_add_patches,mariadb,\
libmariadb/mariadb-thread.patch \ libmariadb/mariadb-thread.patch \
libmariadb/mariadb-swap.patch \
)) ))
# vim: set noet sw=4 ts=4: # vim: set noet sw=4 ts=4:
--- mariadb/include/global.h 2013-03-06 17:06:42.545906061 +0100
+++ mariadb/include/global.h 2013-03-07 14:45:03.811128674 +0100
@@ -247,7 +247,9 @@
#endif
#define sgn(a) (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0)
+#ifndef __cplusplus
#define swap(t,a,b) { register t dummy; dummy = a; a = b; b = dummy; }
+#endif
#define test(a) ((a) ? 1 : 0)
#define set_if_bigger(a,b) { if ((a) < (b)) (a)=(b); }
#define set_if_smaller(a,b) { if ((a) > (b)) (a)=(b); }
--- mariadb/include/my_global.h 2013-03-06 17:06:42.546906037 +0100
+++ mariadb/include/my_global.h 2013-03-07 14:44:47.032529753 +0100
@@ -278,7 +278,9 @@
#endif
#define sgn(a) (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0)
+#ifndef __cplusplus
#define swap(t,a,b) { register t dummy; dummy = a; a = b; b = dummy; }
+#endif
#define test(a) ((a) ? 1 : 0)
#define set_if_bigger(a,b) { if ((a) < (b)) (a)=(b); }
#define set_if_smaller(a,b) { if ((a) > (b)) (a)=(b); }
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include <inttypes.h> #include <inttypes.h>
#endif #endif
#if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H) && !defined(_MSC_VER) #if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)
// if we do not have the standard C99 integer types, then define them based on the respective SAL types // if we do not have the standard C99 integer types, then define them based on the respective SAL types
#if !defined(_SYS_TYPES_H) #if !defined(_SYS_TYPES_H)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment