Fixes to the nonce code
[platform/upstream/dbus.git] / cmake / CMakeLists.txt
1 set (PACKAGE dbus)
2
3 # the version major, minor and release number should be synchron to the dbus cvs - windows releases should only update the patch level
4 set (VERSION_MAJOR "1")
5 set (VERSION_MINOR "2")
6 set (VERSION_RELEASE "14")
7 set (VERSION_PATCH "0")
8 if (VERSION_PATCH)
9     set (VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}-${VERSION_PATCH}" )
10 else (VERSION_PATCH)
11     set (VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}" )
12 endif (VERSION_PATCH)
13 set (DBUS_MAJOR_VERSION ${VERSION_MAJOR})
14 set (DBUS_MINOR_VERSION ${VERSION_MAJOR})
15 set (DBUS_MICRO_VERSION ${VERSION_MAJOR})
16 set (DBUS_MAJOR_VERSION ${VERSION_MAJOR})
17 set (DBUS_VERSION ${VERSION})
18 set (DBUS_VERSION_STRING "${VERSION}")
19
20 project(${PACKAGE})
21
22 # we need to be up to date
23 CMAKE_MINIMUM_REQUIRED(VERSION 2.4.4 FATAL_ERROR)
24 if(COMMAND cmake_policy)
25     cmake_policy(SET CMP0003 NEW)
26 endif(COMMAND cmake_policy)
27
28 # where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
29 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/modules")
30
31 #enable building of shared library
32 SET(BUILD_SHARED_LIBS ON)
33
34 if (CYGWIN)
35    set (WIN32)
36 endif (CYGWIN)
37
38 # search for required packages
39 if (WIN32)
40     # include local header first to avoid using old installed header
41     set (CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} ${CMAKE_SOURCE_DIR}/..)
42     find_package(KDEWIN)
43     find_package(KDEWIN_Packager)
44         find_package(LibIconv)
45     include(Win32Macros)
46     addExplorerWrapper(${PACKAGE})
47 endif (WIN32)
48 find_package(LibXml2)
49 find_package(LibExpat)
50 find_package(X11)
51
52
53 OPTION(DBUS_ENABLE_ABSTRACT_SOCKETS "enable support for abstract sockets" ON)
54
55 if (MINGW)
56     set (DBUS_VA_COPY_AS_ARRAY 1)
57 endif (MINGW)
58 if (MSVC)
59     set (DBUS_HAVE_VA_COPY 1)
60     set (DBUS_VA_COPY_AS_ARRAY 0)
61 endif (MSVC)
62
63 # do config checks
64 INCLUDE(ConfigureChecks.cmake)
65
66 # @TODO: how to remove last dir from ${CMAKE_SOURCE_DIR} ?
67 SET(DBUS_SOURCE_DIR ${CMAKE_SOURCE_DIR}/..)
68
69 # make some more macros available
70 include (MacroLibrary)
71
72 if(VCS)
73         set(DBUS_VERBOSE_C_S 1 CACHE TYPE STRING FORCE)
74         set(DBUS_VERBOSE_C_S 1)
75 endif(VCS)
76
77 if(MSVC)
78         # controll folders in msvc projects
79         include(ProjectSourceGroup)
80         if(NOT GROUP_CODE)
81                 #set(GROUP_CODE split) #cmake default
82                 set(GROUP_CODE flat)
83         endif(NOT GROUP_CODE)
84         ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE)
85
86
87         # Use the highest warning level
88         if (WALL)
89                 set(WALL 1 CACHE TYPE STRING FORCE)
90                 set(CMAKE_CXX_WARNING_LEVEL 4 CACHE TYPE STRING FORCE)
91
92                 if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
93                         STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
94                 else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
95                         SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
96                 endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
97
98                 if(CMAKE_C_FLAGS MATCHES "/W[0-4]")
99                         STRING(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
100                 else(CMAKE_C_FLAGS MATCHES "/W[0-4]")
101                         SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /W4")
102                 endif(CMAKE_C_FLAGS MATCHES "/W[0-4]")
103         else (WALL)
104                 set(CMAKE_CXX_WARNING_LEVEL 3 CACHE TYPE STRING FORCE)
105         endif (WALL)
106
107         SET(MSVC_W_ERROR   " /we4028 /we4013 /we4133 /we4047 /we4031 /we4002 /we4003 /we4114")
108         SET(MSVC_W_DISABLE " /wd4127 /wd4090 /wd4101 /wd4244")
109
110         SET(CMAKE_C_FLAGS_DEBUG   "${CMAKE_C_FLAGS_DEBUG}   /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
111         SET(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /FIconfig.h ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")
112
113    # used by executables, CMAKE_DEBUG_POSTFIX does not handle this case
114    #set (CMAKE_EXE_POSTFIX "d")
115
116 endif(MSVC)
117 if(WIN32)
118   set (CMAKE_DEBUG_POSTFIX "d")
119 endif(WIN32)
120
121 SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}  -D_DEBUG")
122
123 #########################################################################
124 # Windows CE
125 #
126 # usage:
127 #      cmake ..\trunk\cmake -Dwince=1 -Dwcelibcex=c:\wcelibcex
128 #
129 # change configuration in Visual Studio to 'Pocket PC 2003 (ARMV4)'
130 #
131 if(wince)
132         project(${PACKAGE}-wince)
133         # don't forget parameters
134         set(wince 1 CACHE TYPE STRING FORCE)
135         set(wcelibcex ${wcelibcex} CACHE TYPE STRING FORCE)
136
137         include_directories(${wcelibcex}/include/wcelibcex ${wcelibcex}/src)
138
139         add_definitions(
140 # see config.h.cmake
141 #                       -DDBUS_WINCE
142                         -DWINCE
143                         -DWIN32_PLATFORM_PSPC
144                         -D_WINDOWS
145                         -D_UNICODE
146                         -DUNICODE
147                         -DPOCKETPC2003_UI_MODEL
148                         )
149
150         # Windows CE Version
151         add_definitions(
152                         -D_WIN32_WCE=0x420
153                         -DWIN32_PLATFORM_PSPC=0x420
154                         -DUNDER_CE=0x420
155                         )
156
157         # Architecture
158         add_definitions(
159                         -DARM
160                         -D_ARM_
161                         )
162
163         set(CMAKE_CXX_STANDARD_LIBRARIES "coredll.lib corelibc.lib ole32.lib oleaut32.lib uuid.lib commctrl.lib ws2.lib")
164
165         set(CMAKE_SHARED_LINKER_FLAGS "/subsystem:windowsce,4.20 /machine:THUMB")
166
167 endif(wince)
168 #########################################################################
169
170
171 ENABLE_TESTING()
172
173 #########################################################################
174 # Disallow in-source build
175 #macro_ensure_out_of_source_build("dbus requires an out of source build. Please create a separate build directory and run 'cmake path_to_dbus [options]' there.")
176
177 # ... and warn in case of an earlier in-source build
178 #set(generatedFileInSourceDir EXISTS ${dbus_SOURCE_DIR}/config.h)
179 #if(${generatedFileInSourceDir})
180 #   message(STATUS "config.h exists in your source directory.")
181 #endif(${generatedFileInSourceDir})
182 #########################################################################
183
184 if (WIN32 OR CYGWIN)
185         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/bin)
186 else (WIN32 OR CYGWIN)
187         set (LIBRARY_OUTPUT_PATH  ${CMAKE_BINARY_DIR}/lib)
188 endif (WIN32 OR CYGWIN)
189
190 set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
191
192 # for including config.h and for includes like <dir/foo.h>
193 include_directories( ${CMAKE_SOURCE_DIR}/.. ${CMAKE_BINARY_DIR} ${CMAKE_INCLUDE_PATH} )
194
195 # linker search directories
196 link_directories(${DBUS_LIB_DIR} ${LIBRARY_OUTPUT_PATH} )
197 include_directories( ${CMAKE_LIBRARY_PATH}  )
198
199 set(DBUS_INCLUDES)
200
201 ENABLE_TESTING()
202
203
204 ########### basic vars ###############
205
206 if (DBUSDIR)
207         set(DBUS_INSTALL_DIR "${DBUSDIR}" CACHE TYPE STRING)
208 else (DBUSDIR)
209         set(DBUS_INSTALL_DIR "$ENV{DBUSDIR}" CACHE TYPE STRING)
210 endif (DBUSDIR)
211
212 if (NOT DBUS_INSTALL_DIR)
213         set(DBUS_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}" CACHE TYPE STRING)
214 endif (NOT DBUS_INSTALL_DIR)
215
216 # TODO: setting EXPANDED_... has nothing to do with DBUS_INSTALL_SYSTEM_LIBS
217 if (DBUS_INSTALL_SYSTEM_LIBS)
218         set(prefix                   ${DBUS_INSTALL_DIR})
219         set(exec_prefix              ${prefix})
220         set(EXPANDED_LIBDIR          ${DBUS_INSTALL_DIR}/lib)
221         set(EXPANDED_INCLUDEDIR      ${DBUS_INSTALL_DIR}/include)
222         set(EXPANDED_BINDIR          ${DBUS_INSTALL_DIR}/bin)
223         set(EXPANDED_SYSCONFDIR      ${DBUS_INSTALL_DIR}/etc)
224         set(EXPANDED_DATADIR         ${DBUS_INSTALL_DIR}/data)
225         set(DBUS_BINDIR              ${EXPANDED_BINDIR})
226         set(DBUS_MACHINE_UUID_FILE   ${DBUS_INSTALL_DIR}/lib/dbus/machine-id)
227 else (DBUS_INSTALL_SYSTEM_LIBS)
228         set(EXPANDED_INCLUDEDIR      ${CMAKE_SOURCE_DIR}/include)
229         set(EXPANDED_DATADIR         ${CMAKE_BINARY_DIR}/test/data)
230         if (MSVC_IDE)
231                 set(EXPANDED_BINDIR      ${CMAKE_BINARY_DIR}/bin/debug)
232         else (MSVC_IDE)
233                 set(EXPANDED_BINDIR      ${CMAKE_BINARY_DIR}/bin)
234         endif (MSVC_IDE)
235         set(DBUS_BINDIR              ${EXPANDED_BINDIR})
236         set(DBUS_MACHINE_UUID_FILE   ${CMAKE_BINARY_DIR}/lib/dbus/machine-id)
237 endif (DBUS_INSTALL_SYSTEM_LIBS)
238
239 set (DBUS_DAEMONDIR ${EXPANDED_BINDIR})
240
241 ########### command line options ###############
242 # TODO: take check from configure.in
243
244 #AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],[enable unit test code]),enable_tests=$enableval,enable_tests=$USE_MAINTAINER_MODE)
245 OPTION(DBUS_BUILD_TESTS "enable unit test code" ON)
246  
247 if(DBUS_BUILD_TESTS)
248     add_definitions(-DDBUS_BUILD_TESTS)
249 endif(DBUS_BUILD_TESTS)
250
251 OPTION(DBUS_USE_OUTPUT_DEBUG_STRING "enable win32 debug port for message output" OFF)
252 if(DBUS_USE_OUTPUT_DEBUG_STRING)
253     add_definitions(-DDBUS_USE_OUTPUT_DEBUG_STRING)
254 endif(DBUS_USE_OUTPUT_DEBUG_STRING)
255
256 # win32 dbus service support - this support is not complete
257 OPTION(DBUS_SERVICE "enable dbus service installer" OFF)
258
259 #AC_ARG_ENABLE(ansi, AS_HELP_STRING([--enable-ansi],[enable -ansi -pedantic gcc flags]),enable_ansi=$enableval,enable_ansi=no)
260 OPTION(DBUS_ENABLE_ANSI "enable -ansi -pedantic gcc flags" OFF)
261 if(DBUS_ENABLE_ANSI)
262    if(NOT MSVC)
263         add_definitions(-ansi -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -pedantic)
264    else(NOT MSVC)
265         add_definitions(-Za -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE -W4)
266    endif(NOT MSVC)
267 endif(DBUS_ENABLE_ANSI)
268
269 #AC_ARG_ENABLE(verbose-mode, AS_HELP_STRING([--enable-verbose-mode],[support verbose debug mode]),enable_verbose_mode=$enableval,enable_verbose_mode=$USE_MAINTAINER_MODE)
270 OPTION(DBUS_ENABLE_VERBOSE_MODE "support verbose debug mode" ON)
271
272 #AC_ARG_ENABLE(asserts, AS_HELP_STRING([--enable-asserts],[include assertion checks]),enable_asserts=$enableval,enable_asserts=$USE_MAINTAINER_MODE)
273 OPTION(DBUS_DISABLE_ASSERTS "Disable assertion checking" OFF)
274
275 #AC_ARG_ENABLE(checks, AS_HELP_STRING([--enable-checks],[include sanity checks on public API]),enable_checks=$enableval,enable_checks=yes)
276 OPTION(DBUS_DISABLE_CHECKS "Disable public API sanity checking" OFF)
277
278 #AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],[compile with coverage profiling instrumentation (gcc only)]),enable_gcov=$enableval,enable_gcov=no)
279 OPTION(DBUS_GCOV_ENABLED "compile with coverage profiling instrumentation (gcc only)" OFF)
280 if(DBUS_GCOV_ENABLED)
281    if(NOT MSVC)
282         add_definitions(-fprofile-arcs -ftest-coverage)
283         # FIXME!!!!
284         ## remove optimization
285 #        CFLAGS=`echo "$CFLAGS" | sed -e 's/-O[0-9]*//g'`
286    endif(NOT MSVC)
287 endif(DBUS_GCOV_ENABLED)
288
289 #AC_ARG_ENABLE(abstract-sockets, AS_HELP_STRING([--enable-abstract-sockets],[use abstract socket namespace (linux only)]),enable_abstract_sockets=$enableval,enable_abstract_sockets=auto)
290 #abstract sockets missing
291
292 #AC_ARG_ENABLE(selinux, AS_HELP_STRING([--enable-selinux],[build with SELinux support]),enable_selinux=$enableval,enable_selinux=auto)
293 #selinux missing
294
295 #AC_ARG_ENABLE(dnotify, AS_HELP_STRING([--enable-dnotify],[build with dnotify support (linux only)]),enable_dnotify=$enableval,enable_dnotify=auto)
296 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
297     OPTION(DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX "build with dnotify support (linux only)" ON) # add a check !
298 endif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux")
299
300 #AC_ARG_ENABLE(kqueue, AS_HELP_STRING([--enable-kqueue],[build with kqueue support (FreeBSD only)]),enable_kqueue=$enableval,enable_kqueue=auto)
301 #missing
302
303 #AC_ARG_ENABLE(console-owner-file, AS_HELP_STRING([--enable-console-owner-file],[enable console owner file]),enable_console_owner_file=$enableval,enable_console_owner_file=auto)
304 STRING(TOUPPER ${CMAKE_SYSTEM_NAME} sysname)
305 if("${sysname}" MATCHES ".*SOLARIS.*")
306     OPTION(HAVE_CONSOLE_OWNER_FILE "enable console owner file (solaris only)" ON)
307     if(HAVE_CONSOLE_OWNER_FILE)
308         SET(DBUS_CONSOLE_OWNER_FILE "/dev/console" CACHE STRING "Directory to check for console ownerhip")
309     endif(HAVE_CONSOLE_OWNER_FILE)
310 endif("${sysname}" MATCHES ".*SOLARIS.*")
311
312 #AC_ARG_WITH(xml, AS_HELP_STRING([--with-xml=[libxml/expat]],[XML library to use]))
313 if(NOT LIBXML2_FOUND AND NOT LIBEXPAT_FOUND)
314     message(FATAL "Neither expat nor libxml2 found!")
315 endif(NOT LIBXML2_FOUND AND NOT LIBEXPAT_FOUND)
316
317 if(LIBEXPAT_FOUND)
318     OPTION(DBUS_USE_EXPAT "Use expat (== ON) or libxml2 (==OFF)" ON)
319 else(LIBEXPAT_FOUND)
320     OPTION(DBUS_USE_EXPAT "Use expat (== ON) or libxml2 (==OFF)" OFF)
321 endif(LIBEXPAT_FOUND)
322
323 if(DBUS_USE_EXPAT)
324     SET(XML_LIB "Expat")
325     SET(XML_LIBRARY     ${LIBEXPAT_LIBRARIES})
326     SET(XML_INCLUDE_DIR ${LIBEXPAT_INCLUDE_DIR})
327 else(DBUS_USE_EXPAT)
328     SET(XML_LIB "LibXML2")
329     SET(XML_LIBRARY     ${LIBXML2_LIBRARIES})
330     SET(XML_INCLUDE_DIR ${LIBXML2_INCLUDE_DIR})
331 endif(DBUS_USE_EXPAT)
332
333
334 #AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
335 #AC_ARG_WITH(session-socket-dir, AS_HELP_STRING([--with-session-socket-dir=[dirname]],[Where to put sockets for the per-login-session message bus]))
336 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
337 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
338 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
339 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
340 #AC_ARG_WITH(console-owner-file, AS_HELP_STRING([--with-console-owner-file=[filename]],[file whose owner determines current console owner]))
341 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
342 #AC_ARG_WITH(dbus_daemondir, AS_HELP_STRING([--with-dbus-daemondir=[dirname]],[Directory for installing the DBUS daemon]))
343 # all missing or hardcoded for now
344
345 # 'hidden' ones
346 set(atomic_int OFF)
347 set(atomic_int486 OFF)
348 if(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
349     FIND_PROGRAM(UNAME_EXECUTABLE
350                     NAMES uname
351                     PATHS /bin /usr/bin /usr/local/bin c:/Programme/MSys/bin d:/Programme/MSys/bin)
352
353     if(UNAME_EXECUTABLE)
354         EXECUTE_PROCESS(COMMAND ${UNAME_EXECUTABLE} "-m"
355                         OUTPUT_VARIABLE UNAME_OUTPUT)
356
357         if("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
358             set(atomic_int ON)
359         else("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
360             if("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
361                 set(atomic_int ON)
362                 set(atomic_int_486 ON)
363             endif("UNAME_OUTPUT" MATCHES "^.*i?86.*$")
364         endif("UNAME_OUTPUT" MATCHES "^.*i[0123]86.*$")
365     endif(UNAME_EXECUTABLE)
366 endif(CMAKE_COMPILER_IS_GNUCC AND NOT DBUS_ENABLE_ANSI)
367
368 OPTION(DBUS_HAVE_ATOMIC_INT    "Some atomic integer implementation present" ${atomic_int})
369 OPTION(DBUS_USE_ATOMIC_INT_486 "Use atomic integer implementation for 486" ${atomic_int_486})
370
371 if(X11_FOUND)
372   OPTION(DBUS_BUILD_X11 "Build X11-dependent code " ON)
373 endif(X11_FOUND)
374
375 # test binary names
376 if (WIN32)
377         set (EXT ".exe")
378 endif(WIN32)
379
380 if (MSVC_IDE)
381     if(CMAKE_BUILD_TYPE MATCHES Debug)
382                 set(IDE_BIN Debug/ )
383                 message(STATUS)
384                 message(STATUS "Visual Studio: test programs will only work with 'Debug' configuration!")
385                 message(STATUS "To run tests with 'Release' configuration use -DCMAKE_BUILD_TYPE=Release")
386                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
387                 message(STATUS)
388     else(CMAKE_BUILD_TYPE MATCHES Debug)
389                 set(IDE_BIN Release/)
390                 message(STATUS)
391                 message(STATUS "Visual Studio: test programs will only work with 'Release' configuration!")
392                 message(STATUS "To run tests with 'Debug' configuration use -DCMAKE_BUILD_TYPE=Debug")
393                 message(STATUS "Add '..\\..\\test\\data' to the command line option of the test programs")
394                 message(STATUS)
395     endif(CMAKE_BUILD_TYPE MATCHES Debug)
396         set (TEST_PATH_FORCE FORCE)
397         FILE(REMOVE ${CMAKE_BINARY_DIR}/data/dbus-1/services)
398 endif (MSVC_IDE)
399
400 set(TEST_SERVICE_DIR          ${CMAKE_BINARY_DIR}/test/data/valid-service-files     CACHE STRING "Full path to test file test/data/valid-service-files in builddir" )
401 set(TEST_SERVICE_BINARY       ${CMAKE_BINARY_DIR}/bin/${IDE_BIN}test-service${EXT}       CACHE STRING "Full path to test file test/test-service in builddir" ${TEST_PATH_FORCE})
402 set(TEST_SHELL_SERVICE_BINARY ${CMAKE_BINARY_DIR}/bin/${IDE_BIN}test-shell-service${EXT} CACHE STRING "Full path to test file test/test-shell-service in builddir" ${TEST_PATH_FORCE})
403 set(TEST_EXIT_BINARY          ${CMAKE_BINARY_DIR}/bin/${IDE_BIN}test-exit${EXT}          CACHE STRING "Full path to test file test/test-exit in builddir" ${TEST_PATH_FORCE})
404 set(TEST_SEGFAULT_BINARY      ${CMAKE_BINARY_DIR}/bin/${IDE_BIN}test-segfault${EXT}      CACHE STRING "Full path to test file test/test-segfault in builddir" ${TEST_PATH_FORCE})
405 set(TEST_SLEEP_FOREVER_BINARY ${CMAKE_BINARY_DIR}/bin/${IDE_BIN}test-sleep-forever${EXT} CACHE STRING "Full path to test file test/test-sleep-forever in builddir" ${TEST_PATH_FORCE})
406
407 #### Find socket directories
408  if (NOT $ENV{TMPDIR} STREQUAL "")
409      set (DBUS_SESSION_SOCKET_DIR $ENV{TMPDIR})
410  else (NOT $ENV{TMPDIR} STREQUAL "")
411      if (NOT $ENV{TEMP} STREQUAL "")
412          set (DBUS_SESSION_SOCKET_DIR $ENV{TEMP})
413      else (NOT $ENV{TEMP} STREQUAL "")
414          if (NOT $ENV{TMP} STREQUAL "")
415              set (DBUS_SESSION_SOCKET_DIR $ENV{TMP})
416          else (NOT $ENV{TMP} STREQUAL "")
417          if (WIN32)
418              #Should never happen, both TMP and TEMP seem always set on Windows
419              message(FATAL "Could not determine a usable temporary directory")
420          else(WIN32)
421             set (DBUS_SESSION_SOCKET_DIR /tmp)
422          endif(WIN32)
423          endif (NOT $ENV{TMP} STREQUAL "")
424      endif (NOT $ENV{TEMP} STREQUAL "")
425  endif (NOT $ENV{TMPDIR} STREQUAL "")
426
427 #AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
428
429 #AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
430
431 #if ! test -z "$with_system_pid_file"; then
432 #   DBUS_SYSTEM_PID_FILE=$with_system_pid_file
433 #elif test x$operating_system = xredhat ; then
434 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
435 #else
436 #   DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
437 #fi
438 # TODO: fix redhet
439 if (WIN32)
440   # bus-test expects a non empty string
441         set (DBUS_SYSTEM_PID_FILE "/dbus-pid")
442 else (WIN32)
443         set (DBUS_SYSTEM_PID_FILE ${EXPANDED_LOCALSTATEDIR}/run/dbus/pid)
444 endif (WIN32)
445
446 #AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
447
448 #AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
449
450 if (WIN32)
451         set (DBUS_CONSOLE_AUTH_DIR "")
452 else (WIN32)
453         set (DBUS_CONSOLE_AUTH_DIR "/var/run/console/")
454 endif (WIN32)
455
456 #AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
457
458 set (DBUS_USER )
459
460
461 if (WIN32)
462   set (DBUS_SESSION_BUS_DEFAULT_ADDRESS "nonce-tcp:host=localhost,port=0")
463   set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS "nonce-tcp:host=localhost,port=0")
464   set (DBUS_SYSTEM_CONFIG_FILE "etc/system.conf")
465   set (DBUS_SESSION_CONFIG_FILE "etc/session.conf")
466   # bus-test expects a non empty string
467   set (DBUS_USER "Administrator")
468   set (DBUS_DATADIR "data")
469 else (WIN32)
470   set (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS unix:tmpdir=)
471   set (DBUS_SESSION_BUS_DEFAULT_ADDRESS unix:path=${DBUS_SESSION_SOCKET_DIR})
472   set (sysconfdir "")
473   set (configdir ${sysconfdir}/dbus-1 )
474   set (DBUS_SYSTEM_CONFIG_FILE  ${configdir}/system.conf)
475   set (DBUS_SESSION_CONFIG_FILE ${configdir}/session.conf)
476   set (DBUS_USER "root")
477   set (DBUS_DATADIR ${EXPANDED_DATADIR})
478 endif (WIN32)
479
480 set (DAEMON_NAME dbus-daemon)
481
482 ########### create config.h ###############
483
484 #include(ConfigureChecks.cmake)
485
486 # better use flags for gcc
487 if (MINGW)
488         set (HAVE_GNUC_VARARGS 1)
489 endif(MINGW)
490
491 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
492 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dbus-env.bat.cmake ${CMAKE_BINARY_DIR}/bin/dbus-env.bat )
493 install_files(/bin FILES ${CMAKE_BINARY_DIR}/bin/dbus-env.bat)
494
495 # compiler definitions
496 add_definitions(-DHAVE_CONFIG_H=1)
497 add_definitions(${DBUS_BUS_CFLAGS} -DDBUS_API_SUBJECT_TO_CHANGE)
498
499
500 option(splitlib "split library into dbus-lib-client, dbus-lib-generic, and dbus-lib-util, no installing possible" OFF)
501 if(splitlib AND MSVC)
502         # does not work with GCC/ld
503         set(DBUS_1 dbus-lib-client dbus-lib-generic dbus-lib-util)
504         message(STATUS "")
505         message(STATUS "dbus library is splitted into dbus-lib-client, dbus-lib-generic, and dbus-lib-util")
506         message(STATUS "installing is not possible")
507         message(STATUS "disable splitting: -Dsplitlib=0")
508         message(STATUS "")
509 else(splitlib AND MSVC)
510         message(STATUS "")
511         message(STATUS "for better code reading the dbus library could be splitted into three libraries:")
512         message(STATUS "dbus-lib-client, dbus-lib-generic, and dbus-lib-util (installing is then not possible)")
513         message(STATUS "enable splitting: -Dsplitlib=1")
514         message(STATUS "")
515         set(DBUS_1 dbus-1)
516 endif(splitlib AND MSVC)
517
518 if (DBUS_BUILD_TESTS)
519     # set variables used for the .in files (substituted by configure_file) in test/data:
520     set(TEST_VALID_SERVICE_DIR ${CMAKE_BINARY_DIR}/test/data/valid-service-files)
521     set(TEST_VALID_SERVICE_SYSTEM_DIR ${CMAKE_BINARY_DIR}/test/data/valid-service-files-system)
522     set(TEST_SOCKET_DIR ${DBUS_SESSION_SOCKET_DIR} )
523     set(TEST_LAUNCH_HELPER_BINARY ${EXECUTABLE_OUTPUT_PATH}/dbus-daemon-launch-helper-test)
524 endif  (DBUS_BUILD_TESTS)
525
526 ########### subdirs ###############
527
528 add_subdirectory( dbus )
529 add_subdirectory( bus )
530 if (DBUS_BUILD_TESTS)
531         add_subdirectory( test )
532 endif (DBUS_BUILD_TESTS)
533 add_subdirectory( tools )
534 add_subdirectory( doc )
535
536
537 OPTION(DBUS_INSTALL_SYSTEM_LIBS "install required system libraries" OFF)
538 MESSAGE(" ")
539 MESSAGE("set -DDBUS_INSTALL_SYSTEM_LIBS=1 to install runtime libraries too")
540 MESSAGE("set DBUSDIR (environment or cmake option) to overwrite the default install directory ")
541 MESSAGE(" ")
542 MESSAGE(" ")
543 GET_FILENAME_COMPONENT(C_COMPILER ${CMAKE_C_COMPILER} NAME)
544 GET_FILENAME_COMPONENT(CXX_COMPILER ${CMAKE_CXX_COMPILER} NAME)
545
546 message("                  D-BUS ${VERSION}                                    ")
547 message("                  ==========                                          ")
548 message("                                                                      ")
549 message("        prefix:                   ${prefix}                           ")
550 message("        exec_prefix:              ${exec_prefix}                      ")
551 message("        libdir:                   ${EXPANDED_LIBDIR}                  ")
552 message("        bindir:                   ${EXPANDED_BINDIR}                  ")
553 message("        sysconfdir:               ${EXPANDED_SYSCONFDIR}              ")
554 message("        localstatedir:            ${EXPANDED_LOCALSTATEDIR}           ")
555 message("        datadir:                  ${EXPANDED_DATADIR}                 ")
556 message("        source code location:     ${DBUS_SOURCE_DIR}                  ")
557 message("        c compiler:               ${C_COMPILER}                       ")
558 message("        cflags:                   ${CMAKE_C_FLAGS}                    ")
559 message("        cflags debug:             ${CMAKE_C_FLAGS_DEBUG}              ")
560 message("        cflags release:           ${CMAKE_C_FLAGS_RELEASE}            ")
561 message("        cxx compiler:             ${CXX_COMPILER}                     ")
562 message("        cxxflags:                 ${CMAKE_CXX_FLAGS}                  ")
563 message("        cxxflags debug:           ${CMAKE_CXX_FLAGS_DEBUG}            ")
564 message("        cxxflags release:         ${CMAKE_CXX_FLAGS_RELEASE}          ")
565 message("        64-bit int:               ${DBUS_INT64_TYPE}                  ")
566 message("        32-bit int:               ${DBUS_INT32_TYPE}                  ")
567 message("        16-bit int:               ${DBUS_INT16_TYPE}                  ")
568 message("        Doxygen:                  ${DOXYGEN}                          ")
569 message("        xmlto:                    ${XMLTO}                            ")
570
571
572 #message("        Maintainer mode:          ${USE_MAINTAINER_MODE}              ")
573 message("        gcc coverage profiling:   ${DBUS_GCOV_ENABLED}                ")
574 message("        Building unit tests:      ${DBUS_BUILD_TESTS}                 ")
575 message("        Building verbose mode:    ${DBUS_ENABLE_VERBOSE_MODE}         ")
576 message("        Building w/o assertions:  ${DBUS_DISABLE_ASSERTS}             ")
577 message("        Building w/o checks:      ${DBUS_DISABLE_CHECKS}              ")
578 message("        installing system libs:   ${DBUS_INSTALL_SYSTEM_LIBS}         ")
579 #message("        Building SELinux support: ${have_selinux}                     ")
580 #message("        Building dnotify support: ${have_dnotify}                     ")
581 message("        Building Doxygen docs:    ${DBUS_ENABLE_DOXYGEN_DOCS}         ")
582 #message("        Building XML docs:        ${enable_xml_docs}                  ")
583 #message("        Gettext libs (empty OK):  ${INTLLIBS}                         ")
584 message("        Using XML parser:         ${XML_LIB}                          ")
585 if (WIN32)
586 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
587 message("        Session bus address:      ${DBUS_SESSION_BUS_DEFAULT_ADDRESS} ")
588 else (WIN32)
589 #message("        Init scripts style:       ${with_init_scripts}                ")
590 #message("        Abstract socket names:    ${have_abstract_sockets}            ")
591 message("        System bus socket:        ${DBUS_SYSTEM_SOCKET}               ")
592 message("        System bus address:       ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}  ")
593 message("        System bus PID file:      ${DBUS_SYSTEM_PID_FILE}             ")
594 message("        Session bus socket dir:   ${DBUS_SESSION_SOCKET_DIR}          ")
595 message("        Console auth dir:         ${DBUS_CONSOLE_AUTH_DIR}            ")
596 message("        System bus user:          ${DBUS_USER}                        ")
597 message("        'make check' socket dir:  ${TEST_SOCKET_DIR}                  ")
598 endif (WIN32)
599 MESSAGE(" ")
600 if (DBUS_BUILD_TESTS)
601     message("NOTE: building with unit tests increases the size of the installed library and renders it insecure.")
602 endif(DBUS_BUILD_TESTS)
603
604 if (DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
605     message("NOTE: building with unit tests but without assertions means tests may not properly report failures (this configuration is only useful when doing something like profiling the tests)")
606 endif(DBUS_BUILD_TESTS AND DBUS_DISABLE_ASSERTS)
607
608 if (DBUS_GCOV_ENABLED)
609     message("NOTE: building with coverage profiling is definitely for developers only.")
610 endif(DBUS_GCOV_ENABLED)
611
612 if (DBUS_ENABLE_VERBOSE_MODE)
613     message("NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance.")
614 endif(DBUS_ENABLE_VERBOSE_MODE)
615
616 if(NOT DBUS_DISABLE_ASSERTS)
617     message("NOTE: building with assertions increases library size and decreases performance.")
618 endif(NOT DBUS_DISABLE_ASSERTS)
619
620 if (DBUS_DISABLE_CHECKS)
621     message("NOTE: building without checks for arguments passed to public API makes it harder to debug apps using D-BUS, but will slightly decrease D-BUS library size and _very_ slightly improve performance.")
622 endif(DBUS_DISABLE_CHECKS)
623 MESSAGE(" ")
624
625 INCLUDE(modules/CPackInstallConfig.cmake)
626
627 if (KDEWIN_PACKAGER_FOUND)
628     KDEWIN_PACKAGER(${PACKAGE} ${VERSION} "ipc library" "")
629 endif (KDEWIN_PACKAGER_FOUND)