Skip to content

Commit

Permalink
Fix build error with clang (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss authored Nov 2, 2022
1 parent 434137f commit 0162fe1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ appveyor = { repository = "alexcrichton/curl-rust" }

[dependencies]
libc = "0.2.42"
curl-sys = { path = "curl-sys", version = "0.4.56", default-features = false }
curl-sys = { path = "curl-sys", version = "0.4.59", default-features = false }
socket2 = "0.4.0"

# Unix platforms use OpenSSL for now to provide SSL functionality
Expand Down
2 changes: 1 addition & 1 deletion curl-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "curl-sys"
version = "0.4.58+curl-7.86.0"
version = "0.4.59+curl-7.86.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
links = "curl"
build = "build.rs"
Expand Down
1 change: 1 addition & 0 deletions curl-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ fn main() {
.define("HAVE_FCNTL_O_NONBLOCK", None)
.define("HAVE_SYS_SELECT_H", None)
.define("HAVE_SYS_STAT_H", None)
.define("HAVE_SYS_TIME_H", None)
.define("HAVE_UNISTD_H", None)
.define("HAVE_RECV", None)
.define("HAVE_SELECT", None)
Expand Down

0 comments on commit 0162fe1

Please sign in to comment.