diff options
author | Pierre Ossman <ossman@cendio.se> | 2025-04-24 10:53:43 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2025-04-24 10:53:43 +0200 |
commit | 8edec061c2f6f3f508f075631e54ce080217c9ab (patch) | |
tree | 78e15405cdc5ac600f409bc7d90cc5ff7f1f28a5 | |
parent | 1f1aaca09a1f9919f5169caea9c396b14c2af765 (diff) | |
download | tigervnc-master.tar.gz tigervnc-master.zip |
It is a requirement from hogweed, and we've apparently been lucky up
until now that the ordering was correct.
-rw-r--r-- | cmake/StaticBuild.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/StaticBuild.cmake b/cmake/StaticBuild.cmake index 991ad5be..c69d870d 100644 --- a/cmake/StaticBuild.cmake +++ b/cmake/StaticBuild.cmake @@ -116,7 +116,7 @@ if(BUILD_STATIC) if(NETTLE_FOUND) set(NETTLE_LIBRARIES "-Wl,-Bstatic -lnettle -Wl,-Bdynamic") - set(HOGWEED_LIBRARIES "-Wl,-Bstatic -lhogweed -Wl,-Bdynamic") + set(HOGWEED_LIBRARIES "-Wl,-Bstatic -lhogweed -lnettle -Wl,-Bdynamic") set(GMP_LIBRARIES "-Wl,-Bstatic -lgmp -Wl,-Bdynamic") endif() |