Commit 60c0b88e authored by Steven Fackler's avatar Steven Fackler
Browse files

Merge pull request #265 from alexcrichton/swap-order

Swap order of linking ssl/crypto
parents e28b73e1 bf16c19f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -36,12 +36,12 @@ fn main() {
        Some(ref v) => v.split(":").collect(),
        None => if target.contains("windows") {
            if get_mingw_in_path().is_some() && lib_dir.is_none() && include_dir.is_none() {
                vec!("eay32", "ssleay32")
                vec!["ssleay32", "eay32"]
            } else {
                vec!("eay32", "ssl32")
                vec!["ssl32", "eay32"]
            }
        } else {
            vec!("crypto", "ssl")
            vec!["ssl", "crypto"]
        }
    };