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
04590cfc
Commit
04590cfc
authored
Dec 19, 2009
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build with LDFLAGS=--Wl,--as-needed on Linux
parent
916c92cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
cmake/readline.cmake
cmake/readline.cmake
+13
-1
cmd-line-utils/libedit/CMakeLists.txt
cmd-line-utils/libedit/CMakeLists.txt
+1
-1
No files found.
cmake/readline.cmake
View file @
04590cfc
...
...
@@ -79,7 +79,7 @@ MACRO (MYSQL_CHECK_MULTIBYTE)
ENDMACRO
()
MACRO
(
FIND_CURSES
)
INCLUDE
(
FindCurses
)
FIND_PACKAGE
(
Curses
)
MARK_AS_ADVANCED
(
CURSES_CURSES_H_PATH CURSES_FORM_LIBRARY CURSES_HAVE_CURSES_H
)
IF
(
NOT CURSES_FOUND
)
SET
(
ERRORMSG
"Curses library not found. Please install appropriate package,
...
...
@@ -104,6 +104,18 @@ MACRO (FIND_CURSES)
SET
(
CURSES_LIBRARY
"curses"
CACHE INTERNAL
""
FORCE
)
SET
(
CURSES_CURSES_LIBRARY
"curses"
CACHE INTERNAL
""
FORCE
)
ENDIF
()
IF
(
CMAKE_SYSTEM_NAME MATCHES
"Linux"
)
# -Wl,--as-needed breaks linking with -lcurses, e.g on Fedora
# Lower-level libcurses calls are exposed by libtinfo
CHECK_LIBRARY_EXISTS
(
${
CURSES_LIBRARY
}
tputs
""
HAVE_TPUTS_IN_CURSES
)
IF
(
NOT HAVE_TPUTS_IN_CURSES
)
CHECK_LIBRARY_EXISTS
(
tinfo tputs
""
HAVE_TPUTS_IN_TINFO
)
IF
(
HAVE_TPUTS_IN_TINFO
)
SET
(
CURSES_LIBRARY tinfo
)
ENDIF
()
ENDIF
()
ENDIF
()
ENDMACRO
()
MACRO
(
MYSQL_USE_BUNDLED_READLINE
)
...
...
cmd-line-utils/libedit/CMakeLists.txt
View file @
04590cfc
...
...
@@ -18,7 +18,7 @@ INCLUDE(CheckIncludeFile)
include
(
CheckFunctionExists
)
CHECK_INCLUDE_FILES
(
term.h HAVE_TERM_H
)
SET
(
CMAKE_REQUIRED_LIBRARIES
${
CURSES_
CURSES_
LIBRARY
}
)
SET
(
CMAKE_REQUIRED_LIBRARIES
${
CURSES_LIBRARY
}
)
CHECK_CXX_SOURCE_COMPILES
(
"
#include <term.h>
int main()
...
...
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