summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2010-10-04 12:41:12 +0000
committerAndrey Hristov <andrey@php.net>2010-10-04 12:41:12 +0000
commit5f06ac5caf61a9250286695ac25ca8d03e07fe03 (patch)
treefc438c5c87537acabeaf7f63ef8fb48b04505a06
parent500cd35c216b3da92bc9b4b23f7af31bfc1b4578 (diff)
downloadphp-git-5f06ac5caf61a9250286695ac25ca8d03e07fe03.tar.gz
don't define twice the macro on some platforms
-rw-r--r--ext/mysqlnd/mysqlnd_portability.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_portability.h b/ext/mysqlnd/mysqlnd_portability.h
index 40f614ab04..7d86cc9501 100644
--- a/ext/mysqlnd/mysqlnd_portability.h
+++ b/ext/mysqlnd/mysqlnd_portability.h
@@ -483,8 +483,10 @@ typedef union {
#ifdef WORDS_BIGENDIAN
+#ifndef float8get
#define float8get(V,M) memcpy((char*) &(V),(char*) (M), sizeof(double))
#define float8store(T,V) memcpy((char*) (T),(char*) &(V), sizeof(double))
+#endif /* float8get */
#else