pwrap: Add missing config.h includes
[slow/pam_wrapper.git] / ConfigureChecks.cmake
1 include(CheckIncludeFile)
2 include(CheckSymbolExists)
3 include(CheckFunctionExists)
4 include(CheckLibraryExists)
5 include(CheckTypeSize)
6 include(CheckStructHasMember)
7 include(CheckPrototypeDefinition)
8 include(TestBigEndian)
9
10 set(PACKAGE ${APPLICATION_NAME})
11 set(VERSION ${APPLICATION_VERSION})
12 set(DATADIR ${DATA_INSTALL_DIR})
13 set(LIBDIR ${LIB_INSTALL_DIR})
14 set(PLUGINDIR "${PLUGIN_INSTALL_DIR}-${LIBRARY_SOVERSION}")
15 set(SYSCONFDIR ${SYSCONF_INSTALL_DIR})
16
17 set(BINARYDIR ${CMAKE_BINARY_DIR})
18 set(SOURCEDIR ${CMAKE_SOURCE_DIR})
19
20 function(COMPILER_DUMPVERSION _OUTPUT_VERSION)
21     # Remove whitespaces from the argument.
22     # This is needed for CC="ccache gcc" cmake ..
23     string(REPLACE " " "" _C_COMPILER_ARG "${CMAKE_C_COMPILER_ARG1}")
24
25     execute_process(
26         COMMAND
27             ${CMAKE_C_COMPILER} ${_C_COMPILER_ARG} -dumpversion
28         OUTPUT_VARIABLE _COMPILER_VERSION
29     )
30
31     string(REGEX REPLACE "([0-9])\\.([0-9])(\\.[0-9])?" "\\1\\2"
32            _COMPILER_VERSION "${_COMPILER_VERSION}")
33
34     set(${_OUTPUT_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE)
35 endfunction()
36
37 # HEADERS
38 check_include_file(sys/types.h HAVE_SYS_TYPES_H)
39 check_include_file(unistd.h HAVE_UNISTD_H)
40 check_include_file(security/pam_appl.h HAVE_SECURITY_PAM_APPL_H)
41 check_include_file(security/pam_modules.h HAVE_SECURITY_PAM_MODULES_H)
42 check_include_file(security/pam_ext.h HAVE_SECURITY_PAM_EXT_H)
43
44 # FUNCTIONS
45 check_function_exists(strncpy HAVE_STRNCPY)
46 check_function_exists(vsnprintf HAVE_VSNPRINTF)
47 check_function_exists(snprintf HAVE_SNPRINTF)
48
49 check_prototype_definition(pam_vprompt
50     "int pam_vprompt(const pam_handle_t *_pamh, int _style, char **_resp, const char *_fmt, va_list _ap)"
51     "-1"
52     "stdio.h;sys/types.h;security/pam_appl.h;security/pam_modules.h"
53     HAVE_PAM_VPROMPT_CONST)
54
55 check_prototype_definition(pam_prompt
56     "int pam_prompt(const pam_handle_t *_pamh, int _style, char **_resp, const char *_fmt, ...)"
57     "-1"
58     "stdio.h;sys/types.h;security/pam_appl.h;security/pam_modules.h"
59     HAVE_PAM_PROMPT_CONST)
60
61 check_prototype_definition(pam_strerror
62     "const char *pam_strerror(const pam_handle_t *_pamh, int _error_number)"
63     "NULL"
64     "stdio.h;sys/types.h;security/pam_appl.h;security/pam_modules.h"
65     HAVE_PAM_STRERROR_CONST)
66
67 # LIBRARIES
68 find_library(PAM_LIBRARY NAMES libpam.so.0 pam)
69 set(PAM_LIBRARY ${PAM_LIBRARY})
70 find_library(PAM_MISC_LIBRARY NAMES pam_misc)
71 if (PAM_MISC_LIBRARY)
72         set(HAVE_PAM_MISC TRUE)
73 endif()
74
75 check_library_exists(${PAM_LIBRARY} openpam_set_option "" HAVE_OPENPAM)
76
77 # PAM FUNCTIONS
78 set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${PAM_LIBRARY})
79 check_function_exists(pam_syslog HAVE_PAM_SYSLOG)
80 check_function_exists(pam_vsyslog HAVE_PAM_VSYSLOG)
81
82 # OPTIONS
83
84 if (LINUX)
85     if (HAVE_SYS_SYSCALL_H)
86        list(APPEND CMAKE_REQUIRED_DEFINITIONS "-DHAVE_SYS_SYSCALL_H")
87     endif (HAVE_SYS_SYSCALL_H)
88     if (HAVE_SYSCALL_H)
89         list(APPEND CMAKE_REQUIRED_DEFINITIONS "-DHAVE_SYSCALL_H")
90     endif (HAVE_SYSCALL_H)
91
92     set(CMAKE_REQUIRED_DEFINITIONS)
93 endif (LINUX)
94
95 # COMPAT
96 if (HAVE_OPENPAM_H)
97     set(HAVE_OPENPAM    1)
98 endif ()
99
100 check_c_source_compiles("
101 #include <stdbool.h>
102 int main(void) {
103     bool x;
104     bool *p_x = &x;
105     __atomic_load(p_x, &x, __ATOMIC_RELAXED);
106     return 0;
107 }" HAVE_GCC_ATOMIC_BUILTINS)
108
109 check_c_source_compiles("
110 __thread int tls;
111
112 int main(void) {
113     return 0;
114 }" HAVE_GCC_THREAD_LOCAL_STORAGE)
115
116 check_c_source_compiles("
117 void test_constructor_attribute(void) __attribute__ ((constructor));
118
119 void test_constructor_attribute(void)
120 {
121      return;
122 }
123
124 int main(void) {
125      return 0;
126 }" HAVE_CONSTRUCTOR_ATTRIBUTE)
127
128 check_c_source_compiles("
129 void test_destructor_attribute(void) __attribute__ ((destructor));
130
131 void test_destructor_attribute(void)
132 {
133     return;
134 }
135
136 int main(void) {
137     return 0;
138 }" HAVE_DESTRUCTOR_ATTRIBUTE)
139
140 check_c_source_compiles("
141 void log_fn(const char *format, ...) __attribute__ ((format (printf, 1, 2)));
142
143 int main(void) {
144     return 0;
145 }" HAVE_FUNCTION_ATTRIBUTE_FORMAT)
146
147 # SYSTEM LIBRARIES
148
149 check_library_exists(dl dlopen "" HAVE_LIBDL)
150 if (HAVE_LIBDL)
151     find_library(DLFCN_LIBRARY dl)
152     set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${DLFCN_LIBRARY})
153 endif (HAVE_LIBDL)
154
155 if (OSX)
156     set(HAVE_APPLE 1)
157 endif (OSX)
158
159 # ENDIAN
160 if (NOT WIN32)
161     test_big_endian(WORDS_BIGENDIAN)
162 endif (NOT WIN32)
163
164 set(UIDWRAP_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} CACHE INTERNAL "uidwrap required system libraries")