Skip to content

Commit 8b9cc3d

Browse files
committed
feat(pull): use civetweb 1.16
1 parent 99e4d50 commit 8b9cc3d

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

3rdparty/civetweb

Submodule civetweb updated 99 files

bazel/civetweb.BUILD

+4-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ cc_library(
5151
name = "libcivetweb",
5252
srcs = [
5353
"src/civetweb.c",
54-
"src/response.inl",
5554
],
5655
hdrs = [
5756
"include/civetweb.h",
@@ -69,8 +68,11 @@ cc_library(
6968
"//conditions:default": ["-lrt"],
7069
}),
7170
textual_hdrs = [
72-
"src/md5.inl",
7371
"src/handle_form.inl",
72+
"src/match.inl",
73+
"src/md5.inl",
74+
"src/response.inl",
75+
"src/sort.inl",
7476
],
7577
visibility = ["//visibility:public"],
7678
deps = DEPS,

bazel/repositories.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ def prometheus_cpp_repositories():
55
maybe(
66
http_archive,
77
name = "civetweb",
8-
strip_prefix = "civetweb-1.15",
9-
sha256 = "90a533422944ab327a4fbb9969f0845d0dba05354f9cacce3a5005fa59f593b9",
8+
strip_prefix = "civetweb-1.16",
9+
sha256 = "f0e471c1bf4e7804a6cfb41ea9d13e7d623b2bcc7bc1e2a4dd54951a24d60285",
1010
urls = [
11-
"https://github.com/civetweb/civetweb/archive/v1.15.tar.gz",
11+
"https://github.com/civetweb/civetweb/archive/v1.16.tar.gz",
1212
],
1313
build_file = "@com_github_jupp0r_prometheus_cpp//bazel:civetweb.BUILD",
1414
)

0 commit comments

Comments
 (0)