mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
becacf259d
Dropped the roletester since it doesn't exist anymore Co-authored-by: Anders Kaseorg <andersk@mit.edu> Signed-off-by: Anders Kaseorg <andersk@mit.edu>
23 lines
1.2 KiB
Diff
23 lines
1.2 KiB
Diff
diff --git a/lib/srv/desktop/rdp/rdpclient/client.go b/lib/srv/desktop/rdp/rdpclient/client.go
|
|
index 4357d7aa1..7e21a0076 100644
|
|
--- a/lib/srv/desktop/rdp/rdpclient/client.go
|
|
+++ b/lib/srv/desktop/rdp/rdpclient/client.go
|
|
@@ -52,14 +52,9 @@ package rdpclient
|
|
|
|
/*
|
|
// Flags to include the static Rust library.
|
|
-#cgo linux,386 LDFLAGS: -L${SRCDIR}/../../../../../target/i686-unknown-linux-gnu/release
|
|
-#cgo linux,amd64 LDFLAGS: -L${SRCDIR}/../../../../../target/x86_64-unknown-linux-gnu/release
|
|
-#cgo linux,arm LDFLAGS: -L${SRCDIR}/../../../../../target/arm-unknown-linux-gnueabihf/release
|
|
-#cgo linux,arm64 LDFLAGS: -L${SRCDIR}/../../../../../target/aarch64-unknown-linux-gnu/release
|
|
-#cgo linux LDFLAGS: -l:librdp_client.a -lpthread -ldl -lm
|
|
-#cgo darwin,amd64 LDFLAGS: -L${SRCDIR}/../../../../../target/x86_64-apple-darwin/release
|
|
-#cgo darwin,arm64 LDFLAGS: -L${SRCDIR}/../../../../../target/aarch64-apple-darwin/release
|
|
-#cgo darwin LDFLAGS: -framework CoreFoundation -framework Security -lrdp_client -lpthread -ldl -lm
|
|
+#cgo LDFLAGS: -L${SRCDIR}/../../../../../lib -lpthread -ldl -lm -lssl -lcrypto
|
|
+#cgo linux LDFLAGS: -l:librdp_client.a
|
|
+#cgo darwin LDFLAGS: -framework CoreFoundation -framework Security -lrdp_client
|
|
#include <librdprs.h>
|
|
*/
|
|
import "C"
|