diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-02-16 23:02:59 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-02-16 23:02:59 +0100 |
commit | 1e7878489dc5d3013b5e5858fe404ab6b4a6947a (patch) | |
tree | 5298f228c12c8782294b3ebe8f0d6968f7f2e7bc | |
parent | 8214d386c3f10dcc7f034a1159e82aa2d470829f (diff) |
exconf.rb checks for libzmq.so installation
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | bindings/ruby/extconf.rb | 8 |
2 files changed, 7 insertions, 2 deletions
@@ -18,6 +18,7 @@ Martin Hurton Martin Lucina Martin Sustrik Matus Hamorsky +McClain Looney Pavel Gushcha Pavol Malosek Steven McCoy diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb index d5778d0..30c70fb 100644 --- a/bindings/ruby/extconf.rb +++ b/bindings/ruby/extconf.rb @@ -18,7 +18,11 @@ require 'mkmf' dir_config('libzmq') -have_library('libzmq') -create_makefile("ruby") +if have_library('libzmq', 'zmq_init') + puts "Cool, I found your zmq install..." + create_makefile("zmq") +else + raise "Couldn't find zmq library. try setting --with-zmq-dir=<path> to tell me where it is." +end |