Merge pull request #1246 from mneumann/fix-build-on-dragonflybsd
Fix build on DragonFly
This commit is contained in:
commit
dbc5459d63
|
|
@ -60,6 +60,11 @@ fn find_openssl_dir(target: &str) -> OsString {
|
|||
return OsString::from("/usr");
|
||||
}
|
||||
|
||||
// DragonFly has libressl (or openssl) in ports, but this doesn't include a pkg-config file
|
||||
if host == target && target.contains("dragonfly") {
|
||||
return OsString::from("/usr/local");
|
||||
}
|
||||
|
||||
let mut msg = format!(
|
||||
"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue