aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/address_sorting/BUILD
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-12-28 18:09:19 -0800
committerGravatar Alexander Polcyn <apolcyn@google.com>2018-03-20 23:51:23 -0700
commitd21ee150765c73876992bbf06c716b4600ba047f (patch)
treeef97400ceb7007fc0c1498e61adf851cdc0eaa26 /third_party/address_sorting/BUILD
parent690dde672a877083e29ee5af0b8252697aa48fa0 (diff)
Stop relying on certain ipv6 macros. Also bazel build updates.
Fix error just made in bazel/grpc_build_system.bzl Fix merge conflict support/env -> gpr/env
Diffstat (limited to 'third_party/address_sorting/BUILD')
-rw-r--r--third_party/address_sorting/BUILD5
1 files changed, 4 insertions, 1 deletions
diff --git a/third_party/address_sorting/BUILD b/third_party/address_sorting/BUILD
index 9462829766..defa0851aa 100644
--- a/third_party/address_sorting/BUILD
+++ b/third_party/address_sorting/BUILD
@@ -36,11 +36,13 @@ package(
],
)
+load(":address_sorting.bzl", "address_sorting_cc_library")
+
licenses(["notice"]) # BSD
exports_files(["LICENSE"])
-cc_library(
+address_sorting_cc_library(
name = "address_sorting",
srcs = [
"address_sorting.c",
@@ -51,6 +53,7 @@ cc_library(
"address_sorting.h",
"address_sorting_internal.h",
],
+ copts = ["-std=c99"],
includes = [
".",
],