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
69a6311b
Commit
69a6311b
authored
Jan 26, 2010
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed typos and failed mysqld--help test.
parent
3dddc068
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
cmake/os/Windows.cmake
cmake/os/Windows.cmake
+5
-1
cmake/plugin.cmake
cmake/plugin.cmake
+2
-3
configure.cmake
configure.cmake
+0
-1
mysql-test/include/mysqld--help.inc
mysql-test/include/mysqld--help.inc
+1
-1
No files found.
cmake/os/Windows.cmake
View file @
69a6311b
...
...
@@ -64,13 +64,17 @@ IF(MSVC)
SET
(
CMAKE_{type}_LINKER_FLAGS_RELEASE
"
${
CMAKE_
${
type
}
_LINKER_FLAGS_RELEASE
}
/debug"
)
ENDFOREACH
()
# Force static runtime libraries
, and remove support for exception handling
# Force static runtime libraries
FOREACH
(
flag
CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_DEBUG_INIT
CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG_INIT
)
STRING
(
REPLACE
"/MD"
"/MT"
"
${
flag
}
"
"
${${
flag
}}
"
)
ENDFOREACH
()
# Remove support for exceptions
FOREACH
(
flag CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_INIT
)
STRING
(
REPLACE
"/EHsc"
""
"
${
flag
}
"
"
${${
flag
}}
"
)
ENDFOREACH
()
...
...
cmake/plugin.cmake
View file @
69a6311b
...
...
@@ -111,10 +111,9 @@ MACRO(MYSQL_ADD_PLUGIN)
# Update mysqld dependencies
SET
(
MYSQLD_STATIC_PLUGIN_LIBS
${
MYSQLD_STATIC_PLUGIN_LIBS
}
${
target
}
CACHE INTERNAL
""
)
${
target
}
CACHE INTERNAL
""
FORCE
)
IF
(
ARG_STORAGE_ENGINE
)
IF
(
NOT ARG_MANDATORY
)
SET
(
${
with_var
}
ON CACHE BOOL
"Link
${
plugin
}
statically to the server"
FORCE
)
ENDIF
()
...
...
configure.cmake
View file @
69a6311b
...
...
@@ -182,7 +182,6 @@ IF(UNIX)
ENDIF
()
ENDIF
()
ENDIF
()
s
# System check macros that do nothing on Windows.
# Very often, it is known that some function is not available
...
...
mysql-test/include/mysqld--help.inc
View file @
69a6311b
...
...
@@ -14,7 +14,7 @@ perl;
log
-
slow
-
queries
pid
-
file
slow
-
query
-
log
-
file
datadir
slave
-
load
-
tmpdir
tmpdir
/
;
@
plugins
=
qw
/
innodb
ndb
archive
blackhole
federated
partition
ndbcluster
safemalloc
debug
temp
-
pool
ssl
des
-
key
-
file
thread
-
concurrency
super
-
large
-
pages
mutex
-
deadlock
-
detector
/
;
thread
-
concurrency
super
-
large
-
pages
mutex
-
deadlock
-
detector
null
-
audit
/
;
@
env
=
qw
/
MYSQLTEST_VARDIR
MYSQL_TEST_DIR
MYSQL_LIBDIR
MYSQL_CHARSETSDIR
MYSQL_SHAREDIR
/
;
$re1
=
join
(
'|'
,
@
skipvars
,
@
plugins
);
$re2
=
join
(
'|'
,
@
plugins
);
...
...
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