This is an automated email from the ASF dual-hosted git repository. tschoening pushed a commit to branch ghpr_14_replace-ant-build-with-cmake in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git
commit 84d3b60182550be464908c4809dfc546a62de42d Author: Stephen Webb <[email protected]> AuthorDate: Sun Feb 9 13:46:13 2020 +1100 Add platform specific instructions for cmake install --- src/site/apt/building/cmake.apt | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/site/apt/building/cmake.apt b/src/site/apt/building/cmake.apt index 6f4d876..d76afc9 100644 --- a/src/site/apt/building/cmake.apt +++ b/src/site/apt/building/cmake.apt @@ -66,12 +66,25 @@ $ sudo make install APR and APR-Util are provided by the platform in Mac OS/X 10.5 and iODBC in 10.4. + cmake can be installed by typing "brew install cmake" + ** Debian: - APR, APR-Util, gzip and zip may be installed by: + APR, APR-Util, openssl, gzip and zip may be installed by: +----+ -$ sudo apt-get install libapr1-dev libaprutil1-dev gzip zip +$ sudo apt-get install libssl-dev libapr1-dev libaprutil1-dev gzip zip ++----+ + + CMake can be built from source by typing: + ++----+ +$ wget https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4.tar.gz +$ tar xf cmake-3.16.4.tar.gz +$ cd cmake-3.16.4 +$ ./bootstrap +$ make +$ sudo make install +----+ ** FreeBSD:
