mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2026-07-18 00:45:51 +00:00
Fix link order of nettle and hogweed
Hogweed needs nettle, not the other way around. So make sure they are specified in the correct order for the static link to succeed.
This commit is contained in:
parent
ed73ac2aa7
commit
c3279914c1
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ if(BUILD_STATIC)
|
|||
set(GNUTLS_LIBRARIES "${GNUTLS_LIBRARIES} -ltasn1")
|
||||
endif()
|
||||
if(NETTLE_LIBRARY)
|
||||
set(GNUTLS_LIBRARIES "${GNUTLS_LIBRARIES} -lnettle -lhogweed -lgmp")
|
||||
set(GNUTLS_LIBRARIES "${GNUTLS_LIBRARIES} -lhogweed -lnettle -lgmp")
|
||||
endif()
|
||||
if(GCRYPT_LIBRARY)
|
||||
set(GNUTLS_LIBRARIES "${GNUTLS_LIBRARIES} -lgcrypt -lgpg-error")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue