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
f2d4808f
Commit
f2d4808f
authored
Dec 25, 2009
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable Cygwin build again
parent
99c9c3bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
cmake/ssl.cmake
cmake/ssl.cmake
+2
-0
sql/CMakeLists.txt
sql/CMakeLists.txt
+4
-1
No files found.
cmake/ssl.cmake
View file @
f2d4808f
...
...
@@ -30,8 +30,10 @@ MACRO (MYSQL_USE_BUNDLED_SSL)
#Remove -fno-implicit-templates
#(yassl sources cannot be compiled with it)
SET
(
SAVE_CXX_FLAGS
${
CXX_FLAGS
}
)
IF
(
CMAKE_CXX_FLAGS
)
STRING
(
REPLACE
"-fno-implicit-templates"
""
CMAKE_CXX_FLAGS
${
CMAKE_CXX_FLAGS
}
)
ENDIF
()
ADD_SUBDIRECTORY
(
extra/yassl
)
ADD_SUBDIRECTORY
(
extra/yassl/taocrypt
)
SET
(
CXX_FLAGS
${
SAVE_CXX_FLAGS
}
)
...
...
sql/CMakeLists.txt
View file @
f2d4808f
...
...
@@ -105,8 +105,11 @@ MYSQL_ADD_EXECUTABLE(mysqld ${MYSQLD_SOURCE})
IF
(
NOT WITHOUT_DYNAMIC_PLUGINS
)
SET_TARGET_PROPERTIES
(
mysqld PROPERTIES ENABLE_EXPORTS TRUE
)
GET_TARGET_PROPERTY
(
mysqld_link_flags mysqld LINK_FLAGS
)
IF
(
NOT mysqld_link_flags
)
SET
(
mysqld_link_flags
)
ENDIF
()
IF
(
MINGW OR CYGWIN
)
SET_TARGET_PROPERTIES
(
mysqld PROPERTIES LINK_FLAGS
"{mysqld_link_flags} -Wl,--export-all-symbols"
)
SET_TARGET_PROPERTIES
(
mysqld PROPERTIES LINK_FLAGS
"
$
{
mysqld_link_flags
}
-Wl,--export-all-symbols"
)
ENDIF
()
IF
(
MSVC
)
# Set module definition file. Also use non-incremental linker,
...
...
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