Skip to content

Commit

Permalink
- Make it slightly simpler to update OpenSSL version information
Browse files Browse the repository at this point in the history
  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.
  • Loading branch information
simonlbn committed Apr 1, 2010
1 parent 2176e0c commit 610601c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion secure/lib/libcrypto/Makefile.inc
Expand Up @@ -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

Expand Down Expand Up @@ -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})
Expand Down

0 comments on commit 610601c

Please sign in to comment.