This repository was archived by the owner on Mar 3, 2023. It is now read-only.
File tree 3 files changed +19
-6
lines changed
3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ maven_install(
66
66
name = "maven" ,
67
67
artifacts = [
68
68
"antlr:antlr:2.7.7" ,
69
- "org.apache.zookeeper:zookeeper:3.5.8 " ,
69
+ "org.apache.zookeeper:zookeeper:3.4.14 " ,
70
70
"io.kubernetes:client-java:" + kubernetes_client_version ,
71
71
"com.esotericsoftware:kryo:3.0.3" ,
72
72
"org.apache.avro:avro:1.7.4" ,
@@ -282,8 +282,11 @@ http_archive(
282
282
http_archive (
283
283
name = "org_apache_zookeeper" ,
284
284
build_file = "@//:third_party/zookeeper/BUILD" ,
285
- strip_prefix = "apache-zookeeper-3.5.8" ,
286
- urls = ["https://archive.apache.org/dist/zookeeper/stable/apache-zookeeper-3.5.8.tar.gz" ],
285
+ patch_args = ["-p2" ],
286
+ patches = ["//third_party/zookeeper:pkgconfig.patch" ],
287
+ sha256 = "b14f7a0fece8bd34c7fffa46039e563ac5367607c612517aa7bd37306afbd1cd" ,
288
+ strip_prefix = "zookeeper-3.4.14" ,
289
+ urls = ["https://archive.apache.org/dist/zookeeper/zookeeper-3.4.14/zookeeper-3.4.14.tar.gz" ],
287
290
)
288
291
289
292
http_archive (
Original file line number Diff line number Diff line change @@ -39,9 +39,7 @@ genrule(
39
39
"export CFLAGS=-Wno-error" ,
40
40
"mkdir -p $$TMP_DIR" ,
41
41
"cp -R $$(pwd)/external/org_apache_zookeeper/* $$TMP_DIR" ,
42
- "cd $$TMP_DIR" ,
43
- "ant compile_jute" ,
44
- "cd $$TMP_DIR/zookeeper-client/zookeeper-client-c" ,
42
+ "cd $$TMP_DIR/zookeeper-client/zookeeper-client-c" ,
45
43
"autoreconf -if" ,
46
44
"./configure --prefix=$$INSTALL_DIR --enable-shared=no" ,
47
45
"make install" ,
Original file line number Diff line number Diff line change
1
+ diff -Naur /tmp/zookeeper-client/zookeeper-client-c/configure.ac /tmp/zookeeper-client/zookeeper-client-c/configure.ac
2
+ --- /tmp/zookeeper-client/zookeeper-client-c/configure.ac 2019-03-06 16:50:47.000000000 +0000
3
+ +++ /tmp/zookeeper-client/zookeeper-client-c/configure.ac 2020-04-04 23:44:40.442252000 +0000
4
+ @@ -34,7 +34,7 @@
5
+ CPPUNIT_INCLUDE=
6
+ CPPUNIT_LIBS=
7
+ else
8
+ - AM_PATH_CPPUNIT(1.10.2)
9
+ + PKG_CHECK_MODULES([CPPUNIT], [cppunit >= 1.10.2])
10
+ fi
11
+
12
+ if test "$CALLER" = "ANT" ; then
You can’t perform that action at this time.
0 commit comments