diff options
author | Ivan Zhakov <ivan@apache.org> | 2024-07-20 18:18:18 +0200 |
---|---|---|
committer | Ivan Zhakov <ivan@apache.org> | 2024-07-20 18:18:18 +0200 |
commit | 55c5d07a2d56109b7edaf399fbeabaf4dfaf6264 (patch) | |
tree | fbb3b3547a0041aaec5e01b42db4166c6087c1e1 /README.cmake | |
parent | * .github/workflows/windows.yml: Enable VCPKG artifacts caching. (diff) | |
download | apache2-55c5d07a2d56109b7edaf399fbeabaf4dfaf6264.tar.xz apache2-55c5d07a2d56109b7edaf399fbeabaf4dfaf6264.zip |
Remove awk dependency when building using CMake. Before this awk was required
for -DWITH_MODULES option.
* build/build-modules-c.cmake:
(generate_builtin_modules_c): Function to generate modules.c.
* CMakeLists.txt
(): Use generate_builtin_modules_c() instead of `awk -f build/build-modules-c.awk`
to generate modules.c file.
* README.cmake:
(Prerequisites, How to build): Do not mention awk as prerequisite.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1919413 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'README.cmake')
-rw-r--r-- | README.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/README.cmake b/README.cmake index 938da37d37..01ab6e6a21 100644 --- a/README.cmake +++ b/README.cmake @@ -34,7 +34,6 @@ The following tools must be in PATH: cmake version 3.1.3 or later is required to work with current OpenSSL releases. (OpenSSL is an optional prerequisite of httpd.) * Perl -* If the WITH_MODULES feature is used: awk * If using a command-line compiler: compiler and linker and related tools (Refer to the cmake documentation for more information.) @@ -100,8 +99,6 @@ How to build 2. Make sure cmake and Perl are in PATH. Additionally, some backends require compile tools in PATH. (Hint: "Visual Studio Command Prompt") - In the unlikely event that you use -DWITH_MODULES, described below, make - sure awk is in PATH. 3. cmake -G "some backend, like 'NMake Makefiles'" -DCMAKE_INSTALL_PREFIX=d:/path/to/httpdinst |