You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2021/01/08 12:19:48 UTC

svn commit: r1885269 - /httpd/httpd/trunk/acinclude.m4

Author: jorton
Date: Fri Jan  8 12:19:48 2021
New Revision: 1885269

URL: http://svn.apache.org/viewvc?rev=1885269&view=rev
Log:
* acinclude.m4 (APACHE_CHECK_OPENSSL): Use standard "yes/no" output
  for the OpenSSL version check, rather than OK/FAILED.

Modified:
    httpd/httpd/trunk/acinclude.m4

Modified: httpd/httpd/trunk/acinclude.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/acinclude.m4?rev=1885269&r1=1885268&r2=1885269&view=diff
==============================================================================
--- httpd/httpd/trunk/acinclude.m4 (original)
+++ httpd/httpd/trunk/acinclude.m4 Fri Jan  8 12:19:48 2021
@@ -593,9 +593,9 @@ AC_DEFUN([APACHE_CHECK_OPENSSL],[
 #if OPENSSL_VERSION_NUMBER < 0x0090801f
 #error "Unsupported OpenSSL version " OPENSSL_VERSION_TEXT
 #endif],
-      [AC_MSG_RESULT(OK)
+      [AC_MSG_RESULT(yes)
        ac_cv_openssl=yes],
-      [AC_MSG_RESULT(FAILED)])
+      [AC_MSG_RESULT(no)])
 
     if test "x$ac_cv_openssl" = "xyes"; then
       ap_openssl_libs="${ap_openssl_libs:--lssl -lcrypto} `$apr_config --libs`"