Skip to content

Commit e11c6b5

Browse files
committed
Fix
1 parent 7f75095 commit e11c6b5

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

third_party/libapr1.BUILD

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,13 @@ cc_library(
158158
"HAVE_CONFIG_H",
159159
"LINUX",
160160
"REENTRANT",
161-
"sys_siglist=strsignal",
162-
],
161+
] + select({
162+
"@bazel_tools//src/conditions:windows": [],
163+
"@bazel_tools//src/conditions:darwin": [],
164+
"//conditions:default": [
165+
"sys_siglist=strsignal",
166+
],
167+
}),
163168
includes = [
164169
"include",
165170
"include/arch/unix",

0 commit comments

Comments
 (0)