OS: Ubuntu 14.04 LTS (x86_64
)
参考:https://forums.freebsd.org/threads/security-openssl-build-failure.41478/
installing man1/smime.1 smime.pod around line 272: Expected text after =item, not a number smime.pod around line 276: Expected text after =item, not a number smime.pod around line 280: Expected text after =item, not a number smime.pod around line 285: Expected text after =item, not a number smime.pod around line 289: Expected text after =item, not a number POD document had syntax errors at /usr/bin/pod2man line 71. make: *** [install_docs] 错误 255
这是由于OpenSSL 1.0.1e 与 perl5.18 不兼容
解决方法:
mv $HOME/openssl-perl-5-18-patches.tar.gz /usr/ports/security/openssl/files cd /usr/ports/security/openssl/files && tar -xvf openssl-perl-5-18-patches.tar.gz && rm openssl-perl-5-18-patches.tar.gz cd .. make install clean
原文:http://www.cnblogs.com/aaron2015/p/4903544.html