Merge pull request #27 from thijsc/darwin_ssl

Always link openssl, make uri sync and send
pull/28/head
Thijs Cadier 7 years ago committed by GitHub
commit 0952cd8566

@ -37,7 +37,7 @@ fn main() {
// Configure and install
let mut command = Command::new("sh");
command.arg("configure");
command.arg("--enable-ssl=yes");
command.arg("--enable-ssl=openssl");
command.arg("--enable-sasl=no");
command.arg("--enable-static=yes");
command.arg("--enable-shared=no");

@ -401,3 +401,6 @@ impl Drop for Uri {
}
}
}
unsafe impl Send for Uri { }
unsafe impl Sync for Uri { }

Loading…
Cancel
Save