]> granicus.if.org Git - apache/blob - CMakeLists.txt
ensure sane defaults
[apache] / CMakeLists.txt
1 # Licensed to the Apache Software Foundation (ASF) under one or more
2 # contributor license agreements.  See the NOTICE file distributed with
3 # this work for additional information regarding copyright ownership.
4 # The ASF licenses this file to You under the Apache License, Version 2.0
5 # (the "License"); you may not use this file except in compliance with
6 # the License.  You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16 # Read README.cmake before using this.
17
18 PROJECT(HTTPD C)
19
20 CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
21
22 INCLUDE(CheckSymbolExists)
23 INCLUDE(CheckCSourceCompiles)
24
25 FIND_PACKAGE(LibXml2)
26 FIND_PACKAGE(Lua51)
27 FIND_PACKAGE(OpenSSL)
28 FIND_PACKAGE(ZLIB)
29
30 # Options for support libraries not supported by cmake-bundled FindFOO
31
32 # Default to using APR trunk (libapr-2.lib) if it exists in PREFIX/lib;
33 # otherwise, default to APR 1.x + APR-util 1.x
34 IF(EXISTS "${CMAKE_INSTALL_PREFIX}/lib/libapr-2.lib")
35   SET(default_apr_libraries "${CMAKE_INSTALL_PREFIX}/lib/libapr-2.lib")
36 ELSEIF(EXISTS "${CMAKE_INSTALL_PREFIX}/lib/libapr-1.lib")
37   SET(ldaplib "${CMAKE_INSTALL_PREFIX}/lib/apr_ldap-1.lib")
38   IF(NOT EXISTS ${ldaplib})
39     SET(ldaplib)
40   ENDIF()
41   SET(default_apr_libraries ${CMAKE_INSTALL_PREFIX}/lib/libapr-1.lib ${CMAKE_INSTALL_PREFIX}/lib/libaprutil-1.lib ${ldaplib})
42 ELSE()
43   SET(default_apr_libraries)
44 ENDIF()
45
46 # PCRE names its libraries differently for debug vs. release builds.
47 # We can't query our own CMAKE_BUILD_TYPE at configure time.
48 # If the debug version exists in PREFIX/lib, default to that one.
49 IF(EXISTS "${CMAKE_INSTALL_PREFIX}/lib/pcred.lib")
50   SET(default_pcre_libraries ${CMAKE_INSTALL_PREFIX}/lib/pcred.lib)
51 ELSE()
52   SET(default_pcre_libraries ${CMAKE_INSTALL_PREFIX}/lib/pcre.lib)
53 ENDIF()
54
55 IF(EXISTS "${CMAKE_INSTALL_PREFIX}/lib/nghttp2d.lib")
56   SET(default_nghttp2_libraries "${CMAKE_INSTALL_PREFIX}/lib/nghttp2d.lib")
57 ELSE()
58   SET(default_nghttp2_libraries "${CMAKE_INSTALL_PREFIX}/lib/nghttp2.lib")
59 ENDIF()
60
61 SET(APR_INCLUDE_DIR       "${CMAKE_INSTALL_PREFIX}/include" CACHE STRING "Directory with APR[-Util] include files")
62 SET(APR_LIBRARIES         ${default_apr_libraries}       CACHE STRING "APR libraries to link with")
63 SET(NGHTTP2_INCLUDE_DIR   "${CMAKE_INSTALL_PREFIX}/include" CACHE STRING "Directory with NGHTTP2 include files within nghttp2 subdirectory")
64 SET(NGHTTP2_LIBRARIES     ${default_nghttp2_libraries}   CACHE STRING "NGHTTP2 libraries to link with")
65 SET(PCRE_INCLUDE_DIR      "${CMAKE_INSTALL_PREFIX}/include" CACHE STRING "Directory with PCRE include files")
66 SET(PCRE_LIBRARIES        ${default_pcre_libraries}      CACHE STRING "PCRE libraries to link with")
67 SET(LIBXML2_ICONV_INCLUDE_DIR     ""                     CACHE STRING "Directory with iconv include files for libxml2")
68 SET(LIBXML2_ICONV_LIBRARIES       ""                     CACHE STRING "iconv libraries to link with for libxml2")
69 # end support library configuration
70
71 # Misc. options
72 OPTION(INSTALL_PDB        "Install .pdb files (if generated)"  ON)
73 OPTION(INSTALL_MANUAL     "Install manual"                     ON)
74
75 SET(ENABLE_MODULES        "O"                            CACHE STRING "Minimum module enablement (e.g., \"i\" to build all but those without prerequisites)")
76 SET(WITH_MODULES          ""                             CACHE STRING "comma-separated paths to single-file modules to statically link into the server")
77 SET(EXTRA_INCLUDES        ""                             CACHE STRING "Extra include directories")
78 SET(EXTRA_LIBS            ""                             CACHE STRING "Extra libraries")
79 SET(EXTRA_COMPILE_FLAGS   ""                             CACHE STRING "Extra compile flags")
80
81 IF(NOT EXISTS "${APR_INCLUDE_DIR}/apr.h")
82   MESSAGE(FATAL_ERROR "APR include directory ${APR_INCLUDE_DIR} is not correct.")
83 ENDIF()
84 FOREACH(onelib ${APR_LIBRARIES})
85   IF(NOT EXISTS ${onelib})
86     MESSAGE(FATAL_ERROR "APR library ${onelib} was not found.")
87   ENDIF()
88 ENDFOREACH()
89
90 MACRO(DEFINE_WITH_BLANKS output_definition input_symbol input_value)
91   IF(MSVC_IDE OR ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION} VERSION_GREATER 2.8.11)
92     SET(${output_definition} "-D${input_symbol}=\"${input_value}\"")
93   ELSE()
94     # command-line tool + older cmake, where extra quotes must be added and
95     # escaped to survive
96     SET(${output_definition} "-D${input_symbol}=\"\\\"${input_value}\\\"\"")
97   ENDIF()
98 ENDMACRO()
99
100 MACRO(GET_MOD_ENABLE_RANK macro_modname macro_mod_enable_val macro_output_rank)
101   IF(${macro_mod_enable_val} STREQUAL "O")
102     SET(${macro_output_rank} 0)
103   ELSEIF(${macro_mod_enable_val} STREQUAL "i")
104     SET(${macro_output_rank} 1)
105   ELSEIF(${macro_mod_enable_val} STREQUAL "I")
106     SET(${macro_output_rank} 2)
107   ELSEIF(${macro_mod_enable_val} STREQUAL "a")
108     SET(${macro_output_rank} 3)
109   ELSEIF(${macro_mod_enable_val} STREQUAL "A")
110     SET(${macro_output_rank} 4)
111   ELSE()
112     MESSAGE(FATAL_ERROR "Unexpected enablement value \"${macro_mod_enable_val}\" for ${macro_modname}")
113   ENDIF()
114 ENDMACRO()
115
116 GET_MOD_ENABLE_RANK("ENABLE_MODULES setting" ${ENABLE_MODULES} enable_modules_rank)
117
118 # Figure out what APR/APU features are available
119 #
120 # CHECK_APR_FEATURE checks for features defined to 1 or 0 in apr.h or apu.h
121 # The symbol representing the feature will be set to TRUE or FALSE for 
122 # compatibility with the feature tests set by FindFooPackage.
123 #
124 # (unclear why CHECK_SYMBOL_EXISTS is needed, but I was getting "found" for anything 
125 # not defined to either 1 or 0)
126
127 MACRO(CHECK_APR_FEATURE which_define)
128   CHECK_SYMBOL_EXISTS(${which_define} "${APR_INCLUDE_DIR}/apr.h;${APR_INCLUDE_DIR}/apu.h" tmp_${which_define})
129   IF(${tmp_${which_define}})
130     CHECK_C_SOURCE_COMPILES("#include \"${APR_INCLUDE_DIR}/apr.h\"
131       #include \"${APR_INCLUDE_DIR}/apu.h\"
132       int main() {
133       #ifndef ${which_define}
134       #error gobble
135       #endif
136       #if !${which_define}
137       #error gobble
138       #endif
139       return 1;}" ${which_define})
140   ELSE()
141     SET(${which_define})
142   ENDIF()
143   IF(${${which_define}})
144     SET(${which_define} TRUE)
145   ELSE()
146     SET(${which_define} FALSE)
147   ENDIF()
148 ENDMACRO()
149
150 CHECK_APR_FEATURE(APR_HAS_XLATE)
151 CHECK_APR_FEATURE(APU_HAVE_CRYPTO)
152
153 # APR_HAS_LDAP is defined in apr_ldap.h, which exists only in apr 1.x, so use
154 # special code instead of CHECK_APR_FEATURE()
155 # As with CHECK_APR_FEATURE(), convert to a TRUE/FALSE result.
156 CHECK_C_SOURCE_COMPILES("#include \"${APR_INCLUDE_DIR}/apr.h\"
157 #include \"${APR_INCLUDE_DIR}/apr_ldap.h\"
158 int main() {
159 #if !APR_HAS_LDAP
160 #error gobble
161 #endif
162 return 1;}" APR_HAS_LDAP)
163 IF(${APR_HAS_LDAP})
164   SET(APR_HAS_LDAP TRUE)
165 ELSE()
166   SET(APR_HAS_LDAP FALSE)
167 ENDIF()
168
169 # See if we have OpenSSL 1.0.2
170 SET(HAVE_OPENSSL_102 FALSE)
171 IF(OPENSSL_FOUND)
172   STRING(REGEX REPLACE "^1\\.([0-9]+)\\.[0-9]+" "\\1" minor_ver ${OPENSSL_VERSION})
173   STRING(REGEX REPLACE "^1\\.[0-9]+\\.([0-9]+)" "\\1" patch_ver ${OPENSSL_VERSION})
174   IF(${minor_ver} GREATER "0")
175     SET(HAVE_OPENSSL_102 TRUE)
176   ELSEIF(${patch_ver} GREATER "1")
177     SET(HAVE_OPENSSL_102 TRUE)
178   ENDIF()
179 ENDIF()
180
181 # See if nghttp2 exists in a configured or defaulted location
182 SET(NGHTTP2_FOUND TRUE)
183 IF(EXISTS "${NGHTTP2_INCLUDE_DIR}/nghttp2/nghttp2.h")
184   FOREACH(onelib ${NGHTTP2_LIBRARIES})
185     IF(NOT EXISTS ${onelib})
186       SET(NGHTTP2_FOUND FALSE)
187     ENDIF()
188   ENDFOREACH()
189 ELSE()
190   SET(NGHTTP2_FOUND FALSE)
191 ENDIF()
192
193 MESSAGE(STATUS "")
194 MESSAGE(STATUS "Summary of feature detection:")
195 MESSAGE(STATUS "")
196 MESSAGE(STATUS "LIBXML2_FOUND ............ : ${LIBXML2_FOUND}")
197 MESSAGE(STATUS "LUA51_FOUND .............. : ${LUA51_FOUND}")
198 MESSAGE(STATUS "NGHTTP2_FOUND ............ : ${NGHTTP2_FOUND}")
199 MESSAGE(STATUS "OPENSSL_FOUND ............ : ${OPENSSL_FOUND}")
200 MESSAGE(STATUS "ZLIB_FOUND ............... : ${ZLIB_FOUND}")
201 MESSAGE(STATUS "APR_HAS_LDAP ............. : ${APR_HAS_LDAP}")
202 MESSAGE(STATUS "APR_HAS_XLATE ............ : ${APR_HAS_XLATE}")
203 MESSAGE(STATUS "APU_HAVE_CRYPTO .......... : ${APU_HAVE_CRYPTO}")
204 MESSAGE(STATUS "")
205
206 # Options for each available module
207 #   "A" ("A"ctive) means installed and active in default .conf, fail if can't be built
208 #   "I" ("I"nactive) means installed and inactive (LoadModule commented out) in default .conf, fail if can't be built
209 #   "O" ("O"mit) means not installed, no LoadModule
210 #   "a" - like "A", but ignore with a warning if any prereqs aren't available
211 #   "i" - like "I", but ignore with a warning if any prereqs aren't available
212
213 # Current heuristic for default enablement:
214 #
215 #   Module requires a prereq and           -> O
216 #   finding/usingprereq isn't implemented
217 #   yet
218 #
219 #   Module is included by default in       -> a if it has prereqs, A otherwise
220 #   autoconf-based build 
221 #
222 #   Module is included in                  -> i if it has prereqs, I otherwise
223 #   --enable-modules=most 
224 #
225 #   Otherwise                              -> O
226 #
227 SET(MODULE_LIST
228   "modules/aaa/mod_access_compat+A+mod_access compatibility"
229   "modules/aaa/mod_allowhandlers+I+restrict allowed handlers"
230   "modules/aaa/mod_allowmethods+I+restrict allowed HTTP methods"
231   "modules/aaa/mod_auth_basic+A+basic authentication"
232   "modules/aaa/mod_auth_digest+I+RFC2617 Digest authentication"
233   "modules/aaa/mod_auth_form+I+form authentication"
234   "modules/aaa/mod_authn_anon+I+anonymous user authentication control"
235   "modules/aaa/mod_authn_core+A+core authentication module"
236   "modules/aaa/mod_authn_dbd+I+SQL-based authentication control"
237   "modules/aaa/mod_authn_dbm+I+DBM-based authentication control"
238   "modules/aaa/mod_authn_file+A+file-based authentication control"
239   "modules/aaa/mod_authn_socache+I+Cached authentication control"
240   "modules/aaa/mod_authnz_fcgi+I+FastCGI authorizer-based authentication and authorization"
241   "modules/aaa/mod_authnz_ldap+i+LDAP based authentication"
242   "modules/aaa/mod_authz_core+A+core authorization provider vector module"
243   "modules/aaa/mod_authz_dbd+I+SQL based authorization and Login/Session support"
244   "modules/aaa/mod_authz_dbm+I+DBM-based authorization control"
245   "modules/aaa/mod_authz_groupfile+A+'require group' authorization control"
246   "modules/aaa/mod_authz_host+A+host-based authorization control"
247   "modules/aaa/mod_authz_owner+I+'require file-owner' authorization control"
248   "modules/aaa/mod_authz_user+A+'require user' authorization control"
249   "modules/apreq/mod_apreq+i+Apache Request Filter"
250   "modules/arch/win32/mod_isapi+I+isapi extension support"
251   "modules/cache/mod_cache+I+dynamic file caching.  At least one storage management module (e.g. mod_cache_disk) is also necessary."
252   "modules/cache/mod_cache_disk+I+disk caching module"
253   "modules/cache/mod_cache_socache+I+shared object caching module"
254   "modules/cache/mod_file_cache+I+File cache"
255   "modules/cache/mod_socache_dbm+I+dbm small object cache provider"
256   "modules/cache/mod_socache_dc+O+distcache small object cache provider"
257   "modules/cache/mod_socache_memcache+I+memcache small object cache provider"
258   "modules/cache/mod_socache_shmcb+I+ shmcb small object cache provider"
259   "modules/cluster/mod_heartbeat+I+Generates Heartbeats"
260   "modules/cluster/mod_heartmonitor+I+Collects Heartbeats"
261   "modules/core/mod_macro+I+Define and use macros in configuration files"
262   "modules/core/mod_watchdog+I+Watchdog module"
263   "modules/database/mod_dbd+I+Apache DBD Framework"
264   "modules/dav/fs/mod_dav_fs+I+DAV provider for the filesystem."
265   "modules/dav/lock/mod_dav_lock+I+DAV provider for generic locking"
266   "modules/dav/main/mod_dav+I+WebDAV protocol handling."
267   "modules/debugging/mod_bucketeer+O+buckets manipulation filter.  Useful only for developers and testing purposes."
268   "modules/debugging/mod_dumpio+I+I/O dump filter"
269   "modules/debugging/mod_firehose+O+Firehose dump filter"
270   "modules/echo/mod_echo+O+ECHO server"
271   "modules/examples/mod_case_filter+O+Example uppercase conversion filter"
272   "modules/examples/mod_case_filter_in+O+Example uppercase conversion input filter"
273   "modules/examples/mod_example_hooks+O+Example hook callback handler module"
274   "modules/examples/mod_example_ipc+O+Example of shared memory and mutex usage"
275   "modules/filters/mod_buffer+I+Filter Buffering"
276   "modules/filters/mod_charset_lite+i+character set translation"
277   "modules/filters/mod_data+O+RFC2397 data encoder"
278   "modules/filters/mod_deflate+i+Deflate transfer encoding support"
279   "modules/filters/mod_ext_filter+I+external filter module"
280   "modules/filters/mod_filter+A+Smart Filtering"
281   "modules/filters/mod_include+I+Server Side Includes"
282   "modules/filters/mod_proxy_html+i+Fix HTML Links in a Reverse Proxy"
283   "modules/filters/mod_ratelimit+I+Output Bandwidth Limiting"
284   "modules/filters/mod_reflector+O+Reflect request through the output filter stack"
285   "modules/filters/mod_reqtimeout+A+Limit time waiting for request from client"
286   "modules/filters/mod_request+I+Request Body Filtering"
287   "modules/filters/mod_sed+I+filter request and/or response bodies through sed"
288   "modules/filters/mod_substitute+I+response content rewrite-like filtering"
289   "modules/filters/mod_xml2enc+i+i18n support for markup filters"
290   "modules/generators/mod_asis+I+as-is filetypes"
291   "modules/generators/mod_autoindex+A+directory listing"
292   "modules/generators/mod_cgi+I+CGI scripts"
293   "modules/generators/mod_info+I+server information"
294   "modules/generators/mod_status+I+process/thread monitoring"
295   "modules/http/mod_mime+A+mapping of file-extension to MIME.  Disabling this module is normally not recommended."
296   "modules/http2/mod_http2+i+HTTP/2 protocol support"
297   "modules/ldap/mod_ldap+i+LDAP caching and connection pooling services"
298   "modules/loggers/mod_log_config+A+logging configuration.  You won't be able to log requests to the server without this module."
299   "modules/loggers/mod_log_debug+I+configurable debug logging"
300   "modules/loggers/mod_log_forensic+I+forensic logging"
301   "modules/loggers/mod_logio+I+input and output logging"
302   "modules/lua/mod_lua+i+Apache Lua Framework"
303   "modules/mappers/mod_actions+I+Action triggering on requests"
304   "modules/mappers/mod_alias+A+mapping of requests to different filesystem parts"
305   "modules/mappers/mod_dir+A+directory request handling"
306   "modules/mappers/mod_imagemap+I+server-side imagemaps"
307   "modules/mappers/mod_negotiation+I+content negotiation"
308   "modules/mappers/mod_rewrite+I+rule based URL manipulation"
309   "modules/mappers/mod_speling+I+correct common URL misspellings"
310   "modules/mappers/mod_userdir+I+mapping of requests to user-specific directories"
311   "modules/mappers/mod_vhost_alias+I+mass virtual hosting module"
312   "modules/metadata/mod_cern_meta+O+CERN-type meta files"
313   "modules/metadata/mod_env+A+clearing/setting of ENV vars"
314   "modules/metadata/mod_expires+I+Expires header control"
315   "modules/metadata/mod_headers+A+HTTP header control"
316   "modules/metadata/mod_ident+O+RFC 1413 identity check"
317   "modules/metadata/mod_mime_magic+O+automagically determining MIME type"
318   "modules/metadata/mod_remoteip+I+translate header contents to an apparent client remote_ip"
319   "modules/metadata/mod_setenvif+A+basing ENV vars on headers"
320   "modules/metadata/mod_unique_id+I+per-request unique ids"
321   "modules/metadata/mod_usertrack+I+user-session tracking"
322   "modules/metadata/mod_version+A+determining httpd version in config files"
323   "modules/proxy/balancers/mod_lbmethod_bybusyness+I+Apache proxy Load balancing by busyness"
324   "modules/proxy/balancers/mod_lbmethod_byrequests+I+Apache proxy Load balancing by request counting"
325   "modules/proxy/balancers/mod_lbmethod_bytraffic+I+Apache proxy Load balancing by traffic counting"
326   "modules/proxy/balancers/mod_lbmethod_heartbeat+I+Apache proxy Load balancing from Heartbeats"
327   "modules/proxy/mod_proxy_ajp+I+Apache proxy AJP module.  Requires and is enabled by --enable-proxy."
328   "modules/proxy/mod_proxy_balancer+I+Apache proxy BALANCER module.  Requires and is enabled by --enable-proxy."
329   "modules/proxy/mod_proxy+I+Apache proxy module"
330   "modules/proxy/mod_proxy_connect+I+Apache proxy CONNECT module.  Requires and is enabled by --enable-proxy."
331   "modules/proxy/mod_proxy_express+I+mass reverse-proxy module. Requires --enable-proxy."
332   "modules/proxy/mod_proxy_fcgi+I+Apache proxy FastCGI module.  Requires and is enabled by --enable-proxy."
333   "modules/proxy/mod_proxy_ftp+I+Apache proxy FTP module.  Requires and is enabled by --enable-proxy."
334   "modules/proxy/mod_proxy_http+I+Apache proxy HTTP module.  Requires and is enabled by --enable-proxy."
335   "modules/proxy/mod_proxy_scgi+I+Apache proxy SCGI module.  Requires and is enabled by --enable-proxy."
336   "modules/proxy/mod_proxy_wstunnel+I+Apache proxy Websocket Tunnel module.  Requires and is enabled by --enable-proxy."
337   "modules/http2/mod_proxy_http2+i+Apache proxy HTTP/2 module.  Requires --enable-proxy."
338   "modules/proxy/mod_serf+O+Reverse proxy module using Serf"
339   "modules/session/mod_session+I+session module"
340   "modules/session/mod_session_cookie+I+session cookie module"
341   "modules/session/mod_session_crypto+i+session crypto module"
342   "modules/session/mod_session_dbd+I+session dbd module"
343   "modules/slotmem/mod_slotmem_plain+I+slotmem provider that uses plain memory"
344   "modules/slotmem/mod_slotmem_shm+I+slotmem provider that uses shared memory"
345   "modules/ssl/mod_ssl+i+SSL/TLS support"
346   "modules/ssl/mod_ssl_ct+O+Certificate Transparency support (requires OpenSSL >= 1.0.2)"
347   "modules/test/mod_dialup+O+rate limits static files to dialup modem speeds"
348   "modules/test/mod_optional_fn_export+O+example optional function exporter"
349   "modules/test/mod_optional_fn_import+O+example optional function importer"
350   "modules/test/mod_optional_hook_export+O+example optional hook exporter"
351   "modules/test/mod_optional_hook_import+O+example optional hook importer"
352   "modules/test/mod_policy+I+HTTP protocol compliance filters"
353 )
354
355 # Track which modules actually built have APIs to link against.
356 SET(installed_mod_libs_exps)
357
358 # Define extra definitions, sources, headers, etc. required by some modules.
359 # This could be included in the master list of modules above, though it 
360 # certainly would get a lot more unreadable.
361 SET(mod_apreq_extra_defines          APREQ_DECLARE_EXPORT)
362 SET(mod_apreq_extra_sources          modules/apreq/handle.c)
363 SET(mod_apreq_main_source            modules/apreq/filter.c)
364 SET(mod_authz_dbd_extra_defines      AUTHZ_DBD_DECLARE_EXPORT)
365 SET(mod_authnz_ldap_requires         APR_HAS_LDAP)
366 SET(mod_authnz_ldap_extra_libs       mod_ldap)
367 SET(mod_cache_extra_defines          CACHE_DECLARE_EXPORT)
368 SET(mod_cache_extra_sources
369   modules/cache/cache_storage.c      modules/cache/cache_util.c
370 )
371 SET(mod_cache_install_lib 1)
372 SET(mod_cache_disk_extra_libs        mod_cache)
373 SET(mod_cache_socache_extra_libs     mod_cache)
374 SET(mod_charset_lite_requires        APR_HAS_XLATE)
375 SET(mod_dav_extra_defines            DAV_DECLARE_EXPORT)
376 SET(mod_dav_extra_sources
377   modules/dav/main/liveprop.c        modules/dav/main/props.c
378   modules/dav/main/std_liveprop.c    modules/dav/main/providers.c
379   modules/dav/main/util.c            modules/dav/main/util_lock.c
380 )
381 SET(mod_dav_install_lib 1)
382 SET(mod_dav_fs_extra_sources
383   modules/dav/fs/dbm.c               modules/dav/fs/lock.c
384   modules/dav/fs/repos.c
385 )
386 SET(mod_dav_fs_extra_libs            mod_dav)
387 SET(mod_dav_lock_extra_sources       modules/dav/lock/locks.c)
388 SET(mod_dav_lock_extra_libs          mod_dav)
389 SET(mod_dbd_extra_defines            DBD_DECLARE_EXPORT)
390 SET(mod_deflate_requires             ZLIB_FOUND)
391 IF(ZLIB_FOUND)
392   SET(mod_deflate_extra_includes       ${ZLIB_INCLUDE_DIR})
393   SET(mod_deflate_extra_libs           ${ZLIB_LIBRARIES})
394 ENDIF()
395 SET(mod_firehose_requires            SOMEONE_TO_MAKE_IT_COMPILE_ON_WINDOWS)
396 SET(mod_heartbeat_extra_libs         mod_watchdog)
397 SET(mod_http2_requires               NGHTTP2_FOUND)
398 SET(mod_http2_extra_defines          ssize_t=long)
399 SET(mod_http2_extra_libs             ${NGHTTP2_LIBRARIES})
400 SET(mod_http2_extra_sources
401   modules/http2/h2_alt_svc.c         modules/http2/h2_bucket_eoc.c
402   modules/http2/h2_bucket_eos.c      modules/http2/h2_config.c
403   modules/http2/h2_conn.c            modules/http2/h2_conn_io.c
404   modules/http2/h2_ctx.c             modules/http2/h2_filter.c
405   modules/http2/h2_from_h1.c         modules/http2/h2_h2.c
406   modules/http2/h2_io.c              modules/http2/h2_io_set.c
407   modules/http2/h2_mplx.c            modules/http2/h2_push.c
408   modules/http2/h2_request.c         modules/http2/h2_response.c
409   modules/http2/h2_session.c         modules/http2/h2_stream.c 
410   modules/http2/h2_stream_set.c      modules/http2/h2_switch.c
411   modules/http2/h2_task.c            modules/http2/h2_task_input.c
412   modules/http2/h2_task_output.c     modules/http2/h2_task_queue.c
413   modules/http2/h2_util.c            modules/http2/h2_worker.c
414   modules/http2/h2_workers.c
415 )
416 SET(mod_ldap_extra_defines           LDAP_DECLARE_EXPORT)
417 SET(mod_ldap_extra_libs              wldap32)
418 SET(mod_ldap_extra_sources
419   modules/ldap/util_ldap_cache.c     modules/ldap/util_ldap_cache_mgr.c
420 )
421 SET(mod_ldap_main_source             modules/ldap/util_ldap.c)
422 SET(mod_ldap_requires                APR_HAS_LDAP)
423 SET(mod_lua_extra_defines            AP_LUA_DECLARE_EXPORT)
424 SET(mod_lua_extra_includes           ${LUA_INCLUDE_DIR})
425 SET(mod_lua_extra_libs               ${LUA_LIBRARIES})
426 SET(mod_lua_extra_sources
427   modules/lua/lua_apr.c              modules/lua/lua_config.c
428   modules/lua/lua_passwd.c           modules/lua/lua_request.c
429   modules/lua/lua_vmprep.c           modules/lua/lua_dbd.c
430 )
431 SET(mod_lua_requires                 LUA51_FOUND)
432 SET(mod_optional_hook_export_extra_defines AP_DECLARE_EXPORT) # bogus reuse of core API prefix
433 SET(mod_proxy_extra_defines          PROXY_DECLARE_EXPORT)
434 SET(mod_proxy_extra_sources          modules/proxy/proxy_util.c)
435 SET(mod_proxy_install_lib 1)
436 SET(mod_proxy_ajp_extra_sources
437   modules/proxy/ajp_header.c         modules/proxy/ajp_link.c
438   modules/proxy/ajp_msg.c            modules/proxy/ajp_utils.c
439 )
440 SET(mod_proxy_ajp_extra_libs         mod_proxy)
441 SET(mod_proxy_balancer_extra_libs    mod_proxy)
442 SET(mod_proxy_connect_extra_libs     mod_proxy)
443 SET(mod_proxy_express_extra_libs     mod_proxy)
444 SET(mod_proxy_fcgi_extra_libs        mod_proxy)
445 SET(mod_proxy_ftp_extra_libs         mod_proxy)
446 SET(mod_proxy_http_extra_libs        mod_proxy)
447 SET(mod_proxy_html_requires          LIBXML2_FOUND)
448 IF(LIBXML2_FOUND)
449   SET(mod_proxy_html_extra_includes    "${LIBXML2_INCLUDE_DIR};${LIBXML2_ICONV_INCLUDE_DIR}")
450   SET(mod_proxy_html_extra_libs        "${LIBXML2_LIBRARIES};${LIBXML2_ICONV_LIBRARIES}")
451 ENDIF()
452 SET(mod_proxy_scgi_extra_libs        mod_proxy)
453 SET(mod_proxy_wstunnel_extra_libs    mod_proxy)
454 SET(mod_proxy_http2_requires               NGHTTP2_FOUND)
455 SET(mod_proxy_http2_extra_defines          ssize_t=long)
456 SET(mod_proxy_http2_extra_libs             ${NGHTTP2_LIBRARIES})
457 SET(mod_proxy_http2_extra_sources
458   modules/http2/h2_proxy_session.c   modules/http2/h2_request.c
459   modules/http2/h2_util.c
460 )
461 SET(mod_proxy_http2_extra_libs       mod_proxy)
462 SET(mod_ratelimit_extra_defines      AP_RL_DECLARE_EXPORT)
463 SET(mod_sed_extra_sources
464   modules/filters/regexp.c           modules/filters/sed0.c
465   modules/filters/sed1.c
466 )
467 SET(mod_serf_requires                AN_UNIMPLEMENTED_SUPPORT_LIBRARY_REQUIREMENT)
468 SET(mod_session_extra_defines        SESSION_DECLARE_EXPORT)
469 SET(mod_session_install_lib 1)
470 SET(mod_session_cookie_extra_libs    mod_session)
471 SET(mod_session_crypto_requires      APU_HAVE_CRYPTO)
472 SET(mod_session_crypto_extra_libs    mod_session)
473 SET(mod_session_dbd_extra_libs       mod_session)
474 SET(mod_socache_dc_requires          AN_UNIMPLEMENTED_SUPPORT_LIBRARY_REQUIREMENT)
475 SET(mod_ssl_extra_defines            SSL_DECLARE_EXPORT)
476 SET(mod_ssl_requires                 OPENSSL_FOUND)
477 IF(OPENSSL_FOUND)
478   SET(mod_ssl_extra_includes           ${OPENSSL_INCLUDE_DIR})
479   SET(mod_ssl_extra_libs               ${OPENSSL_LIBRARIES})
480 ENDIF()
481 SET(mod_ssl_extra_sources
482   modules/ssl/ssl_engine_config.c
483   modules/ssl/ssl_engine_init.c      modules/ssl/ssl_engine_io.c
484   modules/ssl/ssl_engine_kernel.c    modules/ssl/ssl_engine_log.c
485   modules/ssl/ssl_engine_mutex.c     modules/ssl/ssl_engine_ocsp.c
486   modules/ssl/ssl_engine_pphrase.c   modules/ssl/ssl_engine_rand.c
487   modules/ssl/ssl_engine_vars.c      modules/ssl/ssl_scache.c
488   modules/ssl/ssl_util.c             modules/ssl/ssl_util_ocsp.c
489   modules/ssl/ssl_util_ssl.c         modules/ssl/ssl_util_stapling.c
490 )
491 SET(mod_ssl_ct_requires              HAVE_OPENSSL_102)
492 IF(OPENSSL_FOUND)
493   SET(mod_ssl_ct_extra_includes        ${OPENSSL_INCLUDE_DIR})
494   SET(mod_ssl_ct_extra_libs            ${OPENSSL_LIBRARIES})
495 ENDIF()
496 SET(mod_ssl_ct_extra_sources
497   modules/ssl/ssl_ct_log_config.c
498   modules/ssl/ssl_ct_sct.c
499   modules/ssl/ssl_ct_util.c
500 )
501 SET(mod_status_extra_defines         STATUS_DECLARE_EXPORT)
502 SET(mod_watchdog_install_lib 1)
503 SET(mod_xml2enc_requires             LIBXML2_FOUND)
504 IF(LIBXML2_FOUND)
505   SET(mod_xml2enc_extra_includes     "${LIBXML2_INCLUDE_DIR};${LIBXML2_ICONV_INCLUDE_DIR}")
506   SET(mod_xml2enc_extra_libs         "${LIBXML2_LIBRARIES};${LIBXML2_ICONV_LIBRARIES}")
507 ENDIF()
508 SET(mod_watchdog_extra_defines       AP_WD_DECLARE_EXPORT)
509
510 SET(MODULE_PATHS)
511 FOREACH (modinfo ${MODULE_LIST})
512   STRING(REGEX REPLACE "([^+]*)\\+([^+]*)\\+([^+]*)" "\\1;\\2;\\3" modinfolist ${modinfo})
513   SET(path_to_module)
514   SET(defaultenable)
515   SET(helptext)
516   FOREACH(i ${modinfolist})
517     IF("${path_to_module}" STREQUAL "")
518       SET(path_to_module ${i})
519     ELSEIF("${defaultenable}" STREQUAL "")
520       SET(defaultenable ${i})
521     ELSEIF("${helptext}" STREQUAL "")
522       SET(helptext ${i})
523     ELSE()
524       MESSAGE(FATAL_ERROR "Unexpected field or plus sign in >${modinfo}<")
525     ENDIF()
526   ENDFOREACH()
527
528   # MESSAGE("       path to module: ${path_to_module}")
529   # MESSAGE("enablement by default: ${defaultenable}")
530   # MESSAGE("            help text: ${helptext}")
531
532   STRING(REGEX REPLACE ".*/(mod_[^\\+]+)" "\\1" mod_name       ${path_to_module})
533   STRING(REGEX REPLACE "mod_(.*)"         "\\1" mod_shortname  ${mod_name})
534
535   STRING(TOUPPER "ENABLE_${mod_shortname}" mod_option_name)
536
537   SET(${mod_option_name} ${defaultenable} CACHE STRING ${helptext})
538   SET(MODULE_PATHS "${MODULE_PATHS};${path_to_module}")
539
540 ENDFOREACH()
541
542 SET(install_targets)
543 SET(install_bin_pdb)
544 SET(install_modules) # special handling vs. other installed targets
545 SET(install_modules_pdb)
546 SET(builtin_module_shortnames "win32 mpm_winnt http so") # core added automatically
547 SET(extra_builtin_modules) # the ones specified with -DWITH_MODULES=
548
549 IF(WITH_MODULES) # modules statically linked with the server
550   STRING(REPLACE "," ";" WITH_MODULE_LIST ${WITH_MODULES})
551   FOREACH(static_mod ${WITH_MODULE_LIST})
552     STRING(REGEX MATCH   "[^/]+\\.c"           mod_basename    ${static_mod})
553     STRING(REGEX REPLACE "^mod_(.*)\\.c" "\\1" mod_module_name ${mod_basename})     
554     SET(builtin_module_shortnames "${builtin_module_shortnames} ${mod_module_name}")
555     CONFIGURE_FILE(${static_mod} ${PROJECT_BINARY_DIR}/ COPYONLY)
556     SET(extra_builtin_modules ${extra_builtin_modules} ${PROJECT_BINARY_DIR}/${mod_basename})
557   ENDFOREACH()
558   EXECUTE_PROCESS(COMMAND cmd /c "echo ${builtin_module_shortnames}| awk -f ${CMAKE_CURRENT_SOURCE_DIR}/build/build-modules-c.awk > ${PROJECT_BINARY_DIR}/modules.c" RESULT_VARIABLE rv)
559   IF(rv)
560     MESSAGE(FATAL_ERROR "build-modules-c.awk failed (${rv})")
561   ENDIF()
562 ELSE()
563   # no extra built-in modules; use the default modules.c to avoid the awk prereq
564   CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/os/win32/modules.c ${PROJECT_BINARY_DIR}/ COPYONLY)
565 ENDIF()
566
567 # for easy reference from .dll/.so builds
568 CONFIGURE_FILE(os/win32/BaseAddr.ref ${PROJECT_BINARY_DIR}/ COPYONLY)
569
570 ADD_EXECUTABLE(gen_test_char server/gen_test_char.c)
571 GET_TARGET_PROPERTY(GEN_TEST_CHAR_EXE gen_test_char LOCATION)
572 ADD_CUSTOM_COMMAND(
573   COMMENT "Generating character tables, test_char.h, for current locale"
574   DEPENDS gen_test_char
575   COMMAND ${GEN_TEST_CHAR_EXE} > ${PROJECT_BINARY_DIR}/test_char.h
576   OUTPUT ${PROJECT_BINARY_DIR}/test_char.h
577 )
578 ADD_CUSTOM_TARGET(
579   test_char_header ALL
580   DEPENDS ${PROJECT_BINARY_DIR}/test_char.h
581 )
582
583 SET(HTTPD_MAIN_SOURCES
584   server/main.c
585 )
586
587 SET(LIBHTTPD_SOURCES
588   ${extra_builtin_modules}
589   ${PROJECT_BINARY_DIR}/modules.c
590   server/apreq_cookie.c
591   server/apreq_error.c
592   server/apreq_module.c
593   server/apreq_module_cgi.c
594   server/apreq_module_custom.c
595   server/apreq_param.c
596   server/apreq_parser.c
597   server/apreq_parser_header.c
598   server/apreq_parser_multipart.c
599   server/apreq_parser_urlencoded.c
600   server/apreq_util.c
601   modules/arch/win32/mod_win32.c
602   modules/core/mod_so.c
603   modules/http/byterange_filter.c
604   modules/http/chunk_filter.c
605   modules/http/http_core.c
606   modules/http/http_etag.c
607   modules/http/http_filters.c
608   modules/http/http_protocol.c
609   modules/http/http_request.c
610   os/win32/ap_regkey.c
611   os/win32/util_win32.c
612   server/buildmark.c
613   server/config.c
614   server/connection.c
615   server/core.c
616   server/core_filters.c
617   server/eoc_bucket.c
618   server/eor_bucket.c
619   server/error_bucket.c
620   server/listen.c
621   server/log.c
622   server/mpm/winnt/child.c
623   server/mpm/winnt/mpm_winnt.c
624   server/mpm/winnt/nt_eventlog.c
625   server/mpm/winnt/service.c
626   server/mpm_common.c
627   server/protocol.c
628   server/provider.c
629   server/request.c
630   server/scoreboard.c
631   server/util.c
632   server/util_cfgtree.c
633   server/util_cookies.c
634   server/util_expr_eval.c
635   server/util_expr_parse.c
636   server/util_fcgi.c
637   server/util_expr_scan.c
638   server/util_filter.c
639   server/util_md5.c
640   server/util_mutex.c
641   server/util_pcre.c
642   server/util_regex.c
643   server/util_script.c
644   server/util_time.c
645   server/util_xml.c
646   server/vhost.c
647 )
648
649 CONFIGURE_FILE(os/win32/win32_config_layout.h
650                ${PROJECT_BINARY_DIR}/ap_config_layout.h)
651
652 SET(HTTPD_INCLUDE_DIRECTORIES
653   ${PROJECT_BINARY_DIR}
654   ${EXTRA_INCLUDES}
655   # see discussion in cmake bug 13188 regarding oddities with relative paths
656   ${CMAKE_CURRENT_SOURCE_DIR}/include
657   ${CMAKE_CURRENT_SOURCE_DIR}/os/win32
658   ${CMAKE_CURRENT_SOURCE_DIR}/modules/core
659   ${CMAKE_CURRENT_SOURCE_DIR}/modules/database
660   ${CMAKE_CURRENT_SOURCE_DIR}/modules/dav/main
661   ${CMAKE_CURRENT_SOURCE_DIR}/modules/filters
662   ${CMAKE_CURRENT_SOURCE_DIR}/modules/generators
663   ${CMAKE_CURRENT_SOURCE_DIR}/modules/proxy
664   ${CMAKE_CURRENT_SOURCE_DIR}/modules/session
665   ${CMAKE_CURRENT_SOURCE_DIR}/modules/ssl
666   ${CMAKE_CURRENT_SOURCE_DIR}/server
667   ${APR_INCLUDE_DIR}
668   ${PCRE_INCLUDE_DIR}
669 )
670
671 # The .h files we install from outside the main include directory
672 # largely parallel the include directories above.
673 SET(other_installed_h
674   ${PROJECT_BINARY_DIR}/ap_config_layout.h
675   ${CMAKE_CURRENT_SOURCE_DIR}/os/win32/os.h
676   ${CMAKE_CURRENT_SOURCE_DIR}/modules/cache/mod_cache.h
677   ${CMAKE_CURRENT_SOURCE_DIR}/modules/cache/cache_common.h
678   ${CMAKE_CURRENT_SOURCE_DIR}/modules/core/mod_so.h
679   ${CMAKE_CURRENT_SOURCE_DIR}/modules/core/mod_watchdog.h
680   ${CMAKE_CURRENT_SOURCE_DIR}/modules/database/mod_dbd.h
681   ${CMAKE_CURRENT_SOURCE_DIR}/modules/dav/main/mod_dav.h
682   ${CMAKE_CURRENT_SOURCE_DIR}/modules/filters/mod_include.h
683   ${CMAKE_CURRENT_SOURCE_DIR}/modules/filters/mod_xml2enc.h
684   ${CMAKE_CURRENT_SOURCE_DIR}/modules/generators/mod_cgi.h
685   ${CMAKE_CURRENT_SOURCE_DIR}/modules/generators/mod_status.h
686   ${CMAKE_CURRENT_SOURCE_DIR}/modules/loggers/mod_log_config.h
687   ${CMAKE_CURRENT_SOURCE_DIR}/modules/mappers/mod_rewrite.h
688   ${CMAKE_CURRENT_SOURCE_DIR}/modules/proxy/mod_proxy.h
689   ${CMAKE_CURRENT_SOURCE_DIR}/modules/session/mod_session.h
690   ${CMAKE_CURRENT_SOURCE_DIR}/modules/ssl/mod_ssl.h
691   ${CMAKE_CURRENT_SOURCE_DIR}/modules/ssl/mod_ssl_openssl.h
692 )
693 # When mod_serf is buildable, don't forget to copy modules/proxy/mod_serf.h
694
695 INCLUDE_DIRECTORIES(${HTTPD_INCLUDE_DIRECTORIES})
696
697 SET(HTTPD_SYSTEM_LIBS
698   ws2_32
699   mswsock
700 )
701
702 ###########   HTTPD MODULES     ############
703 SET(LoadModules)
704 SET(mods_built_and_loaded)
705 SET(mods_built_but_not_loaded)
706 SET(mods_omitted)
707 FOREACH (mod ${MODULE_PATHS})
708   # Build different forms of the module name; e.g., 
709   #   mod_name->mod_cgi, mod_module_name->cgi_module, mod_shortname->cgi
710   STRING(REGEX REPLACE ".*/(mod_[^\\+]+)" "\\1"        mod_name        ${mod})
711   STRING(REGEX REPLACE "mod_(.*)"         "\\1_module" mod_module_name ${mod_name})
712   STRING(REGEX REPLACE "mod_(.*)"         "\\1"        mod_shortname   ${mod_name})
713
714   # Is it enabled?
715   STRING(TOUPPER "ENABLE_${mod_shortname}" enable_mod)
716   SET(enable_mod_val ${${enable_mod}})
717
718   # Is ENABLE_MODULES set to a higher value?
719   GET_MOD_ENABLE_RANK(${mod_name} ${enable_mod_val} this_mod_rank)
720   IF(this_mod_rank LESS enable_modules_rank)
721     # Use the value from ENABLE_MODULES
722     SET(enable_mod_val ${ENABLE_MODULES})
723   ENDIF()
724
725   IF(NOT ${enable_mod_val} STREQUAL "O") # build of module is desired
726     SET(mod_requires "${mod_name}_requires")
727     STRING(TOUPPER ${enable_mod_val} enable_mod_val_upper)
728     IF(NOT ${${mod_requires}} STREQUAL "") # module has some prerequisite
729       IF(NOT ${${mod_requires}}) # prerequisite doesn't exist
730         IF(NOT ${enable_mod_val} STREQUAL ${enable_mod_val_upper}) # lower case, so optional based on prereq
731           MESSAGE(STATUS "${mod_name} was requested but couldn't be built due to a missing prerequisite (${${mod_requires}})")
732           SET(enable_mod_val_upper "O") # skip due to missing prerequisite
733         ELSE() # must be upper case "A" or "I" (or coding error above)
734           MESSAGE(FATAL_ERROR "${mod_name} was requested but couldn't be built due to a missing prerequisite (${${mod_requires}})")
735         ENDIF()
736       ENDIF()
737     ENDIF()
738     # map a->A, i->I, O->O for remaining logic since prereq checking is over
739     SET(enable_mod_val ${enable_mod_val_upper})
740   ENDIF()
741   
742   IF(${enable_mod_val} STREQUAL "O")
743     # ignore
744     SET(mods_omitted ${mods_omitted} ${mod_name})
745   ELSE()
746     # Handle whether or not the LoadModule is commented out.
747     IF(${enable_mod_val} STREQUAL "A")
748       SET(LoadModules "${LoadModules}LoadModule ${mod_module_name} modules/${mod_name}.so\n")
749       SET(mods_built_and_loaded ${mods_built_and_loaded} ${mod_name})
750     ELSEIF(${enable_mod_val} STREQUAL "I")
751       SET(LoadModules "${LoadModules}# LoadModule ${mod_module_name} modules/${mod_name}.so\n")
752       SET(mods_built_but_not_loaded ${mods_built_but_not_loaded} ${mod_name})
753     ELSE()
754       MESSAGE(FATAL_ERROR "${enable_mod} must be set to \"A\", \"I\", or \"O\" instead of \"${enable_mod_val}\"")
755     ENDIF()
756
757     # Handle building it.
758     SET(mod_main_source "${mod_name}_main_source")
759     SET(mod_extra_sources "${mod_name}_extra_sources")
760
761     IF("${${mod_main_source}}" STREQUAL "")
762       SET(tmp_mod_main_source "${mod}.c")
763     ELSE()
764       SET(tmp_mod_main_source ${${mod_main_source}})
765     ENDIF()
766     SET(all_mod_sources ${tmp_mod_main_source} ${${mod_extra_sources}})
767     ADD_LIBRARY(${mod_name} SHARED ${all_mod_sources} build/win32/httpd.rc)
768     SET(install_modules ${install_modules} ${mod_name})
769     SET(install_modules_pdb ${install_modules_pdb} "${PROJECT_BINARY_DIR}/${mod_name}.pdb")
770     IF("${${mod_name}_install_lib}")
771       SET(installed_mod_libs_exps
772           ${installed_mod_libs_exps}
773           "${PROJECT_BINARY_DIR}/${mod_name}.lib"
774           "${PROJECT_BINARY_DIR}/${mod_name}.exp"
775       )
776     ENDIF()
777     SET(mod_extra_libs "${mod_name}_extra_libs")
778     SET_TARGET_PROPERTIES(${mod_name} PROPERTIES
779       SUFFIX .so
780       LINK_FLAGS /base:@${PROJECT_BINARY_DIR}/BaseAddr.ref,${mod_name}.so
781     )
782     TARGET_LINK_LIBRARIES(${mod_name} ${${mod_extra_libs}} libhttpd ${EXTRA_LIBS} ${APR_LIBRARIES} ${HTTPD_SYSTEM_LIBS})
783     DEFINE_WITH_BLANKS(define_long_name "LONG_NAME" "${mod_name} for Apache HTTP Server")
784     SET_TARGET_PROPERTIES(${mod_name} PROPERTIES COMPILE_FLAGS "${define_long_name} -DBIN_NAME=${mod_name}.so ${EXTRA_COMPILE_FLAGS}")
785
786     # Extra defines?
787     SET(mod_extra_defines "${mod_name}_extra_defines")
788     IF(NOT ${${mod_extra_defines}} STREQUAL "")
789       SET_TARGET_PROPERTIES(${mod_name} PROPERTIES COMPILE_DEFINITIONS ${${mod_extra_defines}})
790     ENDIF()
791
792     # Extra includes?
793     SET(mod_extra_includes "${mod_name}_extra_includes")
794     IF(NOT "${${mod_extra_includes}}" STREQUAL "")
795       SET(tmp_includes ${HTTPD_INCLUDE_DIRECTORIES} ${${mod_extra_includes}})
796       SET_TARGET_PROPERTIES(${mod_name} PROPERTIES INCLUDE_DIRECTORIES "${tmp_includes}")
797       GET_PROPERTY(tmp_includes TARGET ${mod_name} PROPERTY INCLUDE_DIRECTORIES)
798     ENDIF()
799
800   ENDIF()
801 ENDFOREACH()
802
803 ###########   HTTPD LIBRARIES   ############
804 ADD_LIBRARY(libhttpd SHARED ${LIBHTTPD_SOURCES} build/win32/httpd.rc)
805 SET_TARGET_PROPERTIES(libhttpd PROPERTIES
806   LINK_FLAGS /base:@${PROJECT_BINARY_DIR}/BaseAddr.ref,libhttpd.dll
807 )
808 SET(install_targets ${install_targets} libhttpd)
809 SET(install_bin_pdb ${install_bin_pdb} ${PROJECT_BINARY_DIR}/libhttpd.pdb)
810 TARGET_LINK_LIBRARIES(libhttpd ${EXTRA_LIBS} ${APR_LIBRARIES} ${PCRE_LIBRARIES} ${HTTPD_SYSTEM_LIBS})
811 DEFINE_WITH_BLANKS(define_long_name "LONG_NAME" "Apache HTTP Server Core")
812 SET_TARGET_PROPERTIES(libhttpd PROPERTIES COMPILE_FLAGS "-DAP_DECLARE_EXPORT -DAPREQ_DECLARE_EXPORT ${define_long_name} -DBIN_NAME=libhttpd.dll ${EXTRA_COMPILE_FLAGS}")
813 ADD_DEPENDENCIES(libhttpd test_char_header)
814
815 ###########   HTTPD EXECUTABLES   ##########
816 ADD_EXECUTABLE(httpd server/main.c build/win32/httpd.rc)
817 SET(install_targets ${install_targets} httpd)
818 SET(install_bin_pdb ${install_bin_pdb} ${PROJECT_BINARY_DIR}/httpd.pdb)
819 DEFINE_WITH_BLANKS(define_long_name "LONG_NAME" "Apache HTTP Server")
820 SET_TARGET_PROPERTIES(httpd PROPERTIES COMPILE_FLAGS "-DAPP_FILE ${define_long_name} -DBIN_NAME=httpd.exe -DICON_FILE=${CMAKE_SOURCE_DIR}/build/win32/apache.ico ${EXTRA_COMPILE_FLAGS}")
821 TARGET_LINK_LIBRARIES(httpd libhttpd ${EXTRA_LIBS})
822
823 SET(standard_support
824   ab
825   htcacheclean
826   htdbm
827   htdigest
828   htpasswd
829   httxt2dbm
830   logresolve
831   rotatelogs
832 )
833
834 SET(htdbm_extra_sources support/passwd_common.c)
835 SET(htpasswd_extra_sources support/passwd_common.c)
836
837 FOREACH(pgm ${standard_support})
838   SET(extra_sources ${pgm}_extra_sources)
839   ADD_EXECUTABLE(${pgm} support/${pgm}.c ${${extra_sources}} build/win32/httpd.rc)
840   SET(install_targets ${install_targets} ${pgm})
841   SET(install_bin_pdb ${install_bin_pdb} ${PROJECT_BINARY_DIR}/${pgm}.pdb)
842   DEFINE_WITH_BLANKS(define_long_name "LONG_NAME" "Apache HTTP Server ${pgm} program")
843   SET_TARGET_PROPERTIES(${pgm} PROPERTIES COMPILE_FLAGS "-DAPP_FILE ${define_long_name} -DBIN_NAME=${pgm}.exe ${EXTRA_COMPILE_FLAGS}")
844   TARGET_LINK_LIBRARIES(${pgm} ${EXTRA_LIBS} ${APR_LIBRARIES})
845 ENDFOREACH()
846
847 IF(OPENSSL_FOUND)
848   ADD_EXECUTABLE(abs support/ab.c build/win32/httpd.rc)
849   SET(install_targets ${install_targets} abs)
850   SET(install_bin_pdb ${install_bin_pdb} ${PROJECT_BINARY_DIR}/abs.pdb)
851   SET_TARGET_PROPERTIES(abs PROPERTIES COMPILE_DEFINITIONS HAVE_OPENSSL)
852   SET(tmp_includes ${HTTPD_INCLUDE_DIRECTORIES} ${OPENSSL_INCLUDE_DIR})
853   SET_TARGET_PROPERTIES(abs PROPERTIES INCLUDE_DIRECTORIES "${tmp_includes}")
854   DEFINE_WITH_BLANKS(define_long_name "LONG_NAME" "Apache HTTP Server ab/SSL program")
855   SET_TARGET_PROPERTIES(abs PROPERTIES COMPILE_FLAGS "-DAPP_FILE ${define_long_name} -DBIN_NAME=abs.exe ${EXTRA_COMPILE_FLAGS}")
856   TARGET_LINK_LIBRARIES(abs ${EXTRA_LIBS} ${APR_LIBRARIES} ${OPENSSL_LIBRARIES})
857 ENDIF()
858 GET_PROPERTY(tmp_includes TARGET ab PROPERTY INCLUDE_DIRECTORIES)
859
860 # getting duplicate manifest error with ApacheMonitor
861 # ADD_EXECUTABLE(ApacheMonitor support/win32/ApacheMonitor.c support/win32/ApacheMonitor.rc)
862 # SET(install_targets ${install_targets} ApacheMonitor)
863 # SET(install_bin_pdb ${install_bin_pdb} ${PROJECT_BINARY_DIR}/ApacheMonitor.pdb)
864 # SET_TARGET_PROPERTIES(ApacheMonitor PROPERTIES WIN32_EXECUTABLE TRUE)
865 # SET_TARGET_PROPERTIES(ApacheMonitor PROPERTIES COMPILE_FLAGS "-DAPP_FILE -DLONG_NAME=ApacheMonitor -DBIN_NAME=ApacheMonitor.exe ${EXTRA_COMPILE_FLAGS}")
866 # TARGET_LINK_LIBRARIES(ApacheMonitor ${EXTRA_LIBS} ${HTTPD_SYSTEM_LIBS} comctl32 wtsapi32)
867
868 ###########  CONFIGURATION FILES ###########
869 # Set up variables used in the .conf file templates
870 SET(LoadModule          "${LoadModules}")
871 SET(Port                "80" CACHE STRING "http port to listen on")
872 SET(SSLPort             "443" CACHE STRING "https port to listen on")
873 SET(ServerRoot          "${CMAKE_INSTALL_PREFIX}")
874 SET(exp_cgidir          "${CMAKE_INSTALL_PREFIX}/cgi-bin")
875 SET(exp_htdocsdir       "${CMAKE_INSTALL_PREFIX}/htdocs")
876 SET(exp_iconsdir        "${CMAKE_INSTALL_PREFIX}/icons")
877 SET(exp_errordir        "${CMAKE_INSTALL_PREFIX}/error")
878 SET(exp_manualdir       "${CMAKE_INSTALL_PREFIX}/manual")
879 SET(rel_logfiledir      "logs")
880 SET(rel_runtimedir      "logs")
881 SET(rel_sysconfdir      "conf")
882 FILE(GLOB_RECURSE conffiles RELATIVE ${CMAKE_SOURCE_DIR}/docs/conf "docs/conf/*")
883 FOREACH(template ${conffiles})
884   STRING(REPLACE ".conf.in" ".conf" conf ${template})
885   FILE(READ "docs/conf/${template}" template_text)
886     IF(template MATCHES ".conf.in$")
887       # substitute @var@/@@var@@ in .conf.in
888       STRING(REPLACE "@@" "@" template_text ${template_text})
889       STRING(CONFIGURE "${template_text}" template_text @ONLY)
890     ENDIF()
891   FILE(WRITE ${CMAKE_BINARY_DIR}/conf/original/${conf} "${template_text}")
892   FILE(WRITE ${CMAKE_BINARY_DIR}/conf/${conf} "${template_text}")
893 ENDFOREACH()
894
895 ###########   INSTALLATION   ###########
896 INSTALL(TARGETS ${install_targets}
897         RUNTIME DESTINATION bin
898         LIBRARY DESTINATION lib
899         ARCHIVE DESTINATION lib
900        )
901 INSTALL(TARGETS ${install_modules}
902         RUNTIME DESTINATION modules
903        )
904
905 IF(INSTALL_PDB)
906   INSTALL(FILES ${install_bin_pdb}
907           DESTINATION bin
908           CONFIGURATIONS RelWithDebInfo Debug)
909
910   INSTALL(FILES ${install_modules_pdb}
911           DESTINATION modules
912           CONFIGURATIONS RelWithDebInfo Debug)
913 ENDIF()
914
915 INSTALL(DIRECTORY include/ DESTINATION include
916     FILES_MATCHING PATTERN "*.h"
917 )
918 INSTALL(FILES ${other_installed_h} DESTINATION include)
919 INSTALL(FILES ${installed_mod_libs_exps} DESTINATION lib)
920 INSTALL(FILES "${CMAKE_BINARY_DIR}/libhttpd.exp" DESTINATION LIB)
921 INSTALL(FILES support/ctlogconfig DESTINATION bin)
922
923 IF(INSTALL_MANUAL) # Silly?  This takes a while, and a dev doesn't need it.
924   INSTALL(DIRECTORY docs/manual/ DESTINATION manual)
925 ENDIF()
926
927 INSTALL(DIRECTORY DESTINATION logs)
928 INSTALL(DIRECTORY DESTINATION cgi-bin)
929
930 INSTALL(CODE "EXECUTE_PROCESS(COMMAND perl ${CMAKE_CURRENT_SOURCE_DIR}/build/cpR_noreplace.pl ${CMAKE_CURRENT_SOURCE_DIR}/docs/error ${CMAKE_INSTALL_PREFIX}/error ifdestmissing)")
931
932 INSTALL(CODE "EXECUTE_PROCESS(COMMAND perl ${CMAKE_CURRENT_SOURCE_DIR}/build/cpR_noreplace.pl ${CMAKE_CURRENT_SOURCE_DIR}/docs/docroot ${CMAKE_INSTALL_PREFIX}/htdocs ifdestmissing)")
933
934 INSTALL(CODE "EXECUTE_PROCESS(COMMAND perl ${CMAKE_CURRENT_SOURCE_DIR}/build/cpR_noreplace.pl ${CMAKE_CURRENT_SOURCE_DIR}/docs/icons ${CMAKE_INSTALL_PREFIX}/icons ifdestmissing)")
935
936 # Copy generated .conf files from the build directory to the install,
937 # without overwriting stuff already there.
938 INSTALL(CODE "EXECUTE_PROCESS(COMMAND perl ${CMAKE_CURRENT_SOURCE_DIR}/build/cpR_noreplace.pl ${CMAKE_BINARY_DIR}/conf ${CMAKE_INSTALL_PREFIX}/conf)")
939 # But conf/original is supposed to be overwritten.
940 # Note: FILE(TO_NATIVE_PATH ...) leaves the backslashes unescaped, which
941 #       generates warnings.  Just do it manually since this build only supports
942 #       Windows anyway.
943 STRING(REPLACE "/" "\\\\" native_src ${CMAKE_BINARY_DIR}/conf/original)
944 STRING(REPLACE "/" "\\\\" native_dest ${CMAKE_INSTALL_PREFIX}/conf/original)
945 INSTALL(CODE "EXECUTE_PROCESS(COMMAND xcopy ${native_src} ${native_dest} /Q /S /Y)")
946
947 STRING(TOUPPER "${CMAKE_BUILD_TYPE}" buildtype)
948 MESSAGE(STATUS "")
949 MESSAGE(STATUS "")
950 MESSAGE(STATUS "Apache httpd configuration summary:")
951 MESSAGE(STATUS "")
952 MESSAGE(STATUS "  Build type ...................... : ${CMAKE_BUILD_TYPE}")
953 MESSAGE(STATUS "  Install .pdb (if available)...... : ${INSTALL_PDB}")
954 MESSAGE(STATUS "  Install manual .................. : ${INSTALL_MANUAL}")
955 MESSAGE(STATUS "  Install prefix .................. : ${CMAKE_INSTALL_PREFIX}")
956 MESSAGE(STATUS "  C compiler ...................... : ${CMAKE_C_COMPILER}")
957 MESSAGE(STATUS "  APR include directory ........... : ${APR_INCLUDE_DIR}")
958 MESSAGE(STATUS "  APR libraries ................... : ${APR_LIBRARIES}")
959 MESSAGE(STATUS "  OpenSSL include directory ....... : ${OPENSSL_INCLUDE_DIR}")
960 MESSAGE(STATUS "  OpenSSL libraries ............... : ${OPENSSL_LIBRARIES}")
961 MESSAGE(STATUS "  PCRE include directory .......... : ${PCRE_INCLUDE_DIR}")
962 MESSAGE(STATUS "  PCRE libraries .................. : ${PCRE_LIBRARIES}")
963 MESSAGE(STATUS "  libxml2 iconv prereq include dir. : ${LIBXML2_ICONV_INCLUDE_DIR}")
964 MESSAGE(STATUS "  libxml2 iconv prereq libraries .. : ${LIBXML2_ICONV_LIBRARIES}")
965 MESSAGE(STATUS "  Extra include directories ....... : ${EXTRA_INCLUDES}")
966 MESSAGE(STATUS "  Extra compile flags ............. : ${EXTRA_COMPILE_FLAGS}")
967 MESSAGE(STATUS "  Extra libraries ................. : ${EXTRA_LIBS}")
968
969 MESSAGE(STATUS "  Modules built and loaded:")
970 FOREACH(mod ${mods_built_and_loaded})
971   MESSAGE(STATUS "    ${mod}")
972 ENDFOREACH()
973
974 MESSAGE(STATUS "  Modules built but not loaded:")
975 FOREACH(mod ${mods_built_but_not_loaded})
976   MESSAGE(STATUS "    ${mod}")
977 ENDFOREACH()
978
979 MESSAGE(STATUS "  Modules not built:")
980 FOREACH(mod ${mods_omitted})
981   MESSAGE(STATUS "    ${mod}")
982 ENDFOREACH()