Author: brane Date: Mon Jun 25 11:58:35 2018 New Revision: 1834309 URL: http://svn.apache.org/viewvc?rev=1834309&view=rev Log: Most Unix filesystems are case-sensitive, so ...
* CMakeLists.txt: Use find_pakcage(ZLIB) since CMake's module file is named FindZLIB.cmake, not FindZLib.cmake. * build/FindAPRUtil.cmake: Renamed from build/FindAPRUTIL.cmake to make the find_package(APRUtil) work. Added: serf/trunk/build/FindAPRUtil.cmake - copied unchanged from r1834308, serf/trunk/build/FindAPRUTIL.cmake Removed: serf/trunk/build/FindAPRUTIL.cmake Modified: serf/trunk/CMakeLists.txt Modified: serf/trunk/CMakeLists.txt URL: http://svn.apache.org/viewvc/serf/trunk/CMakeLists.txt?rev=1834309&r1=1834308&r2=1834309&view=diff ============================================================================== --- serf/trunk/CMakeLists.txt (original) +++ serf/trunk/CMakeLists.txt Mon Jun 25 11:58:35 2018 @@ -1,4 +1,3 @@ -# =================================================================== # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -135,7 +134,7 @@ endif() # Find dependencies find_package(OpenSSL) -find_package(ZLib) +find_package(ZLIB) find_package(APR) find_package(APRUtil)