mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 22:30:31 +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: 9c3b0b367a
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)
|
if (ANDROID)
|
||||||
link_android_libs(RequestServer)
|
link_android_libs(RequestServer)
|
||||||
endif()
|
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
Add a link
Reference in a new issue