| 
 
 NAMEZMQ::FFI::Util - zmq convenience functions VERSIONversion 1.17 SYNOPSIS    use ZMQ::FFI::Util q(zmq_soname zmq_version)
    my $soname = zmq_soname();
    my ($major, $minor, $patch) = zmq_version($soname);
FUNCTIONSzmq_soname([die => 0|1])Tries to load the following sonames (in order):     libzmq.so
    libzmq.so.5
    libzmq.so.4
    libzmq.so.3
    libzmq.so.1
    libzmq.dylib
    libzmq.4.dylib
    libzmq.3.dylib
    libzmq.1.dylib
Returns the name of the first one that was successful or undef. If you would prefer exceptional behavior pass "die => 1" ($major, $minor, $patch) = zmq_version([$soname])return the libzmq version as the list "($major, $minor, $patch)". $soname can either be a filename available in the ld cache or the path to a library file. If $soname is not specified it is resolved using "zmq_soname" above If $soname cannot be resolved undef is returned SEE ALSO
 AUTHORDylan Cali <calid1984@gmail.com> COPYRIGHT AND LICENSEThis software is copyright (c) 2019 by Dylan Cali. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. 
 
  |