Subject: | `-lz` should be last in LIBS in Makefile.PL |
Makefile.PL has
LIBS => [q{-lz -lssl -lcrypto -lssl32 -lssleay32 -leay32}]
instead, this should be
LIBS => [q{-lssl -lcrypto -lssl32 -lssleay32 -leay32 -lz}]
for static linking to work.
Thanks to Sisyphus for reporting this.
-- Sinan