mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +00:00
Ladybird: Link libnsl and libsocket to RequestServer on Solaris
This commit is contained in:
parent
326e8a0a33
commit
9c3b0b367a
Notes:
sideshowbarker
2024-07-19 16:53:12 +09:00
Author: https://github.com/ghost Commit: https://github.com/SerenityOS/serenity/commit/9c3b0b367a6 Pull-request: https://github.com/SerenityOS/serenity/pull/20664 Reviewed-by: https://github.com/ADKaster ✅
1 changed files with 4 additions and 0 deletions
|
@ -22,3 +22,7 @@ target_link_libraries(RequestServer PRIVATE LibCore LibMain LibCrypto LibFileSys
|
|||
if (ANDROID)
|
||||
link_android_libs(RequestServer)
|
||||
endif()
|
||||
if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
|
||||
# Solaris has socket and networking related functions in two extra libraries
|
||||
target_link_libraries(RequestServer PRIVATE nsl socket)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Reference in a new issue