freebsd-dev/crypto/openssh/version.h
Ed Maste 5d5f8b31cb openssh: rename local macro to avoid OpenSSL 1.1.1 conflict
Local changes introduced an OPENSSH_VERSION macro, but this conflicts
with a macro of the same name introduced with OpenSSL 1.1.1.
2018-09-19 19:13:29 +00:00

16 lines
379 B
C

/* $OpenBSD: version.h,v 1.82 2018/07/03 11:42:12 djm Exp $ */
/* $FreeBSD$ */
#define SSH_VERSION "OpenSSH_7.8"
#define SSH_PORTABLE "p1"
#define SSH_RELEASE SSH_VERSION SSH_PORTABLE
#define SSH_VERSION_FREEBSD "FreeBSD-20180909"
#ifdef WITH_OPENSSL
#define OPENSSL_VERSION_STRING SSLeay_version(SSLEAY_VERSION)
#else
#define OPENSSL_VERSION_STRING "without OpenSSL"
#endif