mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 00:25:50 -04:00
15 lines
383 B
C
15 lines
383 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 SSLeay_version(SSLEAY_VERSION)
|
|
#else
|
|
#define OPENSSL_VERSION_STRING "without OpenSSL"
|
|
#endif
|