Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
50b212ad
Commit
50b212ad
authored
Nov 04, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
parents
29e07bcb
15f2b149
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
6 deletions
+12
-6
configure.in
configure.in
+4
-0
extra/yassl/src/socket_wrapper.cpp
extra/yassl/src/socket_wrapper.cpp
+1
-1
extra/yassl/src/timer.cpp
extra/yassl/src/timer.cpp
+7
-5
No files found.
configure.in
View file @
50b212ad
...
...
@@ -334,6 +334,10 @@ case "$target_os" in
# Use the built-in alloca()
CFLAGS
=
"
$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
;;
esac
...
...
extra/yassl/src/socket_wrapper.cpp
View file @
50b212ad
...
...
@@ -39,7 +39,7 @@
#include <string.h>
#endif // _WIN32
#if
def __sun
#if
defined(__sun) || defined(__SCO_VERSION__)
#include <sys/filio.h>
#endif
...
...
extra/yassl/src/timer.cpp
View file @
50b212ad
...
...
@@ -26,13 +26,17 @@
#include "runtime.hpp"
#include "timer.hpp"
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#include <sys/time.h>
#endif
namespace
yaSSL
{
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
timer_d
timer
()
{
static
bool
init
(
false
);
...
...
@@ -57,8 +61,6 @@ namespace yaSSL {
#else // _WIN32
#include <sys/time.h>
timer_d
timer
()
{
struct
timeval
tv
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment