You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mt...@apache.org on 2021/12/01 14:39:09 UTC

svn commit: r1895470 - /apr/apr/trunk/CMakeLists.txt

Author: mturk
Date: Wed Dec  1 14:39:08 2021
New Revision: 1895470

URL: http://svn.apache.org/viewvc?rev=1895470&view=rev
Log:
Fix find package. Cmake has findEXPAT not findExpat

Modified:
    apr/apr/trunk/CMakeLists.txt

Modified: apr/apr/trunk/CMakeLists.txt
URL: http://svn.apache.org/viewvc/apr/apr/trunk/CMakeLists.txt?rev=1895470&r1=1895469&r2=1895470&view=diff
==============================================================================
--- apr/apr/trunk/CMakeLists.txt (original)
+++ apr/apr/trunk/CMakeLists.txt Wed Dec  1 14:39:08 2021
@@ -20,7 +20,7 @@ PROJECT(APR C)
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
 
 # Either Expat or LibXml2 is required; the others are optional
-FIND_PACKAGE(Expat)
+FIND_PACKAGE(EXPAT)
 FIND_PACKAGE(LibXml2)
 FIND_PACKAGE(OpenSSL)