removed trailing whitespace
[platform/upstream/curl.git] / CMakeLists.txt
1 # cURL/libcurl CMake script
2 # by Tetetest and Sukender (Benoit Neil)
3
4 # TODO:
5 # The output .so file lacks the soname number which we currently have within the lib/Makefile.am file
6 # Add full (4 or 5 libs) SSL support
7 # Add INSTALL target (EXTRA_DIST variables in Makefile.am may be moved to Makefile.inc so that CMake/CPack is aware of what's to include).
8 # Add CTests(?)
9 # Check on all possible platforms
10 # Test with as many configurations possible (With or without any option)
11 # Create scripts that help keeping the CMake build system up to date (to reduce maintenance). According to Tetetest:
12 #  - lists of headers that 'configure' checks for;
13 #  - curl-specific tests (the ones that are in m4/curl-*.m4 files);
14 #  - (most obvious thing:) curl version numbers.
15 # Add documentation subproject
16 #
17 # To check:
18 # (From Daniel Stenberg) The cmake build selected to run gcc with -fPIC on my box while the plain configure script did not.
19 # (From Daniel Stenberg) The gcc command line use neither -g nor any -O options. As a developer, I also treasure our configure scripts's --enable-debug option that sets a long range of "picky" compiler options.
20 cmake_minimum_required(VERSION 2.6.2 FATAL_ERROR)
21 set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake;${CMAKE_MODULE_PATH}")
22 include(Utilities)
23
24 project( CURL C )
25
26 file (READ ${CURL_SOURCE_DIR}/include/curl/curlver.h CURL_VERSION_H_CONTENTS)
27 string (REGEX MATCH "LIBCURL_VERSION_MAJOR[ \t]+([0-9]+)"
28   LIBCURL_VERSION_MJ ${CURL_VERSION_H_CONTENTS})
29 string (REGEX MATCH "([0-9]+)"
30   LIBCURL_VERSION_MJ ${LIBCURL_VERSION_MJ})
31 string (REGEX MATCH
32   "LIBCURL_VERSION_MINOR[ \t]+([0-9]+)"
33   LIBCURL_VERSION_MI ${CURL_VERSION_H_CONTENTS})
34 string (REGEX MATCH "([0-9]+)" LIBCURL_VERSION_MI ${LIBCURL_VERSION_MI})
35 string (REGEX MATCH
36   "LIBCURL_VERSION_PATCH[ \t]+([0-9]+)"
37   LIBCURL_VERSION_PT ${CURL_VERSION_H_CONTENTS})
38 string (REGEX MATCH "([0-9]+)" LIBCURL_VERSION_PT ${LIBCURL_VERSION_PT})
39 set (CURL_MAJOR_VERSION ${LIBCURL_VERSION_MJ})
40 set (CURL_MINOR_VERSION ${LIBCURL_VERSION_MI})
41 set (CURL_PATCH_VERSION ${LIBCURL_VERSION_PT})
42
43 include_regular_expression("^.*$")    # Sukender: Is it necessary?
44
45 # Setup package meta-data
46 # SET(PACKAGE "curl")
47 set(CURL_VERSION ${CURL_MAJOR_VERSION}.${CURL_MINOR_VERSION}.${CURL_PATCH_VERSION})
48 message(STATUS "curl version=[${CURL_VERSION}]")
49 # SET(PACKAGE_TARNAME "curl")
50 # SET(PACKAGE_NAME "curl")
51 # SET(PACKAGE_VERSION "-")
52 # SET(PACKAGE_STRING "curl-")
53 # SET(PACKAGE_BUGREPORT "a suitable curl mailing list => http://curl.haxx.se/mail/")
54 set(OPERATING_SYSTEM "${CMAKE_SYSTEM_NAME}")
55 set(OS "\"${CMAKE_SYSTEM_NAME}\"")
56
57 include_directories(${PROJECT_BINARY_DIR}/include/curl)
58 include_directories( ${CURL_SOURCE_DIR}/include )
59
60 if(WIN32)
61   set(NATIVE_WINDOWS ON)
62 endif()
63
64 option(BUILD_CURL_EXE "Set to ON to build cURL executable." ON)
65 option(BUILD_CURL_TESTS "Set to ON to build cURL tests." ON)
66 option(CURL_STATICLIB "Set to ON to build libcurl with static linking." OFF)
67 option(CURL_USE_ARES "Set to ON to enable c-ares support" OFF)
68 # initialize CURL_LIBS
69 set(CURL_LIBS "")
70
71 if(CURL_USE_ARES)
72   set(USE_ARES ${CURL_USE_ARES})
73   find_package(CARES REQUIRED)
74   list(APPEND CURL_LIBS ${CARES_LIBRARY} )
75   set(CURL_LIBS ${CURL_LIBS} ${CARES_LIBRARY})
76 endif()
77
78 option(BUILD_DASHBOARD_REPORTS "Set to ON to activate reporting of cURL builds here http://www.cdash.org/CDashPublic/index.php?project=CURL" OFF)
79 if(BUILD_DASHBOARD_REPORTS)
80   #INCLUDE(Dart)
81   include(CTest)
82 endif(BUILD_DASHBOARD_REPORTS)
83
84 if(MSVC)
85   option(BUILD_RELEASE_DEBUG_DIRS "Set OFF to build each configuration to a separate directory" OFF)
86   mark_as_advanced(BUILD_RELEASE_DEBUG_DIRS)
87 endif()
88
89 option(CURL_HIDDEN_SYMBOLS "Set to ON to hide libcurl internal symbols (=hide all symbols that aren't officially external)." ON)
90 mark_as_advanced(CURL_HIDDEN_SYMBOLS)
91
92 # IF(WIN32)
93 # OPTION(CURL_WINDOWS_SSPI "Use windows libraries to allow NTLM authentication without openssl" ON)
94 # MARK_AS_ADVANCED(CURL_WINDOWS_SSPI)
95 # ENDIF()
96
97 option(HTTP_ONLY "disables all protocols except HTTP (This overrides all CURL_DISABLE_* options)" OFF)
98 mark_as_advanced(HTTP_ONLY)
99 option(CURL_DISABLE_FTP "disables FTP" OFF)
100 mark_as_advanced(CURL_DISABLE_FTP)
101 option(CURL_DISABLE_LDAP "disables LDAP" OFF)
102 mark_as_advanced(CURL_DISABLE_LDAP)
103 option(CURL_DISABLE_TELNET "disables Telnet" OFF)
104 mark_as_advanced(CURL_DISABLE_TELNET)
105 option(CURL_DISABLE_DICT "disables DICT" OFF)
106 mark_as_advanced(CURL_DISABLE_DICT)
107 option(CURL_DISABLE_FILE "disables FILE" OFF)
108 mark_as_advanced(CURL_DISABLE_FILE)
109 option(CURL_DISABLE_TFTP "disables TFTP" OFF)
110 mark_as_advanced(CURL_DISABLE_TFTP)
111 option(CURL_DISABLE_HTTP "disables HTTP" OFF)
112 mark_as_advanced(CURL_DISABLE_HTTP)
113
114 option(CURL_DISABLE_LDAPS "to disable LDAPS" OFF)
115 mark_as_advanced(CURL_DISABLE_LDAPS)
116 if(WIN32)
117   set(CURL_DEFAULT_DISABLE_LDAP OFF)
118   # some windows compilers do not have wldap32
119   if( NOT HAVE_WLDAP32)
120     set(CURL_DISABLE_LDAP ON CACHE BOOL "" FORCE)
121     message(STATUS "wldap32 not found CURL_DISABLE_LDAP set ON")
122     option(CURL_LDAP_WIN "Use Windows LDAP implementation" OFF)
123   else()
124     option(CURL_LDAP_WIN "Use Windows LDAP implementation" ON)
125   endif()
126   mark_as_advanced(CURL_LDAP_WIN)
127 endif()
128
129 if(HTTP_ONLY)
130   set(CURL_DISABLE_FTP ON)
131   set(CURL_DISABLE_LDAP ON)
132   set(CURL_DISABLE_TELNET ON)
133   set(CURL_DISABLE_DICT ON)
134   set(CURL_DISABLE_FILE ON)
135   set(CURL_DISABLE_TFTP ON)
136 endif()
137
138 option(CURL_DISABLE_COOKIES "to disable cookies support" OFF)
139 mark_as_advanced(CURL_DISABLE_COOKIES)
140
141 option(CURL_DISABLE_CRYPTO_AUTH "to disable cryptographic authentication" OFF)
142 mark_as_advanced(CURL_DISABLE_CRYPTO_AUTH)
143 option(CURL_DISABLE_VERBOSE_STRINGS "to disable verbose strings" OFF)
144 mark_as_advanced(CURL_DISABLE_VERBOSE_STRINGS)
145 option(DISABLED_THREADSAFE "Set to explicitly specify we don't want to use thread-safe functions" OFF)
146 mark_as_advanced(DISABLED_THREADSAFE)
147 option(ENABLE_IPV6 "Define if you want to enable IPv6 support" OFF)
148 mark_as_advanced(ENABLE_IPV6)
149
150 if(WIN32)
151   find_library(WSOCK32_LIBRARY wsock32)
152   find_library(WS2_32_LIBRARY ws2_32)
153   list_spaces_append_once(CMAKE_C_STANDARD_LIBRARIES ${WSOCK32_LIBRARY} ${WS2_32_LIBRARY})  # bufferoverflowu.lib
154   if(CURL_DISABLE_LDAP)
155     # Remove wldap32.lib from space-separated list
156     string(REPLACE " " ";" _LIST ${CMAKE_C_STANDARD_LIBRARIES})
157     list(REMOVE_ITEM _LIST "wldap32.lib")
158     to_list_spaces(_LIST CMAKE_C_STANDARD_LIBRARIES)
159   else()
160     # Append wldap32.lib
161     list_spaces_append_once(CMAKE_C_STANDARD_LIBRARIES wldap32.lib)
162   endif()
163   set(CMAKE_C_STANDARD_LIBRARIES "${CMAKE_C_STANDARD_LIBRARIES}"   CACHE STRING "" FORCE)
164 endif()
165
166
167 # We need ansi c-flags, especially on HP
168 set(CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS}")
169 set(CMAKE_REQUIRED_FLAGS ${CMAKE_ANSI_CFLAGS})
170
171 # Disable warnings on Borland to avoid changing 3rd party code.
172 if(BORLAND)
173   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w-")
174 endif(BORLAND)
175
176 # If we are on AIX, do the _ALL_SOURCE magic
177 if(${CMAKE_SYSTEM_NAME} MATCHES AIX)
178   set(_ALL_SOURCE 1)
179 endif(${CMAKE_SYSTEM_NAME} MATCHES AIX)
180
181 # Include all the necessary files for macros
182 include (CheckFunctionExists)
183 include (CheckIncludeFile)
184 include (CheckIncludeFiles)
185 include (CheckLibraryExists)
186 include (CheckSymbolExists)
187 include (CheckTypeSize)
188
189 # On windows preload settings
190 if(WIN32)
191   include(${CMAKE_CURRENT_SOURCE_DIR}/CMake/Platforms/WindowsCache.cmake)
192 endif(WIN32)
193
194 # This macro checks if the symbol exists in the library and if it
195 # does, it prepends library to the list.
196 macro(CHECK_LIBRARY_EXISTS_CONCAT LIBRARY SYMBOL VARIABLE)
197   check_library_exists("${LIBRARY};${CURL_LIBS}" ${SYMBOL} "${CMAKE_LIBRARY_PATH}"
198     ${VARIABLE})
199   if(${VARIABLE})
200     set(CURL_LIBS ${LIBRARY} ${CURL_LIBS})
201   endif(${VARIABLE})
202 endmacro(CHECK_LIBRARY_EXISTS_CONCAT)
203
204 # Check for all needed libraries
205 check_library_exists_concat("dl"     dlopen       HAVE_LIBDL)
206 check_library_exists_concat("socket" connect      HAVE_LIBSOCKET)
207 check_library_exists("c" gethostbyname "" NOT_NEED_LIBNSL)
208
209 # Yellowtab Zeta needs different libraries than BeOS 5.
210 if(BEOS)
211   set(NOT_NEED_LIBNSL 1)
212   check_library_exists_concat("bind" gethostbyname HAVE_LIBBIND)
213   check_library_exists_concat("bnetapi" closesocket HAVE_LIBBNETAPI)
214 endif(BEOS)
215
216 if(NOT NOT_NEED_LIBNSL)
217   check_library_exists_concat("nsl"    gethostbyname  HAVE_LIBNSL)
218 endif(NOT NOT_NEED_LIBNSL)
219
220 check_library_exists_concat("ws2_32" getch        HAVE_LIBWS2_32)
221 check_library_exists_concat("winmm"  getch        HAVE_LIBWINMM)
222 check_library_exists("wldap32" cldap_open "" HAVE_WLDAP32)
223
224 # IF(NOT CURL_SPECIAL_LIBZ)
225 #  CHECK_LIBRARY_EXISTS_CONCAT("z"      inflateEnd   HAVE_LIBZ)
226 # ENDIF(NOT CURL_SPECIAL_LIBZ)
227
228 # Check for idn
229 check_library_exists_concat("idn" idna_to_ascii_lz HAVE_LIBIDN)
230
231 # Check for LDAP
232 check_library_exists_concat("ldap" ldap_init HAVE_LIBLDAP)
233 # if(NOT HAVE_LIBLDAP)
234 # SET(CURL_DISABLE_LDAP ON)
235 # endif(NOT HAVE_LIBLDAP)
236
237 # Check for symbol dlopen (same as HAVE_LIBDL)
238 check_library_exists("${CURL_LIBS}" dlopen "" HAVE_DLOPEN)
239
240 # For other tests to use the same libraries
241 set(CMAKE_REQUIRED_LIBRARIES ${CURL_LIBS})
242
243 option(CURL_ZLIB "Set to ON to enable building cURL with zlib support." ON)
244 set(HAVE_LIBZ OFF)
245 set(HAVE_ZLIB_H OFF)
246 set(HAVE_ZLIB OFF)
247 if(CURL_ZLIB)  # AND CURL_CONFIG_HAS_BEEN_RUN_BEFORE
248   find_package(ZLIB QUIET)
249   if(ZLIB_FOUND)
250     set(HAVE_ZLIB_H ON)
251     set(HAVE_ZLIB ON)
252     set(HAVE_LIBZ ON)
253   endif()
254 endif()
255
256 option(CMAKE_USE_OPENSSL "Use OpenSSL code. Experimental" ON)
257 mark_as_advanced(CMAKE_USE_OPENSSL)
258 if(CMAKE_USE_OPENSSL)
259   if(WIN32)
260     find_package(OpenSSL)
261     if(OPENSSL_FOUND)
262       set(USE_SSLEAY TRUE)
263       set(USE_OPENSSL TRUE)
264       list(APPEND CURL_LIBS ${OPENSSL_LIBRARIES} )
265     else()
266       set(CMAKE_USE_OPENSSL FALSE)
267       message(STATUS "OpenSSL NOT Found, disabling CMAKE_USE_OPENSSL")
268     endif()
269   else(WIN32)
270     check_library_exists_concat("crypto" CRYPTO_lock  HAVE_LIBCRYPTO)
271     check_library_exists_concat("ssl"    SSL_connect  HAVE_LIBSSL)
272   endif(WIN32)
273 endif(CMAKE_USE_OPENSSL)
274
275 # If we have features.h, then do the _BSD_SOURCE magic
276 check_include_file("features.h"       HAVE_FEATURES_H)
277
278 # Check if header file exists and add it to the list.
279 macro(CHECK_INCLUDE_FILE_CONCAT FILE VARIABLE)
280   check_include_files("${CURL_INCLUDES};${FILE}" ${VARIABLE})
281   if(${VARIABLE})
282     set(CURL_INCLUDES ${CURL_INCLUDES} ${FILE})
283     set(CURL_TEST_DEFINES "${CURL_TEST_DEFINES} -D${VARIABLE}")
284   endif(${VARIABLE})
285 endmacro(CHECK_INCLUDE_FILE_CONCAT)
286
287
288 # Check for header files
289 if(NOT UNIX)
290   check_include_file_concat("ws2tcpip.h"     HAVE_WS2TCPIP_H)
291   check_include_file_concat("winsock2.h"     HAVE_WINSOCK2_H)
292 endif(NOT UNIX)
293 check_include_file_concat("stdio.h"          HAVE_STDIO_H)
294 if(NOT UNIX)
295   check_include_file_concat("windows.h"      HAVE_WINDOWS_H)
296   check_include_file_concat("winsock.h"      HAVE_WINSOCK_H)
297 endif(NOT UNIX)
298
299 check_include_file_concat("inttypes.h"       HAVE_INTTYPES_H)
300 check_include_file_concat("sys/filio.h"      HAVE_SYS_FILIO_H)
301 check_include_file_concat("sys/ioctl.h"      HAVE_SYS_IOCTL_H)
302 check_include_file_concat("sys/param.h"      HAVE_SYS_PARAM_H)
303 check_include_file_concat("sys/poll.h"       HAVE_SYS_POLL_H)
304 check_include_file_concat("sys/resource.h"   HAVE_SYS_RESOURCE_H)
305 check_include_file_concat("sys/select.h"     HAVE_SYS_SELECT_H)
306 check_include_file_concat("sys/socket.h"     HAVE_SYS_SOCKET_H)
307 check_include_file_concat("sys/sockio.h"     HAVE_SYS_SOCKIO_H)
308 check_include_file_concat("sys/stat.h"       HAVE_SYS_STAT_H)
309 check_include_file_concat("sys/time.h"       HAVE_SYS_TIME_H)
310 check_include_file_concat("sys/types.h"      HAVE_SYS_TYPES_H)
311 check_include_file_concat("sys/uio.h"        HAVE_SYS_UIO_H)
312 check_include_file_concat("sys/un.h"         HAVE_SYS_UN_H)
313 check_include_file_concat("sys/utime.h"      HAVE_SYS_UTIME_H)
314 check_include_file_concat("alloca.h"         HAVE_ALLOCA_H)
315 check_include_file_concat("arpa/inet.h"      HAVE_ARPA_INET_H)
316 check_include_file_concat("arpa/tftp.h"      HAVE_ARPA_TFTP_H)
317 check_include_file_concat("assert.h"         HAVE_ASSERT_H)
318 check_include_file_concat("crypto.h"         HAVE_CRYPTO_H)
319 check_include_file_concat("des.h"            HAVE_DES_H)
320 check_include_file_concat("err.h"            HAVE_ERR_H)
321 check_include_file_concat("errno.h"          HAVE_ERRNO_H)
322 check_include_file_concat("fcntl.h"          HAVE_FCNTL_H)
323 check_include_file_concat("gssapi/gssapi.h"  HAVE_GSSAPI_GSSAPI_H)
324 check_include_file_concat("gssapi/gssapi_generic.h" HAVE_GSSAPI_GSSAPI_GENERIC_H)
325 check_include_file_concat("gssapi/gssapi_krb5.h" HAVE_GSSAPI_GSSAPI_KRB5_H)
326 check_include_file_concat("idn-free.h"       HAVE_IDN_FREE_H)
327 check_include_file_concat("ifaddrs.h"        HAVE_IFADDRS_H)
328 check_include_file_concat("io.h"             HAVE_IO_H)
329 check_include_file_concat("krb.h"            HAVE_KRB_H)
330 check_include_file_concat("libgen.h"         HAVE_LIBGEN_H)
331 check_include_file_concat("libssh2.h"        HAVE_LIBSSH2_H)
332 check_include_file_concat("limits.h"         HAVE_LIMITS_H)
333 check_include_file_concat("locale.h"         HAVE_LOCALE_H)
334 check_include_file_concat("net/if.h"         HAVE_NET_IF_H)
335 check_include_file_concat("netdb.h"          HAVE_NETDB_H)
336 check_include_file_concat("netinet/in.h"     HAVE_NETINET_IN_H)
337 check_include_file_concat("netinet/tcp.h"    HAVE_NETINET_TCP_H)
338 check_include_file_concat("openssl/crypto.h" HAVE_OPENSSL_CRYPTO_H)
339 check_include_file_concat("openssl/engine.h" HAVE_OPENSSL_ENGINE_H)
340 check_include_file_concat("openssl/err.h"    HAVE_OPENSSL_ERR_H)
341 check_include_file_concat("openssl/pem.h"    HAVE_OPENSSL_PEM_H)
342 check_include_file_concat("openssl/pkcs12.h" HAVE_OPENSSL_PKCS12_H)
343 check_include_file_concat("openssl/rsa.h"    HAVE_OPENSSL_RSA_H)
344 check_include_file_concat("openssl/ssl.h"    HAVE_OPENSSL_SSL_H)
345 check_include_file_concat("openssl/x509.h"   HAVE_OPENSSL_X509_H)
346 check_include_file_concat("pem.h"            HAVE_PEM_H)
347 check_include_file_concat("poll.h"           HAVE_POLL_H)
348 check_include_file_concat("pwd.h"            HAVE_PWD_H)
349 check_include_file_concat("rsa.h"            HAVE_RSA_H)
350 check_include_file_concat("setjmp.h"         HAVE_SETJMP_H)
351 check_include_file_concat("sgtty.h"          HAVE_SGTTY_H)
352 check_include_file_concat("signal.h"         HAVE_SIGNAL_H)
353 check_include_file_concat("ssl.h"            HAVE_SSL_H)
354 check_include_file_concat("stdbool.h"        HAVE_STDBOOL_H)
355 check_include_file_concat("stdint.h"         HAVE_STDINT_H)
356 check_include_file_concat("stdio.h"          HAVE_STDIO_H)
357 check_include_file_concat("stdlib.h"         HAVE_STDLIB_H)
358 check_include_file_concat("string.h"         HAVE_STRING_H)
359 check_include_file_concat("strings.h"        HAVE_STRINGS_H)
360 check_include_file_concat("stropts.h"        HAVE_STROPTS_H)
361 check_include_file_concat("termio.h"         HAVE_TERMIO_H)
362 check_include_file_concat("termios.h"        HAVE_TERMIOS_H)
363 check_include_file_concat("time.h"           HAVE_TIME_H)
364 check_include_file_concat("tld.h"            HAVE_TLD_H)
365 check_include_file_concat("unistd.h"         HAVE_UNISTD_H)
366 check_include_file_concat("utime.h"          HAVE_UTIME_H)
367 check_include_file_concat("x509.h"           HAVE_X509_H)
368
369 check_include_file_concat("process.h"        HAVE_PROCESS_H)
370 check_include_file_concat("stddef.h"         HAVE_STDDEF_H)
371 check_include_file_concat("dlfcn.h"          HAVE_DLFCN_H)
372 check_include_file_concat("malloc.h"         HAVE_MALLOC_H)
373 check_include_file_concat("memory.h"         HAVE_MEMORY_H)
374 check_include_file_concat("ldap.h"           HAVE_LDAP_H)
375 check_include_file_concat("netinet/if_ether.h" HAVE_NETINET_IF_ETHER_H)
376 check_include_file_concat("stdint.h"        HAVE_STDINT_H)
377 check_include_file_concat("sockio.h"        HAVE_SOCKIO_H)
378 check_include_file_concat("sys/utsname.h"   HAVE_SYS_UTSNAME_H)
379 check_include_file_concat("idna.h"          HAVE_IDNA_H)
380
381 if(CMAKE_USE_OPENSSL)
382   check_include_file_concat("openssl/rand.h"   HAVE_OPENSSL_RAND_H)
383 endif(CMAKE_USE_OPENSSL)
384
385 if(NOT HAVE_LDAP_H)
386   message(STATUS "LDAP_H not found CURL_DISABLE_LDAP set ON")
387   set(CURL_DISABLE_LDAP ON CACHE BOOL "" FORCE)
388 endif()
389
390
391 check_type_size(size_t  SIZEOF_SIZE_T)
392 check_type_size(ssize_t  SIZEOF_SSIZE_T)
393 check_type_size("long long"  SIZEOF_LONG_LONG)
394 check_type_size("long"  SIZEOF_LONG)
395 check_type_size("short"  SIZEOF_SHORT)
396 check_type_size("int"  SIZEOF_INT)
397 check_type_size("__int64"  SIZEOF___INT64)
398 check_type_size("long double"  SIZEOF_LONG_DOUBLE)
399 check_type_size("time_t"  SIZEOF_TIME_T)
400 if(NOT HAVE_SIZEOF_SSIZE_T)
401   if(SIZEOF_LONG EQUAL SIZEOF_SIZE_T)
402     set(ssize_t long)
403   endif(SIZEOF_LONG EQUAL SIZEOF_SIZE_T)
404   if(NOT ssize_t AND SIZEOF___INT64 EQUAL SIZEOF_SIZE_T)
405     set(ssize_t __int64)
406   endif(NOT ssize_t AND SIZEOF___INT64 EQUAL SIZEOF_SIZE_T)
407 endif(NOT HAVE_SIZEOF_SSIZE_T)
408
409 # Different sizeofs, etc.
410
411 #    define CURL_SIZEOF_LONG        4
412 #    define CURL_TYPEOF_CURL_OFF_T  long long
413 #    define CURL_FORMAT_CURL_OFF_T  "lld"
414 #    define CURL_FORMAT_CURL_OFF_TU "llu"
415 #    define CURL_FORMAT_OFF_T       "%lld"
416 #    define CURL_SIZEOF_CURL_OFF_T  8
417 #    define CURL_SUFFIX_CURL_OFF_T  LL
418 #    define CURL_SUFFIX_CURL_OFF_TU ULL
419
420 set(CURL_SIZEOF_LONG ${SIZEOF_LONG})
421
422 if(SIZEOF_LONG EQUAL 8)
423   set(CURL_TYPEOF_CURL_OFF_T long)
424   set(CURL_SIZEOF_CURL_OFF_T 8)
425   set(CURL_FORMAT_CURL_OFF_T "ld")
426   set(CURL_FORMAT_CURL_OFF_TU "lu")
427   set(CURL_FORMAT_OFF_T "%ld")
428   set(CURL_SUFFIX_CURL_OFF_T L)
429   set(CURL_SUFFIX_CURL_OFF_TU LU)
430 endif(SIZEOF_LONG EQUAL 8)
431
432 if(SIZEOF_LONG_LONG EQUAL 8)
433   set(CURL_TYPEOF_CURL_OFF_T "long long")
434   set(CURL_SIZEOF_CURL_OFF_T 8)
435   set(CURL_FORMAT_CURL_OFF_T "lld")
436   set(CURL_FORMAT_CURL_OFF_TU "llu")
437   set(CURL_FORMAT_OFF_T "%lld")
438   set(CURL_SUFFIX_CURL_OFF_T LL)
439   set(CURL_SUFFIX_CURL_OFF_TU LLU)
440 endif(SIZEOF_LONG_LONG EQUAL 8)
441
442 if(NOT CURL_TYPEOF_CURL_OFF_T)
443   set(CURL_TYPEOF_CURL_OFF_T ${ssize_t})
444   set(CURL_SIZEOF_CURL_OFF_T ${SIZEOF_SSIZE_T})
445   # TODO: need adjustment here.
446   set(CURL_FORMAT_CURL_OFF_T "ld")
447   set(CURL_FORMAT_CURL_OFF_TU "lu")
448   set(CURL_FORMAT_OFF_T "%ld")
449   set(CURL_SUFFIX_CURL_OFF_T L)
450   set(CURL_SUFFIX_CURL_OFF_TU LU)
451 endif(NOT CURL_TYPEOF_CURL_OFF_T)
452
453 if(HAVE_SIZEOF_LONG_LONG)
454   set(HAVE_LONGLONG 1)
455   set(HAVE_LL 1)
456 endif(HAVE_SIZEOF_LONG_LONG)
457
458 find_file(RANDOM_FILE urandom /dev)
459 mark_as_advanced(RANDOM_FILE)
460
461 # Check for some functions that are used
462 check_symbol_exists(basename      "${CURL_INCLUDES}" HAVE_BASENAME)
463 check_symbol_exists(socket        "${CURL_INCLUDES}" HAVE_SOCKET)
464 check_symbol_exists(poll          "${CURL_INCLUDES}" HAVE_POLL)
465 check_symbol_exists(select        "${CURL_INCLUDES}" HAVE_SELECT)
466 check_symbol_exists(strdup        "${CURL_INCLUDES}" HAVE_STRDUP)
467 check_symbol_exists(strstr        "${CURL_INCLUDES}" HAVE_STRSTR)
468 check_symbol_exists(strtok_r      "${CURL_INCLUDES}" HAVE_STRTOK_R)
469 check_symbol_exists(strftime      "${CURL_INCLUDES}" HAVE_STRFTIME)
470 check_symbol_exists(uname         "${CURL_INCLUDES}" HAVE_UNAME)
471 check_symbol_exists(strcasecmp    "${CURL_INCLUDES}" HAVE_STRCASECMP)
472 check_symbol_exists(stricmp       "${CURL_INCLUDES}" HAVE_STRICMP)
473 check_symbol_exists(strcmpi       "${CURL_INCLUDES}" HAVE_STRCMPI)
474 check_symbol_exists(strncmpi      "${CURL_INCLUDES}" HAVE_STRNCMPI)
475 check_symbol_exists(alarm         "${CURL_INCLUDES}" HAVE_ALARM)
476 if(NOT HAVE_STRNCMPI)
477   set(HAVE_STRCMPI)
478 endif(NOT HAVE_STRNCMPI)
479 check_symbol_exists(gethostbyaddr "${CURL_INCLUDES}" HAVE_GETHOSTBYADDR)
480 check_symbol_exists(gethostbyaddr_r "${CURL_INCLUDES}" HAVE_GETHOSTBYADDR_R)
481 check_symbol_exists(gettimeofday  "${CURL_INCLUDES}" HAVE_GETTIMEOFDAY)
482 check_symbol_exists(inet_addr     "${CURL_INCLUDES}" HAVE_INET_ADDR)
483 check_symbol_exists(inet_ntoa     "${CURL_INCLUDES}" HAVE_INET_NTOA)
484 check_symbol_exists(inet_ntoa_r   "${CURL_INCLUDES}" HAVE_INET_NTOA_R)
485 check_symbol_exists(tcsetattr     "${CURL_INCLUDES}" HAVE_TCSETATTR)
486 check_symbol_exists(tcgetattr     "${CURL_INCLUDES}" HAVE_TCGETATTR)
487 check_symbol_exists(perror        "${CURL_INCLUDES}" HAVE_PERROR)
488 check_symbol_exists(closesocket   "${CURL_INCLUDES}" HAVE_CLOSESOCKET)
489 check_symbol_exists(setvbuf       "${CURL_INCLUDES}" HAVE_SETVBUF)
490 check_symbol_exists(sigsetjmp     "${CURL_INCLUDES}" HAVE_SIGSETJMP)
491 check_symbol_exists(getpass_r     "${CURL_INCLUDES}" HAVE_GETPASS_R)
492 check_symbol_exists(strlcat       "${CURL_INCLUDES}" HAVE_STRLCAT)
493 check_symbol_exists(getpwuid      "${CURL_INCLUDES}" HAVE_GETPWUID)
494 check_symbol_exists(geteuid       "${CURL_INCLUDES}" HAVE_GETEUID)
495 check_symbol_exists(utime         "${CURL_INCLUDES}" HAVE_UTIME)
496 if(CMAKE_USE_OPENSSL)
497   check_symbol_exists(RAND_status   "${CURL_INCLUDES}" HAVE_RAND_STATUS)
498   check_symbol_exists(RAND_screen   "${CURL_INCLUDES}" HAVE_RAND_SCREEN)
499   check_symbol_exists(RAND_egd      "${CURL_INCLUDES}" HAVE_RAND_EGD)
500   check_symbol_exists(CRYPTO_cleanup_all_ex_data "${CURL_INCLUDES}"
501     HAVE_CRYPTO_CLEANUP_ALL_EX_DATA)
502   if(HAVE_LIBCRYPTO AND HAVE_LIBSSL)
503     set(USE_OPENSSL 1)
504     set(USE_SSLEAY 1)
505   endif(HAVE_LIBCRYPTO AND HAVE_LIBSSL)
506 endif(CMAKE_USE_OPENSSL)
507 check_symbol_exists(gmtime_r      "${CURL_INCLUDES}" HAVE_GMTIME_R)
508 check_symbol_exists(localtime_r   "${CURL_INCLUDES}" HAVE_LOCALTIME_R)
509
510 check_symbol_exists(gethostbyname   "${CURL_INCLUDES}" HAVE_GETHOSTBYNAME)
511 check_symbol_exists(gethostbyname_r "${CURL_INCLUDES}" HAVE_GETHOSTBYNAME_R)
512
513 check_symbol_exists(signal        "${CURL_INCLUDES}" HAVE_SIGNAL_FUNC)
514 check_symbol_exists(SIGALRM       "${CURL_INCLUDES}" HAVE_SIGNAL_MACRO)
515 if(HAVE_SIGNAL_FUNC AND HAVE_SIGNAL_MACRO)
516   set(HAVE_SIGNAL 1)
517 endif(HAVE_SIGNAL_FUNC AND HAVE_SIGNAL_MACRO)
518 check_symbol_exists(uname          "${CURL_INCLUDES}" HAVE_UNAME)
519 check_symbol_exists(strtoll        "${CURL_INCLUDES}" HAVE_STRTOLL)
520 check_symbol_exists(_strtoi64      "${CURL_INCLUDES}" HAVE__STRTOI64)
521 check_symbol_exists(strerror_r     "${CURL_INCLUDES}" HAVE_STRERROR_R)
522 check_symbol_exists(siginterrupt   "${CURL_INCLUDES}" HAVE_SIGINTERRUPT)
523 check_symbol_exists(perror         "${CURL_INCLUDES}" HAVE_PERROR)
524 check_symbol_exists(fork           "${CURL_INCLUDES}" HAVE_FORK)
525 check_symbol_exists(freeaddrinfo   "${CURL_INCLUDES}" HAVE_FREEADDRINFO)
526 check_symbol_exists(freeifaddrs    "${CURL_INCLUDES}" HAVE_FREEIFADDRS)
527 check_symbol_exists(pipe           "${CURL_INCLUDES}" HAVE_PIPE)
528 check_symbol_exists(ftruncate      "${CURL_INCLUDES}" HAVE_FTRUNCATE)
529 check_symbol_exists(getprotobyname "${CURL_INCLUDES}" HAVE_GETPROTOBYNAME)
530 check_symbol_exists(getrlimit      "${CURL_INCLUDES}" HAVE_GETRLIMIT)
531 check_symbol_exists(idn_free       "${CURL_INCLUDES}" HAVE_IDN_FREE)
532 check_symbol_exists(idna_strerror  "${CURL_INCLUDES}" HAVE_IDNA_STRERROR)
533 check_symbol_exists(tld_strerror   "${CURL_INCLUDES}" HAVE_TLD_STRERROR)
534 check_symbol_exists(setlocale      "${CURL_INCLUDES}" HAVE_SETLOCALE)
535 check_symbol_exists(setrlimit      "${CURL_INCLUDES}" HAVE_SETRLIMIT)
536 check_symbol_exists(fcntl          "${CURL_INCLUDES}" HAVE_FCNTL)
537 check_symbol_exists(ioctl          "${CURL_INCLUDES}" HAVE_IOCTL)
538 check_symbol_exists(setsockopt     "${CURL_INCLUDES}" HAVE_SETSOCKOPT)
539
540 # symbol exists in win32, but function does not.
541 check_function_exists(inet_pton HAVE_INET_PTON)
542
543 # sigaction and sigsetjmp are special. Use special mechanism for
544 # detecting those, but only if previous attempt failed.
545 if(HAVE_SIGNAL_H)
546   check_symbol_exists(sigaction "signal.h" HAVE_SIGACTION)
547 endif(HAVE_SIGNAL_H)
548
549 if(NOT HAVE_SIGSETJMP)
550   if(HAVE_SETJMP_H)
551     check_symbol_exists(sigsetjmp "setjmp.h" HAVE_MACRO_SIGSETJMP)
552     if(HAVE_MACRO_SIGSETJMP)
553       set(HAVE_SIGSETJMP 1)
554     endif(HAVE_MACRO_SIGSETJMP)
555   endif(HAVE_SETJMP_H)
556 endif(NOT HAVE_SIGSETJMP)
557
558 # If there is no stricmp(), do not allow LDAP to parse URLs
559 if(NOT HAVE_STRICMP)
560   set(HAVE_LDAP_URL_PARSE 1)
561 endif(NOT HAVE_STRICMP)
562
563 # For other curl specific tests, use this macro.
564 macro(CURL_INTERNAL_TEST CURL_TEST)
565   if("${CURL_TEST}" MATCHES "^${CURL_TEST}$")
566     set(MACRO_CHECK_FUNCTION_DEFINITIONS
567       "-D${CURL_TEST} ${CURL_TEST_DEFINES} ${CMAKE_REQUIRED_FLAGS}")
568     if(CMAKE_REQUIRED_LIBRARIES)
569       set(CURL_TEST_ADD_LIBRARIES
570         "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}")
571     endif(CMAKE_REQUIRED_LIBRARIES)
572
573     message(STATUS "Performing Curl Test ${CURL_TEST}")
574     try_compile(${CURL_TEST}
575       ${CMAKE_BINARY_DIR}
576       ${CMAKE_CURRENT_SOURCE_DIR}/CMake/CurlTests.c
577       CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
578       "${CURL_TEST_ADD_LIBRARIES}"
579       OUTPUT_VARIABLE OUTPUT)
580     if(${CURL_TEST})
581       set(${CURL_TEST} 1 CACHE INTERNAL "Curl test ${FUNCTION}")
582       message(STATUS "Performing Curl Test ${CURL_TEST} - Success")
583       file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
584         "Performing Curl Test ${CURL_TEST} passed with the following output:\n"
585         "${OUTPUT}\n")
586     else(${CURL_TEST})
587       message(STATUS "Performing Curl Test ${CURL_TEST} - Failed")
588       set(${CURL_TEST} "" CACHE INTERNAL "Curl test ${FUNCTION}")
589       file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
590         "Performing Curl Test ${CURL_TEST} failed with the following output:\n"
591         "${OUTPUT}\n")
592     endif(${CURL_TEST})
593   endif("${CURL_TEST}" MATCHES "^${CURL_TEST}$")
594 endmacro(CURL_INTERNAL_TEST)
595
596 macro(CURL_INTERNAL_TEST_RUN CURL_TEST)
597   if("${CURL_TEST}_COMPILE" MATCHES "^${CURL_TEST}_COMPILE$")
598     set(MACRO_CHECK_FUNCTION_DEFINITIONS
599       "-D${CURL_TEST} ${CMAKE_REQUIRED_FLAGS}")
600     if(CMAKE_REQUIRED_LIBRARIES)
601       set(CURL_TEST_ADD_LIBRARIES
602         "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}")
603     endif(CMAKE_REQUIRED_LIBRARIES)
604
605     message(STATUS "Performing Curl Test ${CURL_TEST}")
606     try_run(${CURL_TEST} ${CURL_TEST}_COMPILE
607       ${CMAKE_BINARY_DIR}
608       ${CMAKE_CURRENT_SOURCE_DIR}/CMake/CurlTests.c
609       CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
610       "${CURL_TEST_ADD_LIBRARIES}"
611       OUTPUT_VARIABLE OUTPUT)
612     if(${CURL_TEST}_COMPILE AND NOT ${CURL_TEST})
613       set(${CURL_TEST} 1 CACHE INTERNAL "Curl test ${FUNCTION}")
614       message(STATUS "Performing Curl Test ${CURL_TEST} - Success")
615     else(${CURL_TEST}_COMPILE AND NOT ${CURL_TEST})
616       message(STATUS "Performing Curl Test ${CURL_TEST} - Failed")
617       set(${CURL_TEST} "" CACHE INTERNAL "Curl test ${FUNCTION}")
618       file(APPEND "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log"
619         "Performing Curl Test ${CURL_TEST} failed with the following output:\n"
620         "${OUTPUT}")
621       if(${CURL_TEST}_COMPILE)
622         file(APPEND
623           "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log"
624           "There was a problem running this test\n")
625       endif(${CURL_TEST}_COMPILE)
626       file(APPEND "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log"
627         "\n\n")
628     endif(${CURL_TEST}_COMPILE AND NOT ${CURL_TEST})
629   endif("${CURL_TEST}_COMPILE" MATCHES "^${CURL_TEST}_COMPILE$")
630 endmacro(CURL_INTERNAL_TEST_RUN)
631
632 # Do curl specific tests
633 foreach(CURL_TEST
634     HAVE_FCNTL_O_NONBLOCK
635     HAVE_IOCTLSOCKET
636     HAVE_IOCTLSOCKET_CAMEL
637     HAVE_IOCTLSOCKET_CAMEL_FIONBIO
638     HAVE_IOCTLSOCKET_FIONBIO
639     HAVE_IOCTL_FIONBIO
640     HAVE_IOCTL_SIOCGIFADDR
641     HAVE_SETSOCKOPT_SO_NONBLOCK
642     HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
643     TIME_WITH_SYS_TIME
644     HAVE_O_NONBLOCK
645     HAVE_GETHOSTBYADDR_R_5
646     HAVE_GETHOSTBYADDR_R_7
647     HAVE_GETHOSTBYADDR_R_8
648     HAVE_GETHOSTBYADDR_R_5_REENTRANT
649     HAVE_GETHOSTBYADDR_R_7_REENTRANT
650     HAVE_GETHOSTBYADDR_R_8_REENTRANT
651     HAVE_GETHOSTBYNAME_R_3
652     HAVE_GETHOSTBYNAME_R_5
653     HAVE_GETHOSTBYNAME_R_6
654     HAVE_GETHOSTBYNAME_R_3_REENTRANT
655     HAVE_GETHOSTBYNAME_R_5_REENTRANT
656     HAVE_GETHOSTBYNAME_R_6_REENTRANT
657     HAVE_SOCKLEN_T
658     HAVE_IN_ADDR_T
659     HAVE_BOOL_T
660     STDC_HEADERS
661     RETSIGTYPE_TEST
662     HAVE_INET_NTOA_R_DECL
663     HAVE_INET_NTOA_R_DECL_REENTRANT
664     HAVE_GETADDRINFO
665     HAVE_FILE_OFFSET_BITS
666     )
667   curl_internal_test(${CURL_TEST})
668 endforeach(CURL_TEST)
669 if(HAVE_FILE_OFFSET_BITS)
670   set(_FILE_OFFSET_BITS 64)
671 endif(HAVE_FILE_OFFSET_BITS)
672 foreach(CURL_TEST
673     HAVE_GLIBC_STRERROR_R
674     HAVE_POSIX_STRERROR_R
675     )
676   curl_internal_test_run(${CURL_TEST})
677 endforeach(CURL_TEST)
678
679 # Check for reentrant
680 foreach(CURL_TEST
681     HAVE_GETHOSTBYADDR_R_5
682     HAVE_GETHOSTBYADDR_R_7
683     HAVE_GETHOSTBYADDR_R_8
684     HAVE_GETHOSTBYNAME_R_3
685     HAVE_GETHOSTBYNAME_R_5
686     HAVE_GETHOSTBYNAME_R_6
687     HAVE_INET_NTOA_R_DECL_REENTRANT)
688   if(NOT ${CURL_TEST})
689     if(${CURL_TEST}_REENTRANT)
690       set(NEED_REENTRANT 1)
691     endif(${CURL_TEST}_REENTRANT)
692   endif(NOT ${CURL_TEST})
693 endforeach(CURL_TEST)
694
695 if(NEED_REENTRANT)
696   foreach(CURL_TEST
697       HAVE_GETHOSTBYADDR_R_5
698       HAVE_GETHOSTBYADDR_R_7
699       HAVE_GETHOSTBYADDR_R_8
700       HAVE_GETHOSTBYNAME_R_3
701       HAVE_GETHOSTBYNAME_R_5
702       HAVE_GETHOSTBYNAME_R_6)
703     set(${CURL_TEST} 0)
704     if(${CURL_TEST}_REENTRANT)
705       set(${CURL_TEST} 1)
706     endif(${CURL_TEST}_REENTRANT)
707   endforeach(CURL_TEST)
708 endif(NEED_REENTRANT)
709
710 if(HAVE_INET_NTOA_R_DECL_REENTRANT)
711   set(HAVE_INET_NTOA_R_DECL 1)
712   set(NEED_REENTRANT 1)
713 endif(HAVE_INET_NTOA_R_DECL_REENTRANT)
714
715 # Some other minor tests
716
717 if(NOT HAVE_IN_ADDR_T)
718   set(in_addr_t "unsigned long")
719 endif(NOT HAVE_IN_ADDR_T)
720
721 # Fix libz / zlib.h
722
723 if(NOT CURL_SPECIAL_LIBZ)
724   if(NOT HAVE_LIBZ)
725     set(HAVE_ZLIB_H 0)
726   endif(NOT HAVE_LIBZ)
727
728   if(NOT HAVE_ZLIB_H)
729     set(HAVE_LIBZ 0)
730   endif(NOT HAVE_ZLIB_H)
731 endif(NOT CURL_SPECIAL_LIBZ)
732
733 if(_FILE_OFFSET_BITS)
734   set(_FILE_OFFSET_BITS 64)
735 endif(_FILE_OFFSET_BITS)
736 set(CMAKE_REQUIRED_FLAGS "-D_FILE_OFFSET_BITS=64")
737 set(CMAKE_EXTRA_INCLUDE_FILES "${CMAKE_CURRENT_SOURCE_DIR}/curl/curl.h")
738 check_type_size("curl_off_t" SIZEOF_CURL_OFF_T)
739 set(CMAKE_EXTRA_INCLUDE_FILES)
740 set(CMAKE_REQUIRED_FLAGS)
741
742
743 # Check for nonblocking
744 set(HAVE_DISABLED_NONBLOCKING 1)
745 if(HAVE_FIONBIO OR
746     HAVE_IOCTLSOCKET OR
747     HAVE_IOCTLSOCKET_CASE OR
748     HAVE_O_NONBLOCK)
749   set(HAVE_DISABLED_NONBLOCKING)
750 endif(HAVE_FIONBIO OR
751   HAVE_IOCTLSOCKET OR
752   HAVE_IOCTLSOCKET_CASE OR
753   HAVE_O_NONBLOCK)
754
755 if(RETSIGTYPE_TEST)
756   set(RETSIGTYPE void)
757 else(RETSIGTYPE_TEST)
758   set(RETSIGTYPE int)
759 endif(RETSIGTYPE_TEST)
760
761 if(CMAKE_COMPILER_IS_GNUCC AND APPLE)
762   include(CheckCCompilerFlag)
763   check_c_compiler_flag(-Wno-long-double HAVE_C_FLAG_Wno_long_double)
764   if(HAVE_C_FLAG_Wno_long_double)
765     # The Mac version of GCC warns about use of long double.  Disable it.
766     get_source_file_property(MPRINTF_COMPILE_FLAGS mprintf.c COMPILE_FLAGS)
767     if(MPRINTF_COMPILE_FLAGS)
768       set(MPRINTF_COMPILE_FLAGS "${MPRINTF_COMPILE_FLAGS} -Wno-long-double")
769     else(MPRINTF_COMPILE_FLAGS)
770       set(MPRINTF_COMPILE_FLAGS "-Wno-long-double")
771     endif(MPRINTF_COMPILE_FLAGS)
772     set_source_files_properties(mprintf.c PROPERTIES
773       COMPILE_FLAGS ${MPRINTF_COMPILE_FLAGS})
774   endif(HAVE_C_FLAG_Wno_long_double)
775 endif(CMAKE_COMPILER_IS_GNUCC AND APPLE)
776
777 if(HAVE_SOCKLEN_T)
778   set(CURL_TYPEOF_CURL_SOCKLEN_T "socklen_t")
779   if(WIN32)
780     set(CMAKE_EXTRA_INCLUDE_FILES "winsock2.h;ws2tcpip.h")
781   elseif(HAVE_SYS_SOCKET_H)
782     set(CMAKE_EXTRA_INCLUDE_FILES "sys/socket.h")
783   endif()
784   check_type_size("socklen_t" CURL_SIZEOF_CURL_SOCKLEN_T)
785   set(CMAKE_EXTRA_INCLUDE_FILES)
786   if(NOT HAVE_CURL_SIZEOF_CURL_SOCKLEN_T)
787     message(FATAL_ERROR
788      "Check for sizeof socklen_t failed, see CMakeFiles/CMakerror.log")
789   endif()
790 else()
791   set(CURL_TYPEOF_CURL_SOCKLEN_T int)
792   set(CURL_SIZEOF_CURL_SOCKLEN_T ${SIZEOF_INT})
793 endif()
794
795 include(CMake/OtherTests.cmake)
796
797 add_definitions(-DHAVE_CONFIG_H)
798
799 # For windows, do not allow the compiler to use default target (Vista).
800 if(WIN32)
801   add_definitions(-D_WIN32_WINNT=0x0501)
802 endif(WIN32)
803
804 if(MSVC)
805   add_definitions(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
806 endif(MSVC)
807
808 # Sets up the dependencies (zlib, OpenSSL, etc.) of a cURL subproject according to options.
809 # TODO This is far to be complete!
810 function(SETUP_CURL_DEPENDENCIES TARGET_NAME)
811   if(CURL_ZLIB AND ZLIB_FOUND)
812     include_directories(${ZLIB_INCLUDE_DIR})
813   endif()
814   if(CURL_ZLIB AND ZLIB_FOUND)
815     target_link_libraries(${TARGET_NAME} ${ZLIB_LIBRARIES})
816     #ADD_DEFINITIONS( -DHAVE_ZLIB_H -DHAVE_ZLIB -DHAVE_LIBZ )
817   endif()
818
819   if(CMAKE_USE_OPENSSL AND OPENSSL_FOUND)
820     include_directories(${OPENSSL_INCLUDE_DIR})
821   endif()
822   if(CMAKE_USE_OPENSSL AND CURL_CONFIG_HAS_BEEN_RUN_BEFORE)
823     target_link_libraries(${TARGET_NAME} ${OPENSSL_LIBRARIES})
824     #ADD_DEFINITIONS( -DUSE_SSLEAY )
825   endif()
826 endfunction()
827
828 # Ugly (but functional) way to include "Makefile.inc" by transforming it (= regenerate it).
829 function(TRANSFORM_MAKEFILE_INC INPUT_FILE OUTPUT_FILE)
830   file(READ ${INPUT_FILE} MAKEFILE_INC_TEXT)
831   string(REPLACE "$(top_srcdir)"   "\${CURL_SOURCE_DIR}" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT})
832   string(REPLACE "$(top_builddir)" "\${CURL_BINARY_DIR}" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT})
833
834   string(REGEX REPLACE "\\\\\n" "§!§" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT})
835   string(REGEX REPLACE "([a-zA-Z_][a-zA-Z0-9_]*)[\t ]*=[\t ]*([^\n]*)" "SET(\\1 \\2)" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT})
836   string(REPLACE "§!§" "\n" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT})
837
838   string(REGEX REPLACE "\\$\\(([a-zA-Z_][a-zA-Z0-9_]*)\\)" "\${\\1}" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT})    # Replace $() with ${}
839   string(REGEX REPLACE "@([a-zA-Z_][a-zA-Z0-9_]*)@" "\${\\1}" MAKEFILE_INC_TEXT ${MAKEFILE_INC_TEXT})    # Replace @@ with ${}, even if that may not be read by CMake scripts.
840   file(WRITE ${OUTPUT_FILE} ${MAKEFILE_INC_TEXT})
841
842 endfunction()
843
844 add_subdirectory(lib)
845 if(BUILD_CURL_EXE)
846   add_subdirectory(src)
847 endif()
848 if(BUILD_CURL_TESTS)
849   add_subdirectory(tests)
850 endif()
851
852 # This needs to be run very last so other parts of the scripts can take advantage of this.
853 if(NOT CURL_CONFIG_HAS_BEEN_RUN_BEFORE)
854   set(CURL_CONFIG_HAS_BEEN_RUN_BEFORE 1 CACHE INTERNAL "Flag to track whether this is the first time running CMake or if CMake has been configured before")
855 endif()
856
857 # Installation.
858 # First, install generated curlbuild.h
859 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/include/curl/curlbuild.h"
860     DESTINATION include/curl )
861 # Next, install other headers excluding curlbuild.h
862 install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/include/curl"
863     DESTINATION include
864     FILES_MATCHING PATTERN "*.h"
865     PATTERN "curlbuild.h" EXCLUDE)