diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-09-12 18:22:48 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-12-10 13:37:23 +0100 |
commit | d832a355ea40930a6d61e454a162ef286b81891f (patch) | |
tree | e1347a9d8d9dd54114ffb6ab5cdd14993d0f8153 /nix-rust/local.mk | |
parent | dd5d76e2ed2907eec5dce1c0eaea9df31caef27c (diff) |
Use rustls
In particular, this enables HTTP/2 support in reqwest, which is a lot
more efficient.
Diffstat (limited to 'nix-rust/local.mk')
-rw-r--r-- | nix-rust/local.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix-rust/local.mk b/nix-rust/local.mk index caaac31c9..cf1a5c5c5 100644 --- a/nix-rust/local.mk +++ b/nix-rust/local.mk @@ -8,8 +8,8 @@ endif libnixrust_PATH := $(d)/target/$(RUST_DIR)/libnixrust.$(SO_EXT) libnixrust_INSTALL_PATH := $(libdir)/libnixrust.$(SO_EXT) -libnixrust_LDFLAGS_USE := -L$(d)/target/$(RUST_DIR) -lnixrust -ldl -lssl -libnixrust_LDFLAGS_USE_INSTALLED := -L$(libdir) -lnixrust -ldl -lssl +libnixrust_LDFLAGS_USE := -L$(d)/target/$(RUST_DIR) -lnixrust -ldl +libnixrust_LDFLAGS_USE_INSTALLED := -L$(libdir) -lnixrust -ldl ifeq ($(OS), Darwin) libnixrust_BUILD_FLAGS = NIX_LDFLAGS="-undefined dynamic_lookup" |