Unverified Commit 7fdf6ecf authored by Hiroshi SHIBATA's avatar Hiroshi SHIBATA
Browse files

Allow OPENSSL_VERSION_TEXT string match without last line for OpenSUSE

parent ef66bd1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1090,7 +1090,7 @@ has_broken_mac_openssl() {
}

system_openssl_version() {
  local version_text=$(printf '#include <openssl/opensslv.h>\nOPENSSL_VERSION_TEXT\n' | cc -xc -E - 2>/dev/null | tail -n 1)
  local version_text=$(printf '#include <openssl/opensslv.h>\nOPENSSL_VERSION_TEXT\n' | cc -xc -E - 2>/dev/null)
  if [[ $version_text == *"OpenSSL "* ]]; then
    local version=${version_text#*OpenSSL }
    version=${version%% *}