mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-12 13:54:07 +00:00
clean up byte order detection
Check for existence of the expected functions and macros and error out if nothing appropriate can be found.
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
add_executable(nominatim export.c geometry.cpp import.c index.c input.c nominatim.c postgresql.c sprompt.c)
|
||||
include(CheckIncludeFile)
|
||||
CHECK_INCLUDE_FILE(byteswap.h HAVE_BYTESWAP_H)
|
||||
CHECK_INCLUDE_FILE(sys/endian.h HAVE_SYS_ENDIAN_H)
|
||||
if(HAVE_BYTESWAP_H)
|
||||
target_compile_definitions(nominatim PRIVATE HAVE_BYTESWAP_H)
|
||||
endif(HAVE_BYTESWAP_H)
|
||||
if(HAVE_SYS_ENDIAN_H)
|
||||
target_compile_definitions(nominatim PRIVATE HAVE_SYS_ENDIAN_H)
|
||||
endif(HAVE_SYS_ENDIAN_H)
|
||||
|
||||
CHECK_SYMBOL_EXISTS(bswap_32 "byteswap.h" HAVE_BYTESWAP)
|
||||
CHECK_SYMBOL_EXISTS(bswap32 "sys/endian.h" HAVE_SYS_ENDIAN)
|
||||
|
||||
target_compile_definitions(nominatim
|
||||
PRIVATE HAVE_BYTESWAP=$<BOOL:${HAVE_BYTESWAP}>
|
||||
PRIVATE HAVE_SYS_ENDIAN=$<BOOL:${HAVE_SYS_ENDIAN}>
|
||||
)
|
||||
|
||||
target_link_libraries(nominatim ${LIBXML2_LIBRARIES} ${ZLIB_LIBRARIES} ${BZIP2_LIBRARIES} ${PostgreSQL_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user