forked from acmel/dwarves
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmake: Add a module to find if argp is in a separate library
The musl libc, used in Alpine Linux, doesn't have argp support, so check if it is somewhere else, maybe in the argp-standalone package. Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# - Find argp | ||
# Figure out if argp is in glibc or if it argp-standalone | ||
# | ||
# ARGP_LIBRARY - Library to use argp | ||
# ARGP_FOUND - True if found. | ||
|
||
message(STATUS "Checking availability of argp library") | ||
|
||
INCLUDE(CheckLibraryExists) | ||
|
||
if (ARGP_LIBRARY) | ||
# Already in cache, be silent | ||
set(ARGP_FIND_QUIETLY TRUE) | ||
endif (ARGP_LIBRARY) | ||
|
||
find_library(ARGP_LIBRARY | ||
NAMES argp | ||
PATHS /usr/lib /usr/local/lib /usr/lib64 /usr/local/lib64 ~/usr/local/lib ~/usr/local/lib64 | ||
) | ||
|
||
if (ARGP_LIBRARY) | ||
set(ARGP_FOUND TRUE) | ||
set(ARGP_LIBRARY ${ARGP_LIBRARY}) | ||
set(CMAKE_REQUIRED_LIBRARIES ${ARGP_LIBRARY}) | ||
else (ARGP_LIBRARY) | ||
set(ARGP_LIBRARY "") | ||
endif (ARGP_LIBRARY) | ||
|
||
if (ARGP_FOUND) | ||
if (NOT ARGP_FIND_QUIETLY) | ||
message(STATUS "Found argp library: ${ARGP_LIBRARY}") | ||
endif (NOT ARGP_FIND_QUIETLY) | ||
else (ARGP_FOUND) | ||
set(ARGP_FOUND TRUE) | ||
message(STATUS "Assuming argp is in libc") | ||
endif (ARGP_FOUND) | ||
|
||
mark_as_advanced(ARGP_LIBRARY) | ||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_SOURCE_DIR}/config.h) | ||
|
||
message(STATUS "Checking availability of argp library - done") |