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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
05dc86c0
Commit
05dc86c0
authored
Dec 21, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '5.5' into 10.0
parents
865548fc
e126baaf
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
6 deletions
+15
-6
cmake/ssl.cmake
cmake/ssl.cmake
+5
-0
config.h.cmake
config.h.cmake
+1
-1
include/violite.h
include/violite.h
+4
-0
storage/tokudb/PerconaFT/util/dmt.h
storage/tokudb/PerconaFT/util/dmt.h
+4
-4
storage/tokudb/ha_tokudb.cc
storage/tokudb/ha_tokudb.cc
+1
-1
No files found.
cmake/ssl.cmake
View file @
05dc86c0
...
...
@@ -55,6 +55,7 @@ MACRO (MYSQL_USE_BUNDLED_SSL)
SET
(
SSL_INCLUDE_DIRS
${
INC_DIRS
}
)
SET
(
SSL_INTERNAL_INCLUDE_DIRS
${
CMAKE_SOURCE_DIR
}
/extra/yassl/taocrypt/mySTL
)
SET
(
SSL_DEFINES
"-DHAVE_YASSL -DYASSL_PREFIX -DHAVE_OPENSSL -DMULTI_THREADED"
)
SET
(
HAVE_ERR_remove_thread_state OFF CACHE INTERNAL
"yassl doesn't have ERR_remove_thread_state"
)
CHANGE_SSL_SETTINGS
(
"bundled"
)
ADD_SUBDIRECTORY
(
extra/yassl
)
ADD_SUBDIRECTORY
(
extra/yassl/taocrypt
)
...
...
@@ -199,6 +200,10 @@ MACRO (MYSQL_CHECK_SSL)
SET
(
SSL_INCLUDE_DIRS
${
OPENSSL_INCLUDE_DIR
}
)
SET
(
SSL_INTERNAL_INCLUDE_DIRS
""
)
SET
(
SSL_DEFINES
"-DHAVE_OPENSSL"
)
SET
(
CMAKE_REQUIRED_LIBRARIES
${
SSL_LIBRARIES
}
)
CHECK_SYMBOL_EXISTS
(
ERR_remove_thread_state
"openssl/err.h"
HAVE_ERR_remove_thread_state
)
ELSE
()
IF
(
WITH_SSL STREQUAL
"system"
)
MESSAGE
(
SEND_ERROR
"Cannot find appropriate system libraries for SSL. Use WITH_SSL=bundled to enable SSL support"
)
...
...
config.h.cmake
View file @
05dc86c0
...
...
@@ -466,7 +466,7 @@
#cmakedefine HAVE_BSD_SIGNALS 1
#cmakedefine HAVE_SVR3_SIGNALS 1
#cmakedefine HAVE_V7_SIGNALS 1
#cmakedefine HAVE_ERR_remove_thread_state 1
#cmakedefine HAVE_SOLARIS_STYLE_GETHOST 1
...
...
include/violite.h
View file @
05dc86c0
...
...
@@ -146,6 +146,10 @@ typedef my_socket YASSL_SOCKET_T;
#include <openssl/ssl.h>
#include <openssl/err.h>
#ifdef HAVE_ERR_remove_thread_state
#define ERR_remove_state(X) ERR_remove_thread_state(NULL)
#endif
enum
enum_ssl_init_error
{
SSL_INITERR_NOERROR
=
0
,
SSL_INITERR_CERT
,
SSL_INITERR_KEY
,
...
...
storage/tokudb/PerconaFT/util/dmt.h
View file @
05dc86c0
...
...
@@ -627,16 +627,16 @@ class dmt {
__attribute__
((
nonnull
))
void
rebalance
(
subtree
*
const
subtree
);
__attribute__
((
nonnull
))
__attribute__
((
nonnull
(
3
)
))
static
void
copyout
(
uint32_t
*
const
outlen
,
dmtdata_t
*
const
out
,
const
dmt_node
*
const
n
);
__attribute__
((
nonnull
))
__attribute__
((
nonnull
(
3
)
))
static
void
copyout
(
uint32_t
*
const
outlen
,
dmtdata_t
**
const
out
,
dmt_node
*
const
n
);
__attribute__
((
nonnull
))
__attribute__
((
nonnull
(
4
)
))
static
void
copyout
(
uint32_t
*
const
outlen
,
dmtdata_t
*
const
out
,
const
uint32_t
len
,
const
dmtdata_t
*
const
stored_value_ptr
);
__attribute__
((
nonnull
))
__attribute__
((
nonnull
(
4
)
))
static
void
copyout
(
uint32_t
*
const
outlen
,
dmtdata_t
**
const
out
,
const
uint32_t
len
,
dmtdata_t
*
const
stored_value_ptr
);
template
<
typename
dmtcmp_t
,
...
...
storage/tokudb/ha_tokudb.cc
View file @
05dc86c0
...
...
@@ -288,7 +288,7 @@ static int free_share(TOKUDB_SHARE * share) {
}
const
char
*
ha_tokudb
::
table_type
()
const
{
extern
const
char
*
const
tokudb_hton_name
;
extern
const
char
*
tokudb_hton_name
;
return
tokudb_hton_name
;
}
...
...
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