package Alien::ZMQ; # ABSTRACT: find and install libzmq, the core zeromq library use warnings; use strict; use String::ShellQuote qw/shell_quote/; =head1 DESCRIPTION Upon installation, the target system is probed for the presence of libzmq. If it is not found, B is installed in a shared directory. In short, modules that need libzmq can depend on this module to make sure that it is available, or use it independently as a way to install zeromq. =head1 SYNOPSIS use Alien::ZMQ; use version; my $version = version->parse(Alien::ZMQ::lib_version); my $lib_dir = Alien::ZMQ::lib_dir; print "zeromq $version is installed at $lib_dir\n"; =head1 OPTIONS These options to F affect the installation of this module. =over 4 =item --zmq-skip-probe By default, libzmq is not compiled and installed if it is detected to already be on the system. Use this to skip those checks and always install libzmq. =item --zmq-cflags Pass extra flags to the compiler when probing for an existing installation of libzmq. You can use this, along with L, to help the probing function locate libzmq if it is installed in an unexpected place. For example, if your libzmq is installed at F, you can do something like this: perl Build.PL --zmq-cflags="-I/opt/zeromq/include" \ --zmq-libs="-L/opt/zeromq/lib -lzmq" These flags are only used by the probing function to locate libzmq; they will not be used when compiling libzmq from source (if it needs to be). To affect the compiling of libzmq, using the L flag instead. A better alternative to using L and L is to help the L program find your libzmq by using the C environment variable. Of course, this method requires that you have the L program installed. Here's an example: perl Build.PL PKG_CONFIG_PATH=/opt/zeromq/lib/pkgconfig ./Build =item --zmq-libs Pass extra flags to the linker when probing for an existing installation of libzmq. You can use this, along with L, to help the probing function locate libzmq if it is installed in an unexpected place. Like L, these flags are only used by the probing function to locate libzmq. =item --zmq-config Pass extra flags to the libzmq F script. You may want to consider passing either C<--with-pgm> or C<--with-system-pgm> if you need support for PGM; this is not enabled by default because it is not supported by every system. =back =head1 CAVEATS Probing is only done during the installation of this module, so if you are using a system-installed version of libzmq and you uninstall or upgrade it, you will also need to reinstall L. If S is found on the system, L will use it. There are a few incompatibilities between S and S, so your program may want to use the L method to check which version of libzmq is installed. =head1 BUGS MSWin32 is not yet supported, but cygwin works. =head1 SEE ALSO =over 4 =item * L =item * L - good perl bindings for zeromq =item * L - official libzmq website =back =head1 ACKNOWLEDGEMENTS The design and implementation of this module were influenced by other L modules, including L and L. =method inc_version Get the version number of libzmq as a v-string (version string), according to the F header file. =cut sub inc_version { } =method lib_version Get the version number of libzmq as a v-string (version string), according to the F file. =cut sub lib_version { } =method inc_dir Get the directory containing the F header file. =cut sub inc_dir { } =method lib_dir Get the directory containing the F file. =cut sub lib_dir { } =method cflags Get the C compiler flags required to compile a program that uses libzmq. This is a shortcut for constructing a C<-I> flag using L. In scalar context, the flags are quoted using L and returned as a single string. =cut sub cflags { if (wantarray) { "-I" . inc_dir; } else { "-I" . shell_quote(inc_dir); } } =method libs Get the linker flags required to link a program against libzmq. This is a shortcut for constructing a C<-L> flag using L, plus C<-lzmq>. In scalar context, the flags are quoted using L and returned as a single string. On some platforms, you may also want to add the library path to your executable or library as a runtime path; this is usually done by passing C<-rpath> to the linker. Something like this could work: my @flags = (Alien::ZMQ::libs, "-Wl,-rpath=" . Alien::ZMQ::lib_dir); This will allow your program to find libzmq, even if it is installed in a non-standard location, but some systems don't have this C mechanism. =cut sub libs { if (wantarray) { "-L" . lib_dir, "-lzmq"; } else { "-L" . shell_quote(lib_dir) . " -lzmq"; } } 1;