mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
This commit is contained in:
commit
15f2b1494d
3 changed files with 12 additions and 6 deletions
|
@ -334,6 +334,10 @@ case "$target_os" in
|
||||||
# Use the built-in alloca()
|
# Use the built-in alloca()
|
||||||
CFLAGS="$CFLAGS -Kalloca"
|
CFLAGS="$CFLAGS -Kalloca"
|
||||||
CXXFLAGS="$CFLAGS -Kalloca"
|
CXXFLAGS="$CFLAGS -Kalloca"
|
||||||
|
# Use no_implicit for templates
|
||||||
|
CXXFLAGS="$CXXFLAGS -Tno_implicit"
|
||||||
|
AC_DEFINE([HAVE_EXPLICIT_TEMPLATE_INSTANTIATION],
|
||||||
|
[1], [Defined by configure. Use explicit template instantiation.])
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#endif // _WIN32
|
#endif // _WIN32
|
||||||
|
|
||||||
#ifdef __sun
|
#if defined(__sun) || defined(__SCO_VERSION__)
|
||||||
#include <sys/filio.h>
|
#include <sys/filio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -26,13 +26,17 @@
|
||||||
#include "runtime.hpp"
|
#include "runtime.hpp"
|
||||||
#include "timer.hpp"
|
#include "timer.hpp"
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define WIN32_LEAN_AND_MEAN
|
||||||
|
#include <windows.h>
|
||||||
|
#else
|
||||||
|
#include <sys/time.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace yaSSL {
|
namespace yaSSL {
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
|
||||||
#define WIN32_LEAN_AND_MEAN
|
|
||||||
#include <windows.h>
|
|
||||||
|
|
||||||
timer_d timer()
|
timer_d timer()
|
||||||
{
|
{
|
||||||
static bool init(false);
|
static bool init(false);
|
||||||
|
@ -57,8 +61,6 @@ namespace yaSSL {
|
||||||
|
|
||||||
#else // _WIN32
|
#else // _WIN32
|
||||||
|
|
||||||
#include <sys/time.h>
|
|
||||||
|
|
||||||
timer_d timer()
|
timer_d timer()
|
||||||
{
|
{
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
|
|
Loading…
Add table
Reference in a new issue