Skip to content

Commit 2a67ee2

Browse files
committed
Fix link error
1 parent 512b1d8 commit 2a67ee2

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

BUILD.bazel

+12
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ cc_library(
3737
cc_library(
3838
name = "libzmq",
3939
srcs = [
40+
"external/sha1/sha1.c",
41+
"external/sha1/sha1.h",
4042
"src/address.cpp",
4143
"src/address.hpp",
4244
"src/array.hpp",
@@ -267,9 +269,19 @@ cc_library(
267269
"src/vmci_listener.hpp",
268270
"src/windows.hpp",
269271
"src/wire.hpp",
272+
"src/ws_address.cpp",
270273
"src/ws_address.hpp",
274+
"src/ws_connecter.cpp",
271275
"src/ws_connecter.hpp",
276+
"src/ws_decoder.cpp",
277+
"src/ws_decoder.hpp",
278+
"src/ws_encoder.cpp",
279+
"src/ws_encoder.hpp",
280+
"src/ws_engine.cpp",
281+
"src/ws_engine.hpp",
282+
"src/ws_listener.cpp",
272283
"src/ws_listener.hpp",
284+
"src/ws_protocol.hpp",
273285
"src/xpub.cpp",
274286
"src/xpub.hpp",
275287
"src/xsub.cpp",

linux/platform.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
#define ZMQ_USE_BUILTIN_SHA1
6666
/* #undef ZMQ_USE_NSS */
67-
#define ZMQ_HAVE_WS
67+
/* #undef ZMQ_HAVE_WS */
6868
/* #undef ZMQ_HAVE_WSS */
6969
#define ZMQ_HAVE_TIPC
7070

@@ -79,7 +79,7 @@
7979
/* #undef SODIUM_STATIC */
8080
/* #undef HAVE_LIBGSSAPI_KRB5 */
8181
/* #undef ZMQ_USE_GNUTLS */
82-
#define ZMQ_USE_RADIX_TREE
82+
/* #undef ZMQ_USE_RADIX_TREE */
8383
#define HAVE_IF_NAMETOINDEX
8484

8585
#ifdef _AIX

mac/platform.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
#define ZMQ_USE_BUILTIN_SHA1
6666
/* #undef ZMQ_USE_NSS */
67-
#define ZMQ_HAVE_WS
67+
/* #undef ZMQ_HAVE_WS */
6868
/* #undef ZMQ_HAVE_WSS */
6969
/* #undef ZMQ_HAVE_TIPC */
7070

@@ -79,7 +79,7 @@
7979
/* #undef SODIUM_STATIC */
8080
/* #undef HAVE_LIBGSSAPI_KRB5 */
8181
/* #undef ZMQ_USE_GNUTLS */
82-
#define ZMQ_USE_RADIX_TREE
82+
/* #undef ZMQ_USE_RADIX_TREE */
8383
#define HAVE_IF_NAMETOINDEX
8484

8585
#ifdef _AIX

0 commit comments

Comments
 (0)