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