From 66b4e9569975fe17188157243990e999e842ed38 Mon Sep 17 00:00:00 2001 From: Alexander Morley Date: Thu, 1 Dec 2016 15:30:30 +0000 Subject: [PATCH 1/3] Provide Yum for non-debian builds --- deps/build.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/deps/build.jl b/deps/build.jl index 534771e..9b4e181 100644 --- a/deps/build.jl +++ b/deps/build.jl @@ -22,6 +22,7 @@ provides(Sources, URI("https://archive.org/download/zeromq_3.2.4/zeromq-3.2.4.ta provides(BuildProcess, Autotools(libtarget = "src/.libs/libzmq." * BinDeps.shlib_ext), zmq) provides(AptGet, "libzmq3", zmq, os = :Linux) +provides(Yum, "czmq-devel", zmq, os = :Linux) if is_windows() using WinRPM From a7bdfc2f4ca5a81c66a18374a6dbc72cdb7b0380 Mon Sep 17 00:00:00 2001 From: Alexander Morley Date: Thu, 1 Dec 2016 16:23:35 +0000 Subject: [PATCH 2/3] added libzmq.so.4 and libzmq.so.5 to aliases --- deps/build.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/build.jl b/deps/build.jl index 9b4e181..7a709a4 100644 --- a/deps/build.jl +++ b/deps/build.jl @@ -16,7 +16,7 @@ function validate(name, handle) end end -zmq = library_dependency("zmq", aliases = ["libzmq", "libzmq.so.3"], validate = validate) +zmq = library_dependency("zmq", aliases = ["libzmq", "libzmq.so.3", "libzmq.so.4", "libzmq.so.5"], validate = validate) provides(Sources, URI("https://archive.org/download/zeromq_3.2.4/zeromq-3.2.4.tar.gz"), zmq) provides(BuildProcess, Autotools(libtarget = "src/.libs/libzmq." * BinDeps.shlib_ext), zmq) From 27211c96ad22c42e56267a11ef180e1149faecf3 Mon Sep 17 00:00:00 2001 From: Alexander Morley Date: Thu, 1 Dec 2016 17:09:07 +0000 Subject: [PATCH 3/3] Update build.jl --- deps/build.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/build.jl b/deps/build.jl index 7a709a4..397e90c 100644 --- a/deps/build.jl +++ b/deps/build.jl @@ -22,7 +22,7 @@ provides(Sources, URI("https://archive.org/download/zeromq_3.2.4/zeromq-3.2.4.ta provides(BuildProcess, Autotools(libtarget = "src/.libs/libzmq." * BinDeps.shlib_ext), zmq) provides(AptGet, "libzmq3", zmq, os = :Linux) -provides(Yum, "czmq-devel", zmq, os = :Linux) +provides(Yum, "czmq", zmq, os = :Linux) if is_windows() using WinRPM