Skip to content

Commit a530f5e

Browse files
authored
[BUILD] remove unused WITH_CURL build flag (#3429)
1 parent 165983a commit a530f5e

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

examples/http/BUILD

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ cc_binary(
77
"client.cc",
88
"tracer_common.h",
99
],
10-
copts = [
11-
"-DWITH_CURL",
12-
],
1310
linkopts = select({
1411
"//bazel:windows": [
1512
"-DEFAULTLIB:advapi32.lib",

ext/src/http/client/curl/BUILD

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ cc_library(
1010
"http_client_factory_curl.cc",
1111
"http_operation_curl.cc",
1212
],
13-
copts = [
14-
"-DWITH_CURL",
15-
],
1613
include_prefix = "src/http/client/curl",
1714
linkopts = select({
1815
"//bazel:windows": [

ext/test/http/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
if(WITH_HTTP_CLIENT_CURL)
55
set(FILENAME curl_http_test)
6-
add_compile_definitions(WITH_CURL)
76
add_executable(${FILENAME} ${FILENAME}.cc)
87
target_link_libraries(${FILENAME} ${GMOCK_LIB} ${GTEST_BOTH_LIBRARIES}
98
${CMAKE_THREAD_LIBS_INIT})

0 commit comments

Comments
 (0)