summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/openssl/openssl.cpp
blob: 5ca3e9c81de59405037a0b1d7da20de1a99b79b9 (plain)
1
2
3
4
5
6
7
8
9
#include <openssl/opensslv.h>

#if !defined(OPENSSL_VERSION_NUMBER) || OPENSSL_VERSION_NUMBER-0 < 0x0090700fL
#  error "OpenSSL >= 0.9.7 is required"
#endif

int main()
{
}