Compiling openssl 1.0.1g with Perl 5.18, the terrible way

[Edit: 2014-12-28: Newer versions of pod2man don’t have this problem, apparently. The openssl issue has been closed, and this works for me now without the workaround below.]

It appears that openssl 1.0.1g doesn’t compile with Perl 5.18 because the 5.18 of pod2man is stricter than previous versions, resulting in lots of errors like this:

cms.pod around line 457: Expected text after =item, not a number

There are patches ([1], [2], [3], plus the link above) that deal with this, but I couldn’t find one that applied cleanly against openssl 1.0.1g.

In this particular case, I’m building openssl as a prerequisite for something else and won’t be installing any manpages anywhere, so I actually don’t care at all about building the documentation. So instead of actually fixing this, I just blanked out all the files:

$ echo "=pod" > ./../blank.pod
$ find . -name '\*.pod' -exec 'cp' './../blank.pod' '{}' \\;

This seems to be the simplest thing that works without modifying the build process at all or removing files, if one can’t get any of the above patches to apply.

[Edited 2014-10-06 to simplify command for blanking pod files.]


Next Post: Compiling mosh-chrome on 64-bit Ubuntu 14.04

Previous Post: Using a Custom Window Manager in Ubuntu 14.04