Skip to content

Commit

Permalink
only attempt to detect illumos on plausible hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
iliana committed Sep 17, 2024
1 parent 5675a89 commit 855a4de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ if(${CMAKE_SYSTEM_NAME} STREQUAL "OpenBSD")
endif()
endif()

if(CMAKE_SYSTEM_NAME STREQUAL "SunOS")
if(CMAKE_HOST_SYSTEM_NAME STREQUAL "SunOS")
# Determine if the host is running an illumos distribution:
execute_process(COMMAND /usr/bin/uname -o OUTPUT_VARIABLE UNAME_O
OUTPUT_STRIP_TRAILING_WHITESPACE)

if (UNAME_O STREQUAL "illumos")
set(ILLUMOS 1)
set(HOST_ILLUMOS 1)
endif()

if (ILLUMOS)
if (HOST_ILLUMOS)
#
# illumos systems require linking libsocket and libnsl to get various
# networking routines sometimes found in libc on other platforms:
Expand Down Expand Up @@ -811,7 +811,7 @@ if(OPENSSL_NO_SSE2_FOR_TESTING)
add_definitions(-DOPENSSL_NO_SSE2_FOR_TESTING)
endif()

if(ILLUMOS)
if(HOST_ILLUMOS)
#
# CMAKE_SYSTEM_PROCESSOR unfortunately comes from the output of "uname -p",
# which on illumos systems emits "i386". Instead, use the value from
Expand Down

0 comments on commit 855a4de

Please sign in to comment.