78591cea48
MariaDB is a fork of MySQL relational database management system. It is an enhanced, drop-in replacement for MySQL. This package contains client libraries.
22 lines
1 KiB
C++
22 lines
1 KiB
C++
$NetBSD: patch-sql_mysqld.cc,v 1.1 2015/04/16 20:20:15 ryoon Exp $
|
|
|
|
--- sql/mysqld.cc.orig 2015-02-13 12:07:04.000000000 +0000
|
|
+++ sql/mysqld.cc
|
|
@@ -166,7 +166,7 @@ extern int memcntl(caddr_t, size_t, int,
|
|
int initgroups(const char *,unsigned int);
|
|
#endif
|
|
|
|
-#if defined(__FreeBSD__) && defined(HAVE_IEEEFP_H) && !defined(HAVE_FEDISABLEEXCEPT)
|
|
+#if (defined(__FreeBSD__) || defined(__DragonFly__)) && defined(HAVE_IEEEFP_H) && !defined(HAVE_FEDISABLEEXCEPT)
|
|
#include <ieeefp.h>
|
|
#ifdef HAVE_FP_EXCEPT // Fix type conflict
|
|
typedef fp_except fp_except_t;
|
|
@@ -201,7 +201,7 @@ extern "C" my_bool reopen_fstreams(const
|
|
|
|
inline void setup_fpu()
|
|
{
|
|
-#if defined(__FreeBSD__) && defined(HAVE_IEEEFP_H) && !defined(HAVE_FEDISABLEEXCEPT)
|
|
+#if (defined(__FreeBSD__) || defined(__DragonFly__)) && defined(HAVE_IEEEFP_H) && !defined(HAVE_FEDISABLEEXCEPT)
|
|
/* We can't handle floating point exceptions with threads, so disable
|
|
this on freebsd
|
|
Don't fall for overflow, underflow,divide-by-zero or loss of precision.
|