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
aa4d001d
Commit
aa4d001d
authored
Dec 07, 2009
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix solaris build - inet_aton is in non-default library
parent
b5948ced
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
extra/CMakeLists.txt
extra/CMakeLists.txt
+2
-8
No files found.
extra/CMakeLists.txt
View file @
aa4d001d
...
...
@@ -58,17 +58,11 @@ TARGET_LINK_LIBRARIES(perror mysys)
ADD_EXECUTABLE
(
resolveip resolveip.c
)
TARGET_LINK_LIBRARIES
(
resolveip mysys
)
# On Solaris, inet_aton() function used by resolveip could be in resolv library
IF
(
CMAKE_SYSTEM_NAME STREQUAL
"SunOS"
)
INCLUDE
(
CheckFunctionExists
)
INCLUDE
(
CheckLibraryExists
)
CHECK_FUNCTION_EXISTS
(
inet_aton HAVE_INET_ATON
)
IF
(
NOT HAVE_INET_ATON
)
CHECK_LIBRARY_EXISTS
(
resolv inet_aton
""
HAVE_INET_ATON_IN_RESOLV
)
IF
(
HAVE_INET_ATON_IN_RESOLV
)
TARGET_LINK_LIBRARIES
(
resolveip resolv
)
ENDIF
()
ENDIF
()
MY_SEARCH_LIBS
(
inet_aton
"nsl;socket;resolv"
SOLARIS_NSL
)
TARGET_LINK_LIBRARIES
(
resolveip
${
SOLARIS_NSL
}
)
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