[cmake] help cmake on FreeBSD find sys/event.h
[lighttpd.git] / src / CMakeLists.txt
blob0feb851f30094959fe6bfc25ab70d2e6f3fdea06
1 include(CheckCSourceCompiles)
2 include(CheckIncludeFiles)
3 include(CheckFunctionExists)
4 include(CheckSymbolExists)
5 include(CheckVariableExists)
6 include(CheckTypeSize)
7 include(CheckLibraryExists)
8 include(CMakeDetermineCCompiler)
9 include(FindThreads)
10 include(FindPkgConfig)
12 include(LighttpdMacros)
14 add_definitions(-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES)
16 option(WITH_XATTR "with xattr-support for the stat-cache [default: off]")
17 option(WITH_MYSQL "with mysql-support for mod_vhostdb_mysql [default: off]")
18 option(WITH_PGSQL "with postgres-support for mod_vhostdb_pgsql [default: off]")
19 option(WITH_DBI "with dbi-support for mod_vhostdb_dbi [default: off]")
20 option(WITH_OPENSSL "with openssl-support [default: off]")
21 option(WITH_WOLFSSL "with wolfSSL-support [default: off]")
22 option(WITH_PCRE "with regex support [default: on]" ON)
23 option(WITH_WEBDAV_PROPS "with property-support for mod_webdav [default: off]")
24 option(WITH_WEBDAV_LOCKS "locks in webdav [default: off]")
25 option(WITH_BZIP "with bzip2-support for mod_compress [default: off]")
26 option(WITH_ZLIB "with deflate-support for mod_compress [default: on]" ON)
27 option(WITH_KRB5 "with Kerberos5-support for mod_auth [default: off]")
28 option(WITH_LDAP "with LDAP-support for mod_auth mod_vhostdb_ldap [default: off]")
29 option(WITH_PAM "with PAM-support for mod_auth [default: off]")
30 option(WITH_LUA "with lua 5.1 for mod_magnet [default: off]")
31 # option(WITH_VALGRIND "with internal support for valgrind [default: off]")
32 option(WITH_FAM "fam/gamin for reducing number of stat() calls [default: off]")
33 option(WITH_GDBM "gdbm storage for mod_trigger_b4_dl [default: off]")
34 option(WITH_MEMCACHED "memcached storage for mod_trigger_b4_dl [default: off]")
35 option(WITH_LIBEV "libev support for fdevent handlers [default: off]")
36 option(WITH_LIBUNWIND "with libunwind to print backtraces in asserts [default: off]")
37 option(WITH_GEOIP "with GeoIP-support mod_geoip [default: off]")
38 option(WITH_SASL "with SASL-support for mod_authn_sasl [default: off]")
40 if(CMAKE_C_COMPILER_ID MATCHES "GNU" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
41         option(BUILD_EXTRA_WARNINGS "extra warnings")
43         if(BUILD_EXTRA_WARNINGS)
44                 set(WARN_CFLAGS "-g -g2 -Wall -Wmissing-declarations -Wcast-align -Wsign-compare -Wnested-externs -Wpointer-arith -D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security")
45                 set(WARN_LDFLAGS "-Wl,--as-needed")
46                 # -Werror -Wbad-function-cast -Wmissing-prototypes
47         endif()
48 endif()
50 option(BUILD_STATIC "build a static lighttpd with all modules added")
52 if(BUILD_STATIC)
53         set(LIGHTTPD_STATIC 1)
54 elseif(APPLE)
55         set(CMAKE_SHARED_MODULE_PREFIX "")
56 else()
57         set(CMAKE_SHARED_LIBRARY_PREFIX "")
58 endif()
60 if(WITH_LIBEV)
61         find_package(LibEV REQUIRED)
62         set(HAVE_LIBEV 1)
63 endif()
65 if(WITH_LIBUNWIND)
66         pkg_check_modules(LIBUNWIND REQUIRED libunwind)
67         set(HAVE_LIBUNWIND 1)
68 endif()
70 if(WITH_WEBDAV_PROPS)
71         set(WITH_XML 1)
72         set(WITH_SQLITE3 1)
73 endif()
75 if(WITH_WEBDAV_LOCKS)
76         set(WITH_UUID 1)
77 endif()
79 check_include_files(sys/devpoll.h HAVE_SYS_DEVPOLL_H)
80 check_include_files(sys/epoll.h HAVE_SYS_EPOLL_H)
81 set(CMAKE_REQUIRED_FLAGS "-include sys/types.h")
82 check_include_files(sys/event.h HAVE_SYS_EVENT_H)
83 set(CMAKE_REQUIRED_FLAGS)
84 check_include_files(sys/mman.h HAVE_SYS_MMAN_H)
85 check_include_files(sys/poll.h HAVE_SYS_POLL_H)
86 check_include_files(sys/port.h HAVE_SYS_PORT_H)
87 check_include_files(sys/prctl.h HAVE_SYS_PRCTL_H)
88 check_include_files(sys/resource.h HAVE_SYS_RESOURCE_H)
89 check_include_files(sys/sendfile.h HAVE_SYS_SENDFILE_H)
90 check_include_files(sys/select.h HAVE_SYS_SELECT_H)
91 check_include_files(sys/types.h HAVE_SYS_TYPES_H)
92 check_include_files(sys/uio.h HAVE_SYS_UIO_H)
93 check_include_files(sys/un.h HAVE_SYS_UN_H)
94 check_include_files(sys/wait.h HAVE_SYS_WAIT_H)
95 check_include_files(sys/time.h HAVE_SYS_TIME_H)
96 check_include_files(unistd.h HAVE_UNISTD_H)
97 check_include_files(pthread.h HAVE_PTHREAD_H)
98 check_include_files(getopt.h HAVE_GETOPT_H)
99 check_include_files(inttypes.h HAVE_INTTYPES_H)
100 check_include_files(poll.h HAVE_POLL_H)
101 check_include_files(pwd.h HAVE_PWD_H)
102 check_include_files(stddef.h HAVE_STDDEF_H)
103 check_include_files(stdint.h HAVE_STDINT_H)
104 check_include_files(strings.h HAVE_STRINGS_H)
105 check_include_files(syslog.h HAVE_SYSLOG_H)
107 # check for fastcgi lib, for the tests only
108 check_include_files(fastcgi.h HAVE_FASTCGI_H)
109 check_include_files(fastcgi/fastcgi.h HAVE_FASTCGI_FASTCGI_H)
111 # will be needed for auth
112 check_include_files(crypt.h HAVE_CRYPT_H)
113 # check if we need libcrypt for crypt_r()
114 check_library_exists(crypt crypt_r "" HAVE_LIBCRYPT_CRYPT_R)
115 if(HAVE_LIBCRYPT_CRYPT_R)
116         set(HAVE_CRYPT_R 1)
117         set(HAVE_LIBCRYPT 1)
118 else()
119         check_library_exists(crypt crypt "" HAVE_LIBCRYPT)
120 endif()
121 check_function_exists(crypt_r HAVE_CRYPT_R)
122 check_function_exists(crypt HAVE_CRYPT)
124 check_include_files(sys/inotify.h HAVE_SYS_INOTIFY_H)
125 if(HAVE_SYS_INOTIFY_H)
126         check_function_exists(inotify_init HAVE_INOTIFY_INIT)
127 endif()
129 set(CMAKE_EXTRA_INCLUDE_FILES sys/socket.h)
130 check_type_size(socklen_t HAVE_SOCKLEN_T)
131 set(CMAKE_EXTRA_INCLUDE_FILES)
133 check_include_files(sys/random.h HAVE_SYS_RANDOM_H)
134 set(CMAKE_EXTRA_INCLUDE_FILES sys/random.h)
135 check_function_exists(getentropy HAVE_GETENTROPY)
136 set(CMAKE_EXTRA_INCLUDE_FILES)
138 check_include_files(linux/random.h HAVE_LINUX_RANDOM_H)
139 set(CMAKE_EXTRA_INCLUDE_FILES linux/random.h)
140 check_function_exists(getrandom HAVE_GETRANDOM)
141 set(CMAKE_EXTRA_INCLUDE_FILES)
143 check_type_size(long SIZEOF_LONG)
144 check_type_size(off_t SIZEOF_OFF_T)
146 check_function_exists(arc4random_buf HAVE_ARC4RANDOM_BUF)
147 check_function_exists(chroot HAVE_CHROOT)
148 check_function_exists(epoll_ctl HAVE_EPOLL_CTL)
149 check_function_exists(fork HAVE_FORK)
150 check_function_exists(getloadavg HAVE_GETLOADAVG)
151 check_function_exists(getrlimit HAVE_GETRLIMIT)
152 check_function_exists(getuid HAVE_GETUID)
153 check_function_exists(gmtime_r HAVE_GMTIME_R)
154 check_function_exists(inet_ntop HAVE_INET_NTOP)
155 check_function_exists(jrand48 HAVE_JRAND48)
156 check_function_exists(kqueue HAVE_KQUEUE)
157 check_function_exists(localtime_r HAVE_LOCALTIME_R)
158 check_function_exists(lstat HAVE_LSTAT)
159 check_function_exists(madvise HAVE_MADVISE)
160 check_function_exists(memcpy HAVE_MEMCPY)
161 check_function_exists(memset HAVE_MEMSET)
162 check_function_exists(mmap HAVE_MMAP)
163 check_function_exists(pathconf HAVE_PATHCONF)
164 check_function_exists(pipe2 HAVE_PIPE2)
165 check_function_exists(poll HAVE_POLL)
166 check_function_exists(port_create HAVE_PORT_CREATE)
167 check_function_exists(prctl HAVE_PRCTL)
168 check_function_exists(pread HAVE_PREAD)
169 check_function_exists(posix_fadvise HAVE_POSIX_FADVISE)
170 check_function_exists(select HAVE_SELECT)
171 check_function_exists(sendfile HAVE_SENDFILE)
172 check_function_exists(send_file HAVE_SEND_FILE)
173 check_function_exists(sendfile64 HAVE_SENDFILE64)
174 check_function_exists(sendfilev HAVE_SENDFILEV)
175 check_function_exists(sigaction HAVE_SIGACTION)
176 check_function_exists(signal HAVE_SIGNAL)
177 check_function_exists(sigtimedwait HAVE_SIGTIMEDWAIT)
178 check_function_exists(srandom HAVE_SRANDOM)
179 check_function_exists(strptime HAVE_STRPTIME)
180 check_function_exists(syslog HAVE_SYSLOG)
181 check_function_exists(writev HAVE_WRITEV)
182 check_function_exists(inet_aton HAVE_INET_ATON)
183 check_function_exists(issetugid HAVE_ISSETUGID)
184 check_function_exists(inet_pton HAVE_INET_PTON)
185 check_function_exists(memset_s HAVE_MEMSET_S)
186 check_function_exists(explicit_bzero HAVE_EXPLICIT_BZERO)
187 check_symbol_exists(clock_gettime "time.h" HAVE_CLOCK_GETTIME)
188 if (NOT HAVE_CLOCK_GETTIME)
189         check_library_exists(rt clock_gettime "time.h" HAVE_CLOCK_GETTIME)
190 endif()
191 check_c_source_compiles("
192         #include <sys/types.h>
193         #include <sys/socket.h>
194         #include <netinet/in.h>
196         int main() {
197                 struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] = 0;
198                 return 0;
199         }" HAVE_IPV6)
200 check_c_source_compiles("
201         __attribute__((weak)) void __dummy(void *x) { }
202         int main() {
203                 void *x;
204                 __dummy(x);
205         }
206         " HAVE_WEAK_SYMBOLS)
207 check_c_source_compiles("
208         #include <time.h>
209         int main(void) {
210                 struct tm t;
211                 t.tm_gmtoff = 0;
212                 return 0;
213         }
214         " HAVE_STRUCT_TM_GMTOFF)
216 ## refactor me
217 macro(XCONFIG _package _include_DIR _link_DIR _link_FLAGS _cflags)
218 # reset the variables at the beginning
219         set(${_include_DIR})
220         set(${_link_DIR})
221         set(${_link_FLAGS})
222         set(${_cflags})
224         find_program(${_package}CONFIG_EXECUTABLE NAMES ${_package} PATHS /usr/local/bin )
226         # if pkg-config has been found
227         if(${_package}CONFIG_EXECUTABLE)
228                 set(XCONFIG_EXECUTABLE "${${_package}CONFIG_EXECUTABLE}")
229                 message(STATUS "found ${_package}: ${XCONFIG_EXECUTABLE}")
231                 exec_program(${XCONFIG_EXECUTABLE} ARGS --libs OUTPUT_VARIABLE __link_FLAGS)
232                 string(REPLACE "\n" "" ${_link_FLAGS} ${__link_FLAGS})
233                 exec_program(${XCONFIG_EXECUTABLE} ARGS --cflags OUTPUT_VARIABLE __cflags)
234                 string(REPLACE "\n" "" ${_cflags} ${__cflags})
235         else()
236                 message(STATUS "found ${_package}: no")
237         endif()
238 endmacro(XCONFIG _package _include_DIR _link_DIR _link_FLAGS _cflags)
240 if(WITH_XATTR)
241         check_include_files("sys/types.h;attr/attributes.h" HAVE_ATTR_ATTRIBUTES_H)
242         if(HAVE_ATTR_ATTRIBUTES_H)
243                 check_library_exists(attr attr_get "" HAVE_XATTR)
244         endif()
245 else()
246         unset(HAVE_ATTR_ATTRIBUTES_H)
247         unset(HAVE_XATTR)
248 endif()
250 if(WITH_MYSQL)
251         xconfig(mysql_config MYSQL_INCDIR MYSQL_LIBDIR MYSQL_LDFLAGS MYSQL_CFLAGS)
253         set(CMAKE_REQUIRED_INCLUDES /usr/include/mysql)
254         check_include_files(mysql.h HAVE_MYSQL_H)
255         set(CMAKE_REQUIRED_INCLUDES)
256         if(HAVE_MYSQL_H)
257                 check_library_exists(mysqlclient mysql_real_connect "" HAVE_MYSQL)
258         endif()
259 else()
260         unset(HAVE_MYSQL_H)
261         unset(HAVE_MYSQL)
262 endif()
264 if(WITH_PGSQL)
265         xconfig(pg_config PGSQL_INCDIR PGSQL_LIBDIR PGSQL_LDFLAGS PGSQL_CFLAGS)
267         check_include_files(libpq-fe.h HAVE_PGSQL_H)
268         if(HAVE_PGSQL_H)
269                 check_library_exists(pq PQsetdbLogin "" HAVE_PGSQL)
270         endif()
271 else()
272         unset(HAVE_PGSQL_H)
273         unset(HAVE_PGSQL)
274 endif()
276 if(WITH_DBI)
277         check_include_files(dbi/dbi.h HAVE_DBI_H)
278         if(HAVE_DBI_H)
279                 check_library_exists(dbi dbi_conn_connect "" HAVE_DBI)
280         endif()
281 else()
282         unset(HAVE_DBI_H)
283         unset(HAVE_DBI)
284 endif()
286 set(CRYPTO_LIBRARY "")
288 if(WITH_OPENSSL)
289         if(APPLE)
290                 set(CMAKE_REQUIRED_INCLUDES /opt/local/include)
291         endif()
292         check_include_files(openssl/ssl.h HAVE_OPENSSL_SSL_H)
293         if(APPLE)
294                 set(CMAKE_REQUIRED_INCLUDES)
295         endif()
296         if(HAVE_OPENSSL_SSL_H)
297                 check_library_exists(crypto BIO_f_base64 "" HAVE_LIBCRYPTO)
298                 if(HAVE_LIBCRYPTO)
299                         set(CRYPTO_LIBRARY crypto)
300                         check_library_exists(ssl SSL_new "" HAVE_LIBSSL)
301                 endif()
302         endif()
303 else()
304         unset(HAVE_OPENSSL_SSL_H)
305         unset(HAVE_LIBSSL)
306 endif()
308 if(WITH_WOLFSSL)
309         if(NOT ${WITH_WOLFSSL} EQUAL "")
310                 find_path(WOLFSSL_INCLUDE_DIR wolfssl/ssl.h ${WITH_WOLFSSL}/include)
311         elseif(APPLE)
312                 find_path(WOLFSSL_INCLUDE_DIR wolfssl/ssl.h /opt/local/include)
313         else()
314                 find_path(WOLFSSL_INCLUDE_DIR wolfssl/ssl.h /usr/local/include)
315         endif()
317         if(NOT ${WITH_WOLFSSL} EQUAL "")
318                 find_library(WOLFSSL_LIBRARY
319                         NAMES wolfssl
320                         PATHS ${WITH_WOLFSSL}/lib
321                 )
322         else()
323                 find_library(WOLFSSL_LIBRARY
324                         NAMES wolfssl
325                         PATHS /usr/local/lib /opt/local/lib /usr/lib
326                 )
327         endif()
329         if(WOLFSSL_INCLUDE_DIR AND WOLFSSL_LIBRARY)
330                 set(CMAKE_REQUIRED_INCLUDES ${WOLFSSL_INCLUDE_DIR})
331                 check_include_files(wolfssl/ssl.h HAVE_WOLFSSL_SSL_H)
333                 check_c_source_compiles("
334                 #include <wolfssl/options.h>
335                 #if !defined(HAVE_LIGHTY) && !defined(OPENSSL_ALL)
336                 #error HAVE_LIGHTY macro not defined
337                 #endif
338                 int main() { return 0; }
339                 " CHECK_HAVE_LIGHTY)
340                 if (NOT CHECK_HAVE_LIGHTY)
341                         message(FATAL_ERROR "wolfssl must be built with ./configure --enable-lighty")
342                 endif()
343                 unset(CHECK_HAVE_LIGHTY)
345                 set(CMAKE_REQUIRED_LIBRARIES ${WOLFSSL_LIBRARY})
346                 check_library_exists(${WOLFSSL_LIBRARY} wolfSSL_Init "" HAVE_LIBCRYPTO)
347                 if(HAVE_LIBCRYPTO)
348                         set(CRYPTO_LIBRARY ${WOLFSSL_LIBRARY})
349                         add_definitions(-DHAVE_WOLFSSL_SSL_H)
350                 endif()
351                 set(CMAKE_REQUIRED_INCLUDES)
352                 set(CMAKE_REQUIRED_LIBRARIES)
353                 include_directories(${WOLFSSL_INCLUDE_DIR} ${WOLFSSL_INCLUDE_DIR}/wolfssl)
354         endif()
355         unset(WOLFSSL_LIBRARY)
356         unset(WOLFSSL_INCLUDE_DIR)
357 else()
358         unset(HAVE_WOLFSSL_SSL_H)
359 endif()
361 if(WITH_OPENSSL AND WITH_WOLFSSL)
362         message(FATAL_ERROR "lighttpd should not be built with both --with-openssl and --with-wolfssl")
363 endif()
365 if(WITH_PCRE)
366         ## if we have pcre-config, use it
367         xconfig(pcre-config PCRE_INCDIR PCRE_LIBDIR PCRE_LDFLAGS PCRE_CFLAGS)
368         if(PCRE_LDFLAGS OR PCRE_CFLAGS)
369                 message(STATUS "found pcre at: LDFLAGS: ${PCRE_LDFLAGS} CFLAGS: ${PCRE_CFLAGS}")
371                 if(NOT PCRE_CFLAGS STREQUAL "\n")
372                         ## if it is empty we'll get newline returned
373                         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${PCRE_CFLAGS}")
374                 endif()
376                 set(HAVE_PCRE_H 1)
377                 set(HAVE_LIBPCRE 1)
378         else()
379                 if(NOT WIN32)
380                         check_include_files(pcre.h HAVE_PCRE_H)
381                         check_library_exists(pcre pcre_exec "" HAVE_LIBPCRE)
382                         set(PCRE_LDFLAGS -lpcre)
383                 else()
384                         find_path(PCRE_INCLUDE_DIR pcre.h
385                         /usr/local/include
386                         /usr/include
387                         )
389                         set(PCRE_NAMES pcre)
390                         find_library(PCRE_LIBRARY
391                         NAMES ${PCRE_NAMES}
392                         PATHS /usr/lib /usr/local/lib
393                         )
395                         if(PCRE_INCLUDE_DIR AND PCRE_LIBRARY)
396                                 set(CMAKE_REQUIRED_INCLUDES ${PCRE_INCLUDE_DIR})
397                                 set(CMAKE_REQUIRED_LIBRARIES ${PCRE_LIBRARY})
398                                 check_include_files(pcre.h HAVE_PCRE_H)
399                                 check_library_exists(pcre pcre_exec "" HAVE_LIBPCRE)
400                                 set(CMAKE_REQUIRED_INCLUDES)
401                                 set(CMAKE_REQUIRED_LIBRARIES)
402                                 include_directories(${PCRE_INCLUDE_DIR})
403                         endif()
404                 endif()
405         endif()
407         if(NOT HAVE_PCRE_H)
408                 message(FATAL_ERROR "pcre.h couldn't be found")
409         endif()
410         if(NOT HAVE_LIBPCRE)
411                 message(FATAL_ERROR "libpcre couldn't be found")
412         endif()
413 else()
414         unset(HAVE_PCRE_H)
415         unset(HAVE_LIBPCRE)
416 endif()
418 if(WITH_SASL)
419         check_include_files(sasl/sasl.h HAVE_SASL_SASL_H)
420         if(HAVE_SASL_SASL_H)
421                 check_library_exists(sasl2 sasl_server_init "" HAVE_SASL)
422         endif()
423 else()
424         unset(HAVE_SASL_SASL_H)
425         unset(HAVE_SASL)
426 endif()
429 if(WITH_XML)
430         xconfig(xml2-config XML2_INCDIR XML2_LIBDIR XML2_LDFLAGS XML2_CFLAGS)
431         if(XML2_LDFLAGS OR XML2_CFLAGS)
432                 message(STATUS "found xml2 at: LDFLAGS: ${XML2_LDFLAGS} CFLAGS: ${XML2_CFLAGS}")
434                 ## if it is empty we'll get newline returned
435                 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${XML2_CFLAGS}")
437                 check_include_files(libxml/tree.h HAVE_LIBXML_H)
439                 set(CMAKE_REQUIRED_FLAGS ${XML2_LDFLAGS})
440                 check_library_exists(xml2 xmlParseChunk "" HAVE_LIBXML)
441                 set(CMAKE_REQUIRED_FLAGS)
442         else()
443                 check_include_files(libxml.h HAVE_LIBXML_H)
444                 check_library_exists(xml2 xmlParseChunk "" HAVE_LIBXML)
445         endif()
447         if(NOT HAVE_LIBXML_H)
448                 message(FATAL_ERROR "libxml/tree.h couldn't be found")
449         endif()
450         if(NOT HAVE_LIBXML)
451                 message(FATAL_ERROR "libxml2 couldn't be found")
452         endif()
453 else()
454         unset(HAVE_LIBXML_H)
455         unset(HAVE_LIBXML)
456 endif()
458 if(WITH_SQLITE3)
459         check_include_files(sqlite3.h HAVE_SQLITE3_H)
460         check_library_exists(sqlite3 sqlite3_reset "" HAVE_SQLITE3)
461 else()
462         unset(HAVE_SQLITE3_H)
463         unset(HAVE_SQLITE3)
464 endif()
466 if(WITH_UUID)
467         check_include_files(uuid/uuid.h HAVE_UUID_UUID_H)
468         check_library_exists(uuid uuid_generate "" NEED_LIBUUID)
469         if(NOT NEED_LIBUUID)
470                 check_function_exists(uuid_generate HAVE_LIBUUID)
471         else()
472                 set(HAVE_LIBUUID 1)
473         endif()
474 else()
475         unset(HAVE_UUID_UUID_H)
476         unset(NEED_LIBUUID)
477         unset(HAVE_LIBUUID)
478 endif()
480 if(WITH_ZLIB)
481         if(NOT WIN32)
482                 check_include_files(zlib.h HAVE_ZLIB_H)
483                 check_library_exists(z deflate "" HAVE_LIBZ)
484                 set(ZLIB_LIBRARY z)
485         else()
486                 find_path(ZLIB_INCLUDE_DIR zlib.h
487                         /usr/local/include
488                         /usr/include
489                 )
491                 set(ZLIB_NAMES z zlib zdll)
492                         find_library(ZLIB_LIBRARY
493                         NAMES ${ZLIB_NAMES}
494                         PATHS /usr/lib /usr/local/lib
495                 )
497                 if(ZLIB_INCLUDE_DIR AND ZLIB_LIBRARY)
498                         set(CMAKE_REQUIRED_INCLUDES ${ZLIB_INCLUDE_DIR})
499                         set(CMAKE_REQUIRED_LIBRARIES ${ZLIB_LIBRARY})
500                         get_filename_component(ZLIB_NAME ${ZLIB_LIBRARY} NAME)
501                         check_include_files(zlib.h HAVE_ZLIB_H)
502                         check_library_exists(${ZLIB_NAME} deflate "" HAVE_LIBZ)
503                         set(CMAKE_REQUIRED_INCLUDES)
504                         set(CMAKE_REQUIRED_LIBRARIES)
505                         include_directories(${ZLIB_INCLUDE_DIR})
506                 endif()
507         endif()
508 else()
509         unset(HAVE_ZLIB_H)
510         unset(HAVE_LIBZ)
511         unset(ZLIB_INCLUDE_DIR)
512         unset(ZLIB_LIBRARY)
513 endif()
515 if(WITH_BZIP)
516         check_include_files(bzlib.h HAVE_BZLIB_H)
517         check_library_exists(bz2 BZ2_bzCompress "" HAVE_LIBBZ2)
518 else()
519         unset(HAVE_BZLIB_H)
520         unset(HAVE_LIBBZ2)
521 endif()
523 if(WITH_LDAP)
524         check_include_files(ldap.h HAVE_LDAP_H)
525         check_library_exists(ldap ldap_bind "" HAVE_LIBLDAP)
526         check_include_files(lber.h HAVE_LBER_H)
527         check_library_exists(lber ber_printf "" HAVE_LIBLBER)
528 else()
529         unset(HAVE_LDAP_H)
530         unset(HAVE_LIBLDAP)
531         unset(HAVE_LBER_H)
532         unset(HAVE_LIBLBER)
533 endif()
535 if(WITH_PAM)
536         check_include_files(security/pam_appl.h HAVE_SECURITY_PAM_APPL_H)
537         check_library_exists(pam pam_start "" HAVE_PAM)
538 else()
539         unset(HAVE_SECURITY_PAM_APPL_H)
540         unset(HAVE_PAM)
541 endif()
543 if(WITH_LUA)
544         pkg_search_module(LUA REQUIRED lua5.3 lua-5.3 lua5.2 lua-5.2 lua5.1 lua-5.1 lua)
545         message(STATUS "found lua at: INCDIR: ${LUA_INCLUDE_DIRS} LIBDIR: ${LUA_LIBRARY_DIRS} LDFLAGS: ${LUA_LDFLAGS} CFLAGS: ${LUA_CFLAGS}")
546         set(HAVE_LIBLUA 1 "Have liblua")
547         set(HAVE_LUA_H  1 "Have liblua header")
548 else()
549         unset(HAVE_LIBLUA)
550         unset(HAVE_LUA_H)
551 endif()
553 if(WITH_FAM)
554         check_include_files(fam.h HAVE_FAM_H)
555         check_library_exists(fam FAMOpen2 "" HAVE_LIBFAM)
556         if(HAVE_LIBFAM)
557                 set(CMAKE_REQUIRED_LIBRARIES fam)
558                 check_function_exists(FAMNoExists HAVE_FAMNOEXISTS)
559         endif()
560 else()
561         unset(HAVE_FAM_H)
562         unset(HAVE_LIBFAM)
563         unset(HAVE_FAMNOEXISTS)
564 endif()
566 if(WITH_GDBM)
567         check_include_files(gdbm.h HAVE_GDBM_H)
568         check_library_exists(gdbm gdbm_open "" HAVE_GDBM)
569 else()
570         unset(HAVE_GDBM_H)
571         unset(HAVE_GDBM)
572 endif()
574 if(WITH_MEMCACHED)
575         check_include_files(libmemcached/memcached.h HAVE_LIBMEMCACHED_MEMCACHED_H)
576         check_library_exists(memcached memcached "" HAVE_LIBMEMCACHED)
577         if(HAVE_LIBMEMCACHED_MEMCACHED_H AND HAVE_LIBMEMCACHED)
578                 set(USE_MEMCACHED 1)
579         else()
580                 message(FATAL_ERROR "didn't find libmemcached")
581         endif()
582 endif()
584 if(WITH_GEOIP)
585         check_library_exists(geoip GeoIP_country_name_by_addr "" HAVE_GEOIP)
586 endif()
588 if(NOT BUILD_STATIC)
589         check_include_files(dlfcn.h HAVE_DLFCN_H)
590 else()
591         unset(HAVE_DLFCN_H)
592 endif()
594 if(HAVE_DLFCN_H)
595         check_library_exists(dl dlopen "" HAVE_LIBDL)
596 else()
597         unset(HAVE_LIBDL)
598 endif()
600 set(LIGHTTPD_VERSION_ID 10400)
601 set(PACKAGE_NAME "${CMAKE_PROJECT_NAME}")
602 set(PACKAGE_VERSION "${CPACK_PACKAGE_VERSION}")
604 if(NOT SBINDIR)
605         set(SBINDIR "sbin")
606 endif()
608 if(NOT LIGHTTPD_MODULES_DIR)
609         set(LIGHTTPD_MODULES_DIR "lib${LIB_SUFFIX}/lighttpd")
610 endif()
612 if(NOT WIN32)
613         set(LIGHTTPD_LIBRARY_DIR "${CMAKE_INSTALL_PREFIX}/${LIGHTTPD_MODULES_DIR}")
614 else()
615         ## We use relative path in windows
616         set(LIGHTTPD_LIBRARY_DIR "lib")
617 endif()
619 ## Write out config.h
620 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h)
622 add_definitions(-DHAVE_CONFIG_H)
624 include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
626 set(COMMON_SRC
627         base64.c buffer.c burl.c log.c
628         http_header.c http_kv.c keyvalue.c chunk.c
629         http_chunk.c stream.c fdevent.c gw_backend.c
630         stat_cache.c plugin.c joblist.c etag.c array.c
631         data_string.c data_array.c
632         data_integer.c algo_sha1.c md5.c
633         vector.c
634         fdevent_select.c fdevent_libev.c
635         fdevent_poll.c fdevent_linux_sysepoll.c
636         fdevent_solaris_devpoll.c fdevent_solaris_port.c
637         fdevent_freebsd_kqueue.c
638         data_config.c
639         crc32.c
640         connections-glue.c
641         configfile-glue.c
642         http-header-glue.c
643         http_auth.c
644         http_vhostdb.c
645         request.c
646         sock_addr.c
647         splaytree.c
648         rand.c
649         safe_memclear.c
652 if(WIN32)
653         message(STATUS "Adding local getopt implementation.")
654         set(COMMON_SRC ${COMMON_SRC} xgetopt.c)
655 endif()
657 add_executable(lemon lemon.c)
659 ## Build parsers by using lemon...
660 lemon_parser(configparser.y)
661 lemon_parser(mod_ssi_exprparser.y)
663 set(L_INSTALL_TARGETS)
665 add_executable(lighttpd-angel lighttpd-angel.c)
666 set(L_INSTALL_TARGETS ${L_INSTALL_TARGETS} lighttpd-angel)
667 add_target_properties(lighttpd-angel COMPILE_FLAGS "-DSBIN_DIR=\\\\\"${CMAKE_INSTALL_PREFIX}/${SBINDIR}\\\\\"")
669 add_executable(lighttpd
670         server.c
671         response.c
672         connections.c
673         inet_ntop_cache.c
674         network.c
675         network_write.c
676         configfile.c
677         configparser.c
678         ${COMMON_SRC}
680 set(L_INSTALL_TARGETS ${L_INSTALL_TARGETS} lighttpd)
682 add_and_install_library(mod_access mod_access.c)
683 add_and_install_library(mod_accesslog mod_accesslog.c)
684 add_and_install_library(mod_alias mod_alias.c)
685 add_and_install_library(mod_auth "mod_auth.c")
686 add_and_install_library(mod_authn_file "mod_authn_file.c")
687 if(NOT WIN32)
688         add_and_install_library(mod_cgi mod_cgi.c)
689 endif()
690 add_and_install_library(mod_compress mod_compress.c)
691 add_and_install_library(mod_deflate mod_deflate.c)
692 add_and_install_library(mod_dirlisting mod_dirlisting.c)
693 add_and_install_library(mod_evasive mod_evasive.c)
694 add_and_install_library(mod_evhost mod_evhost.c)
695 add_and_install_library(mod_expire mod_expire.c)
696 add_and_install_library(mod_extforward mod_extforward.c)
697 add_and_install_library(mod_fastcgi mod_fastcgi.c)
698 add_and_install_library(mod_flv_streaming mod_flv_streaming.c)
699 add_and_install_library(mod_indexfile mod_indexfile.c)
700 add_and_install_library(mod_proxy mod_proxy.c)
701 add_and_install_library(mod_redirect mod_redirect.c)
702 add_and_install_library(mod_rewrite mod_rewrite.c)
703 add_and_install_library(mod_rrdtool mod_rrdtool.c)
704 add_and_install_library(mod_scgi mod_scgi.c)
705 add_and_install_library(mod_secdownload mod_secdownload.c)
706 add_and_install_library(mod_setenv mod_setenv.c)
707 add_and_install_library(mod_simple_vhost mod_simple_vhost.c)
708 add_and_install_library(mod_sockproxy mod_sockproxy.c)
709 add_and_install_library(mod_ssi "mod_ssi_exprparser.c;mod_ssi_expr.c;mod_ssi.c")
710 add_and_install_library(mod_staticfile mod_staticfile.c)
711 add_and_install_library(mod_status mod_status.c)
712 add_and_install_library(mod_uploadprogress mod_uploadprogress.c)
713 add_and_install_library(mod_userdir mod_userdir.c)
714 add_and_install_library(mod_usertrack mod_usertrack.c)
715 add_and_install_library(mod_vhostdb mod_vhostdb.c)
716 add_and_install_library(mod_webdav mod_webdav.c)
717 add_and_install_library(mod_wstunnel mod_wstunnel.c)
719 add_executable(test_array
720         t/test_array.c
721         array.c
722         data_array.c
723         data_integer.c
724         data_string.c
725         buffer.c
727 add_test(NAME test_array COMMAND test_array)
729 add_executable(test_buffer
730         t/test_buffer.c
731         buffer.c
733 add_test(NAME test_buffer COMMAND test_buffer)
735 add_executable(test_burl
736         t/test_burl.c
737         burl.c
738         buffer.c
739         base64.c
741 add_test(NAME test_burl COMMAND test_burl)
743 add_executable(test_base64
744         t/test_base64.c
745         buffer.c
746         base64.c
748 add_test(NAME test_base64 COMMAND test_base64)
750 add_executable(test_configfile
751         t/test_configfile.c
752         buffer.c
753         array.c
754         data_config.c
755         data_integer.c
756         data_string.c
757         http_header.c
758         http_kv.c
759         vector.c
760         log.c
761         sock_addr.c
763 add_test(NAME test_configfile COMMAND test_configfile)
765 add_executable(test_keyvalue
766         t/test_keyvalue.c
767         burl.c
768         buffer.c
769         base64.c
770         array.c
771         data_integer.c
772         data_string.c
773         log.c
775 add_test(NAME test_keyvalue COMMAND test_keyvalue)
777 add_executable(test_mod_access
778         t/test_mod_access.c
779         configfile-glue.c
780         buffer.c
781         array.c
782         data_config.c
783         data_integer.c
784         data_string.c
785         http_header.c
786         http_kv.c
787         vector.c
788         log.c
789         sock_addr.c
791 add_test(NAME test_mod_access COMMAND test_mod_access)
793 add_executable(test_mod_evhost
794         t/test_mod_evhost.c
795         configfile-glue.c
796         buffer.c
797         array.c
798         data_config.c
799         data_integer.c
800         data_string.c
801         http_header.c
802         http_kv.c
803         vector.c
804         log.c
805         sock_addr.c
807 add_test(NAME test_mod_evhost COMMAND test_mod_evhost)
809 add_executable(test_mod_simple_vhost
810         t/test_mod_simple_vhost.c
811         configfile-glue.c
812         buffer.c
813         array.c
814         data_config.c
815         data_integer.c
816         data_string.c
817         http_header.c
818         http_kv.c
819         vector.c
820         log.c
821         sock_addr.c
823 add_test(NAME test_mod_simple_vhost COMMAND test_mod_simple_vhost)
825 add_executable(test_request
826         t/test_request.c
827         request.c
828         buffer.c
829         array.c
830         data_integer.c
831         data_string.c
832         http_header.c
833         http_kv.c
834         log.c
835         sock_addr.c
837 add_test(NAME test_request COMMAND test_request)
839 if(HAVE_PCRE_H)
840         target_link_libraries(lighttpd ${PCRE_LDFLAGS})
841         add_target_properties(lighttpd COMPILE_FLAGS ${PCRE_CFLAGS})
842         target_link_libraries(mod_rewrite ${PCRE_LDFLAGS})
843         add_target_properties(mod_rewrite COMPILE_FLAGS ${PCRE_CFLAGS})
844         target_link_libraries(mod_dirlisting ${PCRE_LDFLAGS})
845         add_target_properties(mod_dirlisting COMPILE_FLAGS ${PCRE_CFLAGS})
846         target_link_libraries(mod_redirect ${PCRE_LDFLAGS})
847         add_target_properties(mod_redirect COMPILE_FLAGS ${PCRE_CFLAGS})
848         target_link_libraries(test_configfile ${PCRE_LDFLAGS})
849         add_target_properties(test_configfile COMPILE_FLAGS ${PCRE_CFLAGS})
850         target_link_libraries(test_keyvalue ${PCRE_LDFLAGS})
851         add_target_properties(test_keyvalue COMPILE_FLAGS ${PCRE_CFLAGS})
852         target_link_libraries(test_mod_access ${PCRE_LDFLAGS})
853         add_target_properties(test_mod_access COMPILE_FLAGS ${PCRE_CFLAGS})
854         target_link_libraries(test_mod_evhost ${PCRE_LDFLAGS})
855         add_target_properties(test_mod_evhost COMPILE_FLAGS ${PCRE_CFLAGS})
856         target_link_libraries(test_mod_simple_vhost ${PCRE_LDFLAGS})
857         add_target_properties(test_mod_simple_vhost COMPILE_FLAGS ${PCRE_CFLAGS})
858 endif()
860 if(WITH_PCRE AND (WITH_MEMCACHED OR WITH_GDBM))
861         add_and_install_library(mod_trigger_b4_dl mod_trigger_b4_dl.c)
862         target_link_libraries(mod_trigger_b4_dl ${PCRE_LDFLAGS})
863         add_target_properties(mod_trigger_b4_dl COMPILE_FLAGS ${PCRE_CFLAGS})
864 endif()
866 if(WITH_LUA)
867         add_and_install_library(mod_magnet "mod_magnet.c;mod_magnet_cache.c")
868         target_link_libraries(mod_magnet ${LUA_LDFLAGS})
869         add_target_properties(mod_magnet COMPILE_FLAGS ${LUA_CFLAGS})
871         add_and_install_library(mod_cml "mod_cml.c;mod_cml_lua.c;mod_cml_funcs.c")
872         target_link_libraries(mod_cml ${LUA_LDFLAGS})
873         add_target_properties(mod_cml COMPILE_FLAGS ${LUA_CFLAGS})
874         if(WITH_MEMCACHED)
875                 target_link_libraries(mod_cml memcached)
876         endif()
877 endif()
879 if(WITH_GEOIP)
880         add_and_install_library(mod_geoip mod_geoip.c)
881         target_link_libraries(mod_geoip GeoIP)
882 endif()
884 if(HAVE_MYSQL_H AND HAVE_MYSQL)
885         add_and_install_library(mod_mysql_vhost "mod_mysql_vhost.c")
886         target_link_libraries(mod_mysql_vhost mysqlclient)
887         add_and_install_library(mod_vhostdb_mysql "mod_vhostdb_mysql.c")
888         target_link_libraries(mod_vhostdb_mysql mysqlclient)
889         include_directories(/usr/include/mysql)
891         add_and_install_library(mod_authn_mysql "mod_authn_mysql.c")
892         set(L_MOD_AUTHN_MYSQL)
893         if(HAVE_LIBCRYPT)
894                 set(L_MOD_AUTHN_MYSQL ${L_MOD_AUTHN_MYSQL} crypt)
895         endif()
896         target_link_libraries(mod_authn_mysql ${L_MOD_AUTHN_MYSQL} mysqlclient)
897 endif()
899 if(HAVE_PGSQL_H AND HAVE_PGSQL)
900         add_and_install_library(mod_vhostdb_pgsql "mod_vhostdb_pgsql.c")
901         target_link_libraries(mod_vhostdb_pgsql pq)
902 endif()
904 if(HAVE_DBI_H AND HAVE_DBI)
905         add_and_install_library(mod_vhostdb_dbi "mod_vhostdb_dbi.c")
906         target_link_libraries(mod_vhostdb_dbi dbi)
907 endif()
909 set(L_MOD_WEBDAV)
910 if(HAVE_SQLITE3_H)
911         set(L_MOD_WEBDAV ${L_MOD_WEBDAV} sqlite3)
912 endif()
913 if(HAVE_LIBXML_H)
914         target_link_libraries(mod_webdav ${XML2_LDFLAGS})
915 endif()
916 if(HAVE_UUID_UUID_H)
917         if(NEED_LIBUUID)
918                 set(L_MOD_WEBDAV ${L_MOD_WEBDAV} uuid)
919         endif()
920 endif()
922 target_link_libraries(mod_webdav ${L_MOD_WEBDAV})
924 set(L_MOD_AUTHN_FILE)
925 if(HAVE_LIBCRYPT)
926         set(L_MOD_AUTHN_FILE ${L_MOD_AUTHN_FILE} crypt)
927 endif()
928 target_link_libraries(mod_authn_file ${L_MOD_AUTHN_FILE})
930 if(WITH_KRB5)
931         check_library_exists(krb5 krb5_init_context "" HAVE_KRB5)
932         add_and_install_library(mod_authn_gssapi "mod_authn_gssapi.c")
933         set(L_MOD_AUTHN_GSSAPI ${L_MOD_AUTHN_GSSAPI} krb5 gssapi_krb5)
934         target_link_libraries(mod_authn_gssapi ${L_MOD_AUTHN_GSSAPI})
935 endif()
937 if(WITH_LDAP)
938         set(L_MOD_AUTHN_LDAP ${L_MOD_AUTHN_LDAP} ldap lber)
939         add_and_install_library(mod_authn_ldap "mod_authn_ldap.c")
940         target_link_libraries(mod_authn_ldap ${L_MOD_AUTHN_LDAP})
941         add_and_install_library(mod_vhostdb_ldap "mod_vhostdb_ldap.c")
942         target_link_libraries(mod_vhostdb_ldap ${L_MOD_AUTHN_LDAP})
943 endif()
945 if(WITH_PAM)
946         add_and_install_library(mod_authn_pam "mod_authn_pam.c")
947         set(L_MOD_AUTHN_PAM ${L_MOD_AUTHN_PAM} pam)
948         target_link_libraries(mod_authn_pam ${L_MOD_AUTHN_PAM})
949 endif()
951 if(WITH_SASL)
952         add_and_install_library(mod_authn_sasl "mod_authn_sasl.c")
953         set(L_MOD_AUTHN_SASL ${L_MOD_AUTHN_SASL} sasl2)
954         target_link_libraries(mod_authn_sasl ${L_MOD_AUTHN_SASL})
955 endif()
957 if(HAVE_ZLIB_H)
958         if(HAVE_BZLIB_H)
959                 target_link_libraries(mod_compress ${ZLIB_LIBRARY} bz2)
960                 target_link_libraries(mod_deflate ${ZLIB_LIBRARY} bz2)
961         else()
962                 target_link_libraries(mod_compress ${ZLIB_LIBRARY})
963                 target_link_libraries(mod_deflate ${ZLIB_LIBRARY})
964         endif()
965 endif()
967 if(HAVE_LIBFAM)
968         target_link_libraries(lighttpd fam)
969 endif()
971 if(HAVE_GDBM_H)
972         target_link_libraries(mod_trigger_b4_dl gdbm)
973 endif()
975 if(WITH_MEMCACHED)
976         target_link_libraries(mod_trigger_b4_dl memcached)
977 endif()
979 if(HAVE_XATTR)
980         target_link_libraries(lighttpd attr)
981 endif()
983 if(CMAKE_C_COMPILER_ID MATCHES "GNU" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
984         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -Wall -g -Wshadow -W -pedantic ${WARN_CFLAGS}")
985         set(CMAKE_C_FLAGS_RELEASE        "${CMAKE_C_FLAGS_RELEASE}     -O2")
986         set(CMAKE_C_FLAGS_DEBUG          "${CMAKE_C_FLAGS_DEBUG}       -O0")
987         set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_WITHDEBINFO} -O2")
988         set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${WARN_LDFLAGS}")
989         set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${WARN_LDFLAGS}")
990 endif()
992 if((NOT APPLE) OR CMAKE_C_COMPILER_ID MATCHES "GNU")
993         add_target_properties(lighttpd LINK_FLAGS "-Wl,-export-dynamic")
994 endif()
996 set_target_properties(lighttpd PROPERTIES CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})
998 if(WIN32)
999         set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DNVALGRIND")
1000         add_target_properties(lighttpd COMPILE_FLAGS "-DLI_DECLARE_EXPORTS")
1001         target_link_libraries(lighttpd ws2_32)
1002         target_link_libraries(mod_proxy ws2_32)
1003         target_link_libraries(mod_fcgi ws2_32)
1004         target_link_libraries(mod_scgi ws2_32)
1005         target_link_libraries(mod_ssi ws2_32)
1007         if(MINGW)
1008                 target_link_libraries(lighttpd msvcr70)
1009                 add_target_properties(lighttpd LINK_FLAGS "-Wl,-subsystem,console")
1010         endif()
1011 endif()
1013 if(NOT BUILD_STATIC)
1014         if(HAVE_LIBDL)
1015                 target_link_libraries(lighttpd dl)
1016         endif()
1017 endif()
1019 if(NOT ${CRYPTO_LIBRARY} EQUAL "")
1020         if(NOT WITH_WOLFSSL)
1021                 target_link_libraries(lighttpd ssl)
1022         endif()
1023         target_link_libraries(lighttpd ${CRYPTO_LIBRARY})
1024         add_and_install_library(mod_openssl "mod_openssl.c")
1025         if(NOT WITH_WOLFSSL)
1026                 set(L_MOD_OPENSSL ${L_MOD_OPENSSL} ssl)
1027         endif()
1028         set(L_MOD_OPENSSL ${L_MOD_OPENSSL} ${CRYPTO_LIBRARY})
1029         target_link_libraries(mod_openssl ${L_MOD_OPENSSL})
1030         target_link_libraries(mod_auth ${CRYPTO_LIBRARY})
1031         set(L_MOD_AUTHN_FILE ${L_MOD_AUTHN_FILE} ${CRYPTO_LIBRARY})
1032         target_link_libraries(mod_authn_file ${L_MOD_AUTHN_FILE})
1033         target_link_libraries(mod_secdownload ${CRYPTO_LIBRARY})
1034         target_link_libraries(mod_wstunnel ${CRYPTO_LIBRARY})
1035 endif()
1037 if(WITH_LIBEV)
1038         target_link_libraries(lighttpd ${LIBEV_LDFLAGS})
1039         add_target_properties(lighttpd COMPILE_FLAGS ${LIBEV_CFLAGS})
1040 endif()
1042 if(WITH_LIBUNWIND)
1043         target_link_libraries(lighttpd ${LIBUNWIND_LDFLAGS})
1044         add_target_properties(lighttpd COMPILE_FLAGS ${LIBUNWIND_CFLAGS})
1046         target_link_libraries(test_array ${LIBUNWIND_LDFLAGS})
1047         add_target_properties(test_array COMPILE_FLAGS ${LIBUNWIND_CFLAGS})
1048         target_link_libraries(test_buffer ${LIBUNWIND_LDFLAGS})
1049         add_target_properties(test_buffer COMPILE_FLAGS ${LIBUNWIND_CFLAGS})
1050         target_link_libraries(test_burl ${LIBUNWIND_LDFLAGS})
1051         add_target_properties(test_burl COMPILE_FLAGS ${LIBUNWIND_CFLAGS})
1052         target_link_libraries(test_base64 ${LIBUNWIND_LDFLAGS})
1053         add_target_properties(test_base64 COMPILE_FLAGS ${LIBUNWIND_CFLAGS})
1054         target_link_libraries(test_configfile ${PCRE_LDFLAGS} ${LIBUNWIND_LDFLAGS})
1055         add_target_properties(test_configfile COMPILE_FLAGS ${PCRE_CFLAGS} ${LIBUNWIND_CFLAGS})
1056         target_link_libraries(test_keyvalue ${PCRE_LDFLAGS} ${LIBUNWIND_LDFLAGS})
1057         add_target_properties(test_keyvalue COMPILE_FLAGS ${PCRE_CFLAGS} ${LIBUNWIND_CFLAGS})
1058         target_link_libraries(test_mod_access ${PCRE_LDFLAGS} ${LIBUNWIND_LDFLAGS})
1059         add_target_properties(test_mod_access COMPILE_FLAGS ${PCRE_CFLAGS} ${LIBUNWIND_CFLAGS})
1060         target_link_libraries(test_mod_evhost ${PCRE_LDFLAGS} ${LIBUNWIND_LDFLAGS})
1061         add_target_properties(test_mod_evhost COMPILE_FLAGS ${PCRE_CFLAGS} ${LIBUNWIND_CFLAGS})
1062         target_link_libraries(test_mod_simple_vhost ${PCRE_LDFLAGS} ${LIBUNWIND_LDFLAGS})
1063         add_target_properties(test_mod_simple_vhost COMPILE_FLAGS ${PCRE_CFLAGS} ${LIBUNWIND_CFLAGS})
1064         target_link_libraries(test_request ${LIBUNWIND_LDFLAGS})
1065         add_target_properties(test_request COMPILE_FLAGS ${LIBUNWIND_CFLAGS})
1066 endif()
1068 if(NOT WIN32)
1069 install(TARGETS ${L_INSTALL_TARGETS}
1070         RUNTIME DESTINATION ${SBINDIR}
1071         LIBRARY DESTINATION ${LIGHTTPD_MODULES_DIR}
1072         ARCHIVE DESTINATION ${LIGHTTPD_MODULES_DIR}/static)
1073 else()
1074 ## HACK to make win32 to install our libraries in desired directory..
1075 install(TARGETS lighttpd
1076         RUNTIME DESTINATION ${SBINDIR}
1077         ARCHIVE DESTINATION lib/static)
1078 list(REMOVE_ITEM L_INSTALL_TARGETS lighttpd)
1079 install(TARGETS ${L_INSTALL_TARGETS}
1080         RUNTIME DESTINATION ${SBINDIR}/lib
1081         LIBRARY DESTINATION lib
1082         ARCHIVE DESTINATION lib/static)
1083 endif()