diff options
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 43 |
1 files changed, 26 insertions, 17 deletions
diff --git a/config.h.in b/config.h.in index bea071e0..5d624fb3 100644 --- a/config.h.in +++ b/config.h.in @@ -9,18 +9,12 @@ /* Directory for installing the binaries */ #undef DBUS_BINDIR -/* Define to build test code into the library and binaries */ -#undef DBUS_BUILD_TESTS - /* Define to build X11 functionality */ #undef DBUS_BUILD_X11 /* whether -export-dynamic was passed to libtool */ #undef DBUS_BUILT_R_DYNAMIC -/* Use dnotify on Linux */ -#undef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX - /* Use inotify */ #undef DBUS_BUS_ENABLE_INOTIFY @@ -63,9 +57,6 @@ /* Define to enable bus daemon usage statistics */ #undef DBUS_ENABLE_STATS -/* Build with caching of user data */ -#undef DBUS_ENABLE_USERDB_CACHE - /* Support a verbose mode */ #undef DBUS_ENABLE_VERBOSE_MODE @@ -90,6 +81,9 @@ /* Prefix for installing DBUS */ #undef DBUS_PREFIX +/* Fallback address for session bus clients */ +#undef DBUS_SESSION_BUS_CONNECT_ADDRESS + /* Where per-session bus puts its sockets */ #undef DBUS_SESSION_SOCKET_DIR @@ -132,6 +126,9 @@ /* Define if GLib, GObject, GIO are available */ #undef DBUS_WITH_GLIB +/* The maximum number of connections that can be handled at once */ +#undef FD_SETSIZE + /* The name of the gettext domain */ #undef GETTEXT_PACKAGE @@ -269,6 +266,12 @@ /* Have POSIX function getpwnam_r */ #undef HAVE_POSIX_GETPWNAM_R +/* Define to 1 if you have the `prctl' function. */ +#undef HAVE_PRCTL + +/* Define to 1 if you have the `raise' function. */ +#undef HAVE_RAISE + /* SELinux support */ #undef HAVE_SELINUX @@ -317,6 +320,9 @@ /* Define to 1 if you have the <sys/inotify.h> header file. */ #undef HAVE_SYS_INOTIFY_H +/* Define to 1 if you have the <sys/prctl.h> header file. */ +#undef HAVE_SYS_PRCTL_H + /* Define to 1 if you have the <sys/resource.h> header file. */ #undef HAVE_SYS_RESOURCE_H @@ -356,16 +362,10 @@ /* Define to 1 if you have the <ws2tcpip.h> header file. */ #undef HAVE_WS2TCPIP_H -/* Define to 1 if you have the <wspiapi.h> header file. */ -#undef HAVE_WSPIAPI_H - /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR -/* Define to 1 if your C compiler doesn't accept -c and -o together. */ -#undef NO_MINUS_C_MINUS_O - /* Name of package */ #undef PACKAGE @@ -411,8 +411,8 @@ /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS -/* Full path to the daemon in the builddir */ -#undef TEST_BUS_BINARY +/* Full path to the dbus-launch in the builddir */ +#undef TEST_BUS_LAUNCH_BINARY /* Listening address for regression tests */ #undef TEST_LISTEN @@ -493,3 +493,12 @@ #ifndef __cplusplus #undef inline #endif + + +/* explicitly define these macros to get less confusing conditions */ +#ifndef DBUS_DISABLE_ASSERT +# define DBUS_ENABLE_ASSERT 1 +#endif +#ifndef DBUS_DISABLE_CHECKS +# define DBUS_ENABLE_CHECKS 1 +#endif |