diff options
| author | Steven Fackler <[email protected]> | 2014-03-09 22:20:36 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-03-09 22:20:36 -0700 |
| commit | 548cd1e72615afc6c49f49889ddea790d3bcefe3 (patch) | |
| tree | 197d4d727accd254bf13cdbe60b4d5bdab41e892 /Makefile.in | |
| parent | Properly propogate errors (diff) | |
| download | rust-openssl-548cd1e72615afc6c49f49889ddea790d3bcefe3.tar.xz rust-openssl-548cd1e72615afc6c49f49889ddea790d3bcefe3.zip | |
Add a configure option for SSLv2 support
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 1faefbab..4ad2d6bb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,6 +1,7 @@ RUSTC := rustc BUILDDIR := build -RUSTFLAGS := -O --cfg ndebug +RUSTCFGS := %RUSTCFGS% +RUSTFLAGS := -O --cfg ndebug $(RUSTCFGS) INSTALL_DIR := %PREFIX% OPENSSL_LIB := lib.rs @@ -29,7 +30,7 @@ clean: rm -rf $(BUILDDIR) doc: $(OPENSSL) - rustdoc $(OPENSSL_LIB) + rustdoc $(RUSTCFGS) $(OPENSSL_LIB) install: $(OPENSSL) install $(OPENSSL) $(INSTALL_DIR) |