summaryrefslogtreecommitdiffstats
path: root/secure/lib
diff options
context:
space:
mode:
authorsimon <simon@FreeBSD.org>2010-04-01 15:35:29 +0000
committersimon <simon@FreeBSD.org>2010-04-01 15:35:29 +0000
commit610601c2d22136a29bfa73ea986063c1355fcc48 (patch)
tree0525c6d9008b439ded15b78868b8c094cd42d0c6 /secure/lib
parent2176e0cd52d68263d3d2ff39461442b734360fe1 (diff)
downloadFreeBSD-src-610601c2d22136a29bfa73ea986063c1355fcc48.zip
FreeBSD-src-610601c2d22136a29bfa73ea986063c1355fcc48.tar.gz
- Make it slightly simpler to update OpenSSL version information
for regenerating OpenSSL manual pages. - Explicitly set the OpenSSL release date so manual pages contain the date OpenSSL was released and not just the date OpenSSL was imported into the FreeBSD base system. - Update for Makefile for OpenSSL 0.9.8n.
Diffstat (limited to 'secure/lib')
-rw-r--r--secure/lib/libcrypto/Makefile.inc7
1 files changed, 6 insertions, 1 deletions
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc
index 41bf41b..d91a26a 100644
--- a/secure/lib/libcrypto/Makefile.inc
+++ b/secure/lib/libcrypto/Makefile.inc
@@ -2,6 +2,10 @@
.include <bsd.own.mk>
+# OpenSSL version used for manual page generation
+OPENSSL_VER= 0.9.8n
+OPENSSL_DATE= 2010-03-24
+
LCRYPTO_SRC= ${.CURDIR}/../../../crypto/openssl
LCRYPTO_DOC= ${.CURDIR}/../../../crypto/openssl/doc
@@ -34,7 +38,8 @@ man-update:
@(sec=${manpage:E}; \
pod=${manpage:R}.pod; \
cp ${LCRYPTO_DOC}/${_docs}/$$pod .; \
- pod2man --section=$$sec --release="0.9.8m" --center="OpenSSL" \
+ pod2man --section=$$sec --release="${OPENSSL_VER}" \
+ --date="${OPENSSL_DATE}" --center="OpenSSL" \
$$pod > ${.CURDIR}/man/${manpage}; \
rm -f $$pod; \
${ECHO} ${manpage})
OpenPOWER on IntegriCloud