Date: Thu, 1 Apr 2010 15:35:30 +0000 (UTC) From: "Simon L. Nielsen" <simon@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r206047 - head/secure/lib/libcrypto Message-ID: <201004011535.o31FZU6p072023@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: simon Date: Thu Apr 1 15:35:29 2010 New Revision: 206047 URL: http://svn.freebsd.org/changeset/base/206047 Log: - 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. Modified: head/secure/lib/libcrypto/Makefile.inc Modified: head/secure/lib/libcrypto/Makefile.inc ============================================================================== --- head/secure/lib/libcrypto/Makefile.inc Thu Apr 1 15:19:51 2010 (r206046) +++ head/secure/lib/libcrypto/Makefile.inc Thu Apr 1 15:35:29 2010 (r206047) @@ -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})
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004011535.o31FZU6p072023>