diff options
-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 |