]> git.lyx.org Git - lyx.git/blob - development/cmake/ConfigureChecks.cmake
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / development / cmake / ConfigureChecks.cmake
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2006, Peter Kümmel, <syntheticpp@gmx.net>
5 #
6
7 include(CheckIncludeFile)
8 include(CheckIncludeFileCXX)
9 include(CheckIncludeFiles)
10 include(CheckSymbolExists)
11 include(CheckFunctionExists)
12 include(CheckLibraryExists)
13 include(CheckTypeSize)
14 include(CheckCXXSourceCompiles)
15 include(MacroBoolTo01)
16 include(TestBigEndian)
17
18 test_big_endian(WORDS_BIGENDIAN)
19
20 check_include_file_cxx(aspell.h HAVE_ASPELL_H)
21 check_include_file_cxx(aspell/aspell.h HAVE_ASPELL_ASPELL_H)
22 #check_include_file_cxx(istream HAVE_ISTREAM)
23 #check_include_file_cxx(ostream HAVE_OSTREAM)
24 #check_include_file_cxx(ios HAVE_IOS)
25 #check_include_file_cxx(sstream HAVE_SSTREAM)
26 #check_include_file_cxx(locale HAVE_LOCALE)
27
28 check_include_files(limits.h HAVE_LIMITS_H)
29 check_include_files(locale.h HAVE_LOCALE_H)
30 check_include_files(stdlib.h HAVE_STDLIB_H)
31 check_include_files(sys/stat.h HAVE_SYS_STAT_H)
32 check_include_files(sys/time.h HAVE_SYS_TIME_H)
33 check_include_files(sys/types.h HAVE_SYS_TYPES_H)
34 check_include_files(sys/utime.h HAVE_SYS_UTIME_H)
35 check_include_files(sys/socket.h HAVE_SYS_SOCKET_H)
36 check_include_files(unistd.h HAVE_UNISTD_H)
37 check_include_files(inttypes.h HAVE_INTTYPES_H)
38 check_include_files(utime.h HAVE_UTIME_H)
39 check_include_files(string.h HAVE_STRING_H)
40 check_include_files(argz.h HAVE_ARGZ_H)
41
42
43 check_function_exists(open HAVE_OPEN)
44 check_function_exists(chmod HAVE_CHMOD)
45 check_function_exists(close HAVE_CLOSE)
46 check_function_exists(dcgettext HAVE_DCGETTEXT)
47 check_function_exists(popen HAVE_POPEN)
48 check_function_exists(pclose HAVE_PCLOSE)
49 check_function_exists(_open HAVE__OPEN)
50 check_function_exists(_close HAVE__CLOSE)
51 check_function_exists(_popen HAVE__POPEN)
52 check_function_exists(_pclose HAVE__PCLOSE)
53 check_function_exists(getpid HAVE_GETPID)
54 check_function_exists(gettext HAVE_GETTEXT)
55 check_function_exists(_getpid HAVE__GETPID)
56 check_function_exists(mkdir  HAVE_MKDIR)
57 check_function_exists(_mkdir HAVE__MKDIR)
58 check_function_exists(setenv HAVE_SETENV)
59 check_function_exists(putenv HAVE_PUTENV)
60 check_function_exists(fcntl HAVE_FCNTL)
61 check_function_exists(strerror HAVE_STRERROR)
62 check_function_exists(getcwd HAVE_GETCWD)
63 check_function_exists(stpcpy HAVE_STPCPY)
64 check_function_exists(strcasecmp HAVE_STRCASECMP)
65 check_function_exists(strdup HAVE_STRDUP)
66 check_function_exists(strtoul HAVE_STRTOUL)
67 check_function_exists(alloca HAVE_ALLOCA)
68 check_function_exists(__fsetlocking HAVE___FSETLOCKING)
69 check_function_exists(mempcpy HAVE_MEMPCPY)
70 check_function_exists(__argz_count HAVE___ARGZ_COUNT)
71 check_function_exists(__argz_next HAVE___ARGZ_NEXT)
72 check_function_exists(__argz_stringify HAVE___ARGZ_STRINGIFY)
73 check_function_exists(setlocale HAVE_SETLOCALE)
74 check_function_exists(tsearch HAVE_TSEARCH)
75 check_function_exists(getegid HAVE_GETEGID)
76 check_function_exists(getgid HAVE_GETGID)
77 check_function_exists(getuid HAVE_GETUID)
78 check_function_exists(wcslen HAVE_WCSLEN)
79 check_function_exists(mkfifo HAVE_MKFIFO)
80
81 check_symbol_exists(alloca "malloc.h" HAVE_SYMBOL_ALLOCA)
82 check_symbol_exists(asprintf "stdio.h" HAVE_ASPRINTF)
83 check_symbol_exists(wprintf "stdio.h" HAVE_WPRINTF)
84 check_symbol_exists(snprintf "stdio.h" HAVE_SNPRINTF)
85 check_symbol_exists(printf "stdio.h" HAVE_POSIX_PRINTF)
86 check_symbol_exists(pid_t "sys/types.h" HAVE_PID_T)
87 check_symbol_exists(intmax_t "inttypes.h" HAVE_INTTYPES_H_WITH_UINTMAX)
88 check_symbol_exists(uintmax_t "stdint.h" HAVE_STDINT_H_WITH_UINTMAX)
89 check_symbol_exists(LC_MESSAGES "locale.h" HAVE_LC_MESSAGES)
90
91 check_type_size(intmax_t HAVE_INTMAX_T)
92 macro_bool_to_01(HAVE_UINTMAX_T HAVE_STDINT_H_WITH_UINTMAX)
93
94 check_type_size("long double"  HAVE_LONG_DOUBLE)
95 check_type_size("long long"  HAVE_LONG_LONG)
96 check_type_size(wchar_t HAVE_WCHAR_T)
97 check_type_size(wint_t  HAVE_WINT_T)
98
99
100 #check_cxx_source_compiles(
101 #       "
102 #       #include <algorithm>
103 #       using std::count;
104 #       int countChar(char * b, char * e, char const c)
105 #       {
106 #               return count(b, e, c);
107 #       }
108 #       int main(){return 0;}
109 #       "
110 #HAVE_STD_COUNT)
111
112 #check_cxx_source_compiles(
113 #       "
114 #       #include <cctype>
115 #       using std::tolower;
116 #       int main(){return 0;}
117 #       "
118 #CXX_GLOBAL_CSTD)
119
120 check_cxx_source_compiles(
121         "
122         #include <iconv.h>
123         // this declaration will fail when there already exists a non const char** version which returns size_t
124         double iconv(iconv_t cd,  char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft);
125         int main() { return 0; }
126         "
127 HAVE_ICONV_CONST)
128
129 check_cxx_source_compiles(
130         "
131         int i[ ( sizeof(wchar_t)==2 ? 1 : -1 ) ];
132         int main(){return 0;}
133         "
134 SIZEOF_WCHAR_T_IS_2)
135
136 check_cxx_source_compiles(
137         "
138         int i[ ( sizeof(wchar_t)==4 ? 1 : -1 ) ];
139         int main(){return 0;}
140         "
141 SIZEOF_WCHAR_T_IS_4)
142