Skip to content

Commit

Permalink
Allow build on Solaris (#2035)
Browse files Browse the repository at this point in the history
By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license and the ISC license.
  • Loading branch information
psumbera authored Dec 9, 2024
1 parent 6c58a0f commit e0214ba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ if(CMAKE_HOST_SYSTEM_NAME STREQUAL "SunOS" AND NOT CMAKE_CROSSCOMPILING)
set(HOST_ILLUMOS 1)
endif()

if (UNAME_O STREQUAL "Solaris")
set(HOST_SOLARIS 1)
endif()

if (HOST_ILLUMOS)
#
# illumos systems require linking libsocket and libnsl to get various
Expand Down Expand Up @@ -797,7 +801,7 @@ if(OPENSSL_NO_SSE2_FOR_TESTING)
add_definitions(-DOPENSSL_NO_SSE2_FOR_TESTING)
endif()

if(HOST_ILLUMOS)
if(HOST_ILLUMOS OR HOST_SOLARIS)
#
# 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 e0214ba

Please sign in to comment.