Kaydet (Commit) ca8201ef authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

configure.ac: fix error message on non-MacOS X builds

Change-Id: I33c0b7218054d8d879d72a2a47899b39ae8458ca
üst 4af1a4a0
...@@ -8646,7 +8646,7 @@ DISABLE_OPENSSL="NO" ...@@ -8646,7 +8646,7 @@ DISABLE_OPENSSL="NO"
AC_MSG_CHECKING([whether to disable OpenSSL usage]) AC_MSG_CHECKING([whether to disable OpenSSL usage])
if test "$enable_openssl" = "yes"; then if test "$enable_openssl" = "yes"; then
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
if test $_os = Darwin -a $MAC_OS_X_VERSION_MIN_REQUIRED -ge 1070; then if test "$_os" = Darwin -a "${MAC_OS_X_VERSION_MIN_REQUIRED:-0}" -ge 1070; then
# OpenSSL is deprecated when building for 10.7 or later. # OpenSSL is deprecated when building for 10.7 or later.
# #
# http://stackoverflow.com/questions/7406946/why-is-apple-deprecating-openssl-in-macos-10-7-lion # http://stackoverflow.com/questions/7406946/why-is-apple-deprecating-openssl-in-macos-10-7-lion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment