1# Generated by OpenSSL
2
3set(PACKAGE_VERSION {- $config{version} -})
4
5if(NOT PACKAGE_FIND_VERSION)
6  # find_package() was called without any version information.  This is assumed to
7  # mean that the caller accepts whatever they get.
8  set(PACKAGE_VERSION_COMPATIBLE 1)
9elseif(PACKAGE_FIND_VERSION_MAJOR LESS {- my $x = $config{version}; $x =~ s/\..*//; $x -}
10   OR PACKAGE_FIND_VERSION VERSION_GREATER {- $config{version} -})
11  set(PACKAGE_VERSION_UNSUITABLE 1)
12else()
13  set(PACKAGE_VERSION_COMPATIBLE 1)
14  if(PACKAGE_FIND_VERSION VERSION_EQUAL {- $config{version} -})
15    set(PACKAGE_VERSION_EXACT 1)
16  endif()
17endif()
18