freebsd-dev/crypto/openssh/version.h
Ed Maste 6471c6bd75 openssh: refer to OpenSSL not SSLeay
This change was made upstream between 7.9p1 and 8.0p1.  We've made local
changes in the same places for handling the version_addendum; apply the
SSLeay_version to OpenSSL_version change in advance of importing 8.0p1.

Obtained from:	OpenSSH-portable a65784c9f9c5
Sponsored by:	The FreeBSD Foundation
2020-07-15 15:35:26 +00:00

16 lines
384 B
C

/* $OpenBSD: version.h,v 1.83 2018/10/10 16:43:49 deraadt Exp $ */
/* $FreeBSD$ */
#define SSH_VERSION "OpenSSH_7.9"
#define SSH_PORTABLE "p1"
#define SSH_RELEASE SSH_VERSION SSH_PORTABLE
#define SSH_VERSION_FREEBSD "FreeBSD-20200214"
#ifdef WITH_OPENSSL
#define OPENSSL_VERSION_STRING OpenSSL_version(SSLEAY_VERSION)
#else
#define OPENSSL_VERSION_STRING "without OpenSSL"
#endif