Skip to content

Commit

Permalink
Disable usage of zstd lib, this fixes cretz#23 (cretz#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
coupez authored and cretz committed Apr 3, 2019
1 parent 66b45db commit 9448198
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.go
Expand Up @@ -167,6 +167,9 @@ func build(folder string) error {
if runtime.GOOS != "darwin" {
torConf = append(torConf, "--enable-static-tor")
}
if runtime.GOOS == "windows" {
torConf = append(torConf, "--disable-zstd")
}
return runCmds(folder, env, [][]string{
{"sh", "-l", "./autogen.sh"},
torConf,
Expand Down

0 comments on commit 9448198

Please sign in to comment.