summaryrefslogtreecommitdiff
path: root/README.cmake
Commit message (Collapse)AuthorAgeFilesLines
* typo, PR #344 [skip ci]Giovanni Bechis2023-03-231-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1908657 13f79535-47bb-0310-9956-ffa450edef68
* Support mod_http2 in cmake-based build for WindowsJeff Trawick2015-10-031-1/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1706627 13f79535-47bb-0310-9956-ffa450edef68
* Mention the cmake/OpenSSL compatibility issueJeff Trawick2015-04-051-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1671364 13f79535-47bb-0310-9956-ffa450edef68
* Note/update some requirements versions.Rainer Jung2014-07-231-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1612938 13f79535-47bb-0310-9956-ffa450edef68
* Describe issue with multiple OpenSSL installsJeff Trawick2014-03-291-0/+19
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1583027 13f79535-47bb-0310-9956-ffa450edef68
* cmake build support for Windows is now in the 2.4.x branch; remove support ↵Jeff Trawick2013-11-141-8/+2
| | | | | | for building that branch git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1541922 13f79535-47bb-0310-9956-ffa450edef68
* install libhttpd.expJeff Trawick2013-09-221-2/+0
| | | | | | | | | install mod_foo.lib and mod_foo.exp for modules which APIs that other modules need to link against (e.g., mod_dav, mod_proxy, etc.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1525308 13f79535-47bb-0310-9956-ffa450edef68
* rename EXTRA_INCLUDE_DIRS to EXTRA_INCLUDES, add EXTRA_COMPILE_FLAGSJeff Trawick2013-09-201-2/+11
| | | | | | | | and EXTRA_LIBS git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1525006 13f79535-47bb-0310-9956-ffa450edef68
* works with (Strawberry) Perl 5.010 from 2009, so require that version; move ↵Jeff Trawick2013-09-131-2/+0
| | | | | | to older File::Path interface git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1522747 13f79535-47bb-0310-9956-ffa450edef68
* set binary attributes for remaining binaries via httpd.rc, fix theJeff Trawick2013-09-121-2/+0
| | | | | | | missing feather (icon) on httpd.exe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1522622 13f79535-47bb-0310-9956-ffa450edef68
* specify base addresses for libhttpd.dll and modules; mention an issue about ↵Jeff Trawick2013-09-121-1/+2
| | | | | | Perl compatibility of a support script git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1522547 13f79535-47bb-0310-9956-ffa450edef68
* install .pdb files when availableJeff Trawick2013-09-111-2/+24
| | | | | | | | | | | | | generate separate ab/abs binaries, following traditional Windows practice add missing utility httxt2dbm provide options to disable installation of manual and .pdb files tweak todo list git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1521821 13f79535-47bb-0310-9956-ffa450edef68
* wordsmithingJeff Trawick2013-09-091-17/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520946 13f79535-47bb-0310-9956-ffa450edef68
* Add a global ENABLE_MODULES setting to make it easyJeff Trawick2013-09-081-0/+35
| | | | | | | | | | | to build and/or activate all possible modules. A few modules that are not currently buildable needed a prereq to be defined so that they will be skipped over appropriately for reasonable values of ENABLE_MODULES. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520937 13f79535-47bb-0310-9956-ffa450edef68
* install cache_common.h; add notes on other files that aren't installedJeff Trawick2013-09-081-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520890 13f79535-47bb-0310-9956-ffa450edef68
* add apreq and skiplist to libhttpd, support mod_apreqJeff Trawick2013-09-081-3/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520888 13f79535-47bb-0310-9956-ffa450edef68
* support mod_lua; add some tweaks/disclaimers to the READMEJeff Trawick2013-09-081-2/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520856 13f79535-47bb-0310-9956-ffa450edef68
* handle mod_ldap/mod_authnz_ldap, along with tiny infrastructureJeff Trawick2013-09-071-2/+1
| | | | | | | | | | for modules whose main source doesn't match the module name (i.e., util_ldap.c vs. mod_ldap) please let mod_ldap be the only user of that support foreverandever git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520819 13f79535-47bb-0310-9956-ffa450edef68
* Add macro for checking apr/apu defines like APR_HAS_feature,Jeff Trawick2013-09-071-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | and for now use it to detect APR_HAS_XLATE and APU_HAVE_CRYPTO. Add special logic for special APR_HAS_LDAP. Display summary of feature detection. mod_session_crypto can now build, so do so if the prereq is present. (By default it won't be activated.) Sketch in more support for Lua, mod_charset_lite, mod_ldap, and mod_authnz_ldap, though they should be expected to fail until somebody actually tries it and fixes the problem. The documented ab issue was my own problem with a mismatch between my compiler and the OpenSSL compiler, resolved by building OpenSSL myself like everybody else. Document another of the possibly zillions of bugs/limitations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520783 13f79535-47bb-0310-9956-ffa450edef68
* Let the location of APR[-Util] and PCRE libs andJeff Trawick2013-09-011-5/+22
| | | | | | | | | | | | | | | | | | | | includes default to the same prefix where this package is installed, generally eliminating four required settings for users. APR trunk vs. APR[-Util] 1.x is selected automatically, as is PCRE debug vs. release. (But if you have both debug and release builds of PCRE you may not like the choice, and will need to override. Add a bunch of gory details about the build to the configuration summary. Document that static PCRE builds aren't yet supported (before or after this commit). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1519270 13f79535-47bb-0310-9956-ffa450edef68
* Simplify -DENABLE_MOD_foo to -DENABLE_FOOJeff Trawick2013-08-311-4/+4
| | | | | | | | | Improve display of module selections at end of configuration Zap an unused variable git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1519179 13f79535-47bb-0310-9956-ffa450edef68
* add option EXTRA_INCLUDE_DIRS for pointing to outside directoriesJeff Trawick2013-08-311-1/+6
| | | | | | | | | | | | for .h files (sometimes needed with statically linked, third-party modules) axe remnant of the old way of finding private APR .h files install .h files that live outside of the top include directory git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1519175 13f79535-47bb-0310-9956-ffa450edef68
* mention the PATH issueJeff Trawick2013-08-291-0/+32
| | | | | | | | this will be resolved for most users by bundlers/distributors, but some hints are appropriate git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1518801 13f79535-47bb-0310-9956-ffa450edef68
* move cmake howto/buglist to a separate file, README.cmakeJeff Trawick2013-08-291-0/+160
add license text to CMakeLists.txt git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1518736 13f79535-47bb-0310-9956-ffa450edef68