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
92db6e9a
Commit
92db6e9a
authored
Nov 19, 2010
by
Sunanda Menon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #58227 improve error message "aio is required on Linux"
parent
c4545852
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
cmake/build_configurations/mysql_release.cmake
cmake/build_configurations/mysql_release.cmake
+7
-1
No files found.
cmake/build_configurations/mysql_release.cmake
View file @
92db6e9a
...
...
@@ -120,7 +120,13 @@ IF(UNIX)
CHECK_INCLUDE_FILES
(
libaio.h HAVE_LIBAIO_H
)
CHECK_LIBRARY_EXISTS
(
aio io_queue_init
""
HAVE_LIBAIO
)
IF
(
NOT HAVE_LIBAIO_H OR NOT HAVE_LIBAIO
)
MESSAGE
(
FATAL_ERROR
"aio is required on Linux"
)
MESSAGE
(
FATAL_ERROR
"
aio is required on Linux, you need to install the required library:
Debian/Ubuntu: apt-get install libaio-dev
RedHat/Fedora/Oracle Linux: yum install libaio-devel
SuSE: zypper install libaio-devel
"
)
ENDIF
()
ENDIF
()
...
...
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