svn commit: r1924726 - /apr/apr/trunk/CMakeLists.txt
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: ivan
Date: Tue Apr 1 13:24:03 2025
New Revision: 1924726
URL: http://svn.apache.org/viewvc?rev=1924726&view=rev
Log:
CMakeLists.txt: Define APU_HAVE_OPENSSL when APU_HAVE_CRYPTO is enabled and
we are going to use OpenSSL crypto backend.
Modified:
apr/apr/trunk/CMakeLists.txt
Modified: apr/apr/trunk/CMakeLists.txt
URL: http://svn.apache.org/viewvc/apr/apr/trunk/CMakeLists.txt?rev=1924726&r1=1924725&r2=1924726&view=diff
==============================================================================
--- apr/apr/trunk/CMakeLists.txt (original)
+++ apr/apr/trunk/CMakeLists.txt Tue Apr 1 13:24:03 2025
@@ -84,6 +84,7 @@ endif()
if(APU_HAVE_CRYPTO)
find_package(OpenSSL REQUIRED)
+ set(APU_HAVE_OPENSSL ON)
endif()
if(APR_XML_BACKEND STREQUAL "expat")