2002-11-21 19:03:04 +00:00
dnl -*- mode: m4 -*-
AC_PREREQ(2.52)
2002-11-21 16:41:33 +00:00
2002-11-21 19:03:04 +00:00
AC_INIT(dbus/dbus.h)
2002-11-21 16:41:33 +00:00
2006-02-16 01:13:04 +00:00
AC_CANONICAL_TARGET
2007-05-25 21:53:55 +00:00
AM_INIT_AUTOMAKE(dbus, 1.1.1)
2002-11-21 16:41:33 +00:00
2002-11-21 19:03:04 +00:00
AM_CONFIG_HEADER(config.h)
2002-11-21 16:41:33 +00:00
# Honor aclocal flags
ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
GETTEXT_PACKAGE=dbus-1
AC_SUBST(GETTEXT_PACKAGE)
2002-11-21 19:03:04 +00:00
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[The name of the gettext domain])
2002-11-21 16:41:33 +00:00
2003-01-18 14:41:37 +00:00
## must come before we use the $USE_MAINTAINER_MODE variable later
2002-11-21 16:41:33 +00:00
AM_MAINTAINER_MODE
2005-05-05 22:02:11 +00:00
# libtool versioning - this applies to libdbus
2005-03-07 21:10:46 +00:00
#
# See http://sources.redhat.com/autobook/autobook/autobook_91.html#SEC91 for details
#
2005-05-05 22:02:11 +00:00
## increment if the interface has additions, changes, removals.
2006-09-30 Havoc Pennington <hp@redhat.com>
* configure.in (LT_CURRENT, LT_AGE): increment current and age to
reflect addition of interfaces.
* doc/dbus-specification.xml: describe a new
org.freedesktop.DBus.Peer.GetMachineId method
* dbus/dbus-string.c (_dbus_string_skip_white_reverse): new function
(_dbus_string_skip_white, _dbus_string_skip_blank): use new
DBUS_IS_ASCII_BLANK, DBUS_IS_ASCII_WHITE macros and fix assertion
at end of skip_white
(_dbus_string_chop_white): new function
* bus/connection.c (bus_connections_setup_connection): call
dbus_connection_set_route_peer_messages.
* dbus/dbus-connection.c
(_dbus_connection_peer_filter_unlocked_no_update): modify to
support a GetMachineId method.
Also, support a new flag to let the bus pass peer methods through
to apps on the bus, which can be set with
dbus_connection_set_route_peer_messages.
Finally, handle and return an error for anything unknown on the
Peer interface, which will allow us to extend the Peer interface
in the future without fear that we're now intercepting something
apps were wanting to see.
* tools/dbus-uuidgen.c: a thin wrapper around the functions in
dbus/dbus-uuidgen.c
* dbus/dbus-uuidgen.c: implement the bulk of the dbus-uuidgen
binary here, since most of the code is already in libdbus
* dbus/dbus-sysdeps.c (_dbus_read_local_machine_uuid): read the
uuid from the system config file
* dbus/dbus-internals.c (_dbus_generate_uuid, _dbus_uuid_encode)
(_dbus_read_uuid_file_without_creating)
(_dbus_create_uuid_file_exclusively, _dbus_read_uuid_file): new
uuid-related functions, partly factored out from dbus-server.c
* dbus/dbus-sysdeps.c (_dbus_error_from_errno): convert EEXIST to
DBUS_ERROR_FILE_EXISTS instead of EEXIST
* dbus/dbus-protocol.h (DBUS_ERROR_FILE_EXISTS): add file exists error
* tools/dbus-cleanup-sockets.1: explain what the point of this
thing is a bit more
* autogen.sh (run_configure): add --config-cache to default
configure args
* dbus/dbus-internals.h (_DBUS_ASSERT_ERROR_IS_SET): disable the
error set/clear assertions when DBUS_DISABLE_CHECKS is defined
* tools/dbus-launch.c (main): if xdisplay hasn't been opened,
don't try to save address, fixes crash in make check
2006-10-01 03:18:47 +00:00
LT_CURRENT=5
2005-05-05 22:02:11 +00:00
## increment any time the source changes; set to
## 0 if you increment CURRENT
2005-03-07 21:10:46 +00:00
LT_REVISION=0
2005-05-05 22:02:11 +00:00
## increment if any interfaces have been added; set to 0
## if any interfaces have been changed or removed. removal has
## precedence over adding, so set to 0 if both happened.
2006-09-30 Havoc Pennington <hp@redhat.com>
* configure.in (LT_CURRENT, LT_AGE): increment current and age to
reflect addition of interfaces.
* doc/dbus-specification.xml: describe a new
org.freedesktop.DBus.Peer.GetMachineId method
* dbus/dbus-string.c (_dbus_string_skip_white_reverse): new function
(_dbus_string_skip_white, _dbus_string_skip_blank): use new
DBUS_IS_ASCII_BLANK, DBUS_IS_ASCII_WHITE macros and fix assertion
at end of skip_white
(_dbus_string_chop_white): new function
* bus/connection.c (bus_connections_setup_connection): call
dbus_connection_set_route_peer_messages.
* dbus/dbus-connection.c
(_dbus_connection_peer_filter_unlocked_no_update): modify to
support a GetMachineId method.
Also, support a new flag to let the bus pass peer methods through
to apps on the bus, which can be set with
dbus_connection_set_route_peer_messages.
Finally, handle and return an error for anything unknown on the
Peer interface, which will allow us to extend the Peer interface
in the future without fear that we're now intercepting something
apps were wanting to see.
* tools/dbus-uuidgen.c: a thin wrapper around the functions in
dbus/dbus-uuidgen.c
* dbus/dbus-uuidgen.c: implement the bulk of the dbus-uuidgen
binary here, since most of the code is already in libdbus
* dbus/dbus-sysdeps.c (_dbus_read_local_machine_uuid): read the
uuid from the system config file
* dbus/dbus-internals.c (_dbus_generate_uuid, _dbus_uuid_encode)
(_dbus_read_uuid_file_without_creating)
(_dbus_create_uuid_file_exclusively, _dbus_read_uuid_file): new
uuid-related functions, partly factored out from dbus-server.c
* dbus/dbus-sysdeps.c (_dbus_error_from_errno): convert EEXIST to
DBUS_ERROR_FILE_EXISTS instead of EEXIST
* dbus/dbus-protocol.h (DBUS_ERROR_FILE_EXISTS): add file exists error
* tools/dbus-cleanup-sockets.1: explain what the point of this
thing is a bit more
* autogen.sh (run_configure): add --config-cache to default
configure args
* dbus/dbus-internals.h (_DBUS_ASSERT_ERROR_IS_SET): disable the
error set/clear assertions when DBUS_DISABLE_CHECKS is defined
* tools/dbus-launch.c (main): if xdisplay hasn't been opened,
don't try to save address, fixes crash in make check
2006-10-01 03:18:47 +00:00
LT_AGE=2
2005-05-05 22:02:11 +00:00
2005-03-07 21:10:46 +00:00
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
2002-11-21 16:41:33 +00:00
AC_PROG_CC
2002-12-28 09:10:43 +00:00
AC_PROG_CXX
2002-11-21 16:41:33 +00:00
AC_ISC_POSIX
AC_HEADER_STDC
2006-02-16 01:13:04 +00:00
AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],[enable unit test code]),enable_tests=$enableval,enable_tests=$USE_MAINTAINER_MODE)
AC_ARG_ENABLE(ansi, AS_HELP_STRING([--enable-ansi],[enable -ansi -pedantic gcc flags]),enable_ansi=$enableval,enable_ansi=no)
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)
AC_ARG_ENABLE(asserts, AS_HELP_STRING([--enable-asserts],[include assertion checks]),enable_asserts=$enableval,enable_asserts=$USE_MAINTAINER_MODE)
AC_ARG_ENABLE(checks, AS_HELP_STRING([--enable-checks],[include sanity checks on public API]),enable_checks=$enableval,enable_checks=yes)
AC_ARG_ENABLE(xml-docs, AS_HELP_STRING([--enable-xml-docs],[build XML documentation (requires xmlto)]),enable_xml_docs=$enableval,enable_xml_docs=auto)
AC_ARG_ENABLE(doxygen-docs, AS_HELP_STRING([--enable-doxygen-docs],[build DOXYGEN documentation (requires Doxygen)]),enable_doxygen_docs=$enableval,enable_doxygen_docs=auto)
AC_ARG_ENABLE(gcov, AS_HELP_STRING([--enable-gcov],[compile with coverage profiling instrumentation (gcc only)]),enable_gcov=$enableval,enable_gcov=no)
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)
AC_ARG_ENABLE(selinux, AS_HELP_STRING([--enable-selinux],[build with SELinux support]),enable_selinux=$enableval,enable_selinux=auto)
AC_ARG_ENABLE(dnotify, AS_HELP_STRING([--enable-dnotify],[build with dnotify support (linux only)]),enable_dnotify=$enableval,enable_dnotify=auto)
2006-08-25 19:18:52 +00:00
AC_ARG_ENABLE(kqueue, AS_HELP_STRING([--enable-kqueue],[build with kqueue support]),enable_kqueue=$enableval,enable_kqueue=auto)
2006-06-07 19:59:11 +00:00
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)
2006-12-12 22:01:22 +00:00
AC_ARG_ENABLE(userdb-cache, AS_HELP_STRING([--enable-userdb-cache],[build with userdb-cache support]),enable_userdb_cache=$enableval,enable_userdb_cache=yes)
2006-02-16 01:13:04 +00:00
AC_ARG_WITH(xml, AS_HELP_STRING([--with-xml=[libxml/expat]],[XML library to use]))
AC_ARG_WITH(init-scripts, AS_HELP_STRING([--with-init-scripts=[redhat]],[Style of init scripts to install]))
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]))
AC_ARG_WITH(test-socket-dir, AS_HELP_STRING([--with-test-socket-dir=[dirname]],[Where to put sockets for make check]))
AC_ARG_WITH(system-pid-file, AS_HELP_STRING([--with-system-pid-file=[pidfile]],[PID file for systemwide daemon]))
AC_ARG_WITH(system-socket, AS_HELP_STRING([--with-system-socket=[filename]],[UNIX domain socket for systemwide daemon]))
AC_ARG_WITH(console-auth-dir, AS_HELP_STRING([--with-console-auth-dir=[dirname]],[directory to check for console ownerhip]))
2006-06-07 19:59:11 +00:00
AC_ARG_WITH(console-owner-file, AS_HELP_STRING([--with-console-owner-file=[filename]],[file whose owner determines current console owner]))
2006-02-16 01:13:04 +00:00
AC_ARG_WITH(dbus_user, AS_HELP_STRING([--with-dbus-user=<user>],[User for running the DBUS daemon (messagebus)]))
2006-08-08 21:30:31 +00:00
AC_ARG_WITH(dbus_daemondir, AS_HELP_STRING([--with-dbus-daemondir=[dirname]],[Directory for installing the DBUS daemon]))
2006-02-16 01:13:04 +00:00
2007-05-17 11:44:42 +00:00
AC_DEFINE(DBUS_UNIX,1,[dbus on unix])
2003-03-26 03:58:11 +00:00
2002-11-23 06:53:37 +00:00
dnl DBUS_BUILD_TESTS controls unit tests built in to .c files
dnl and also some stuff in the test/ subdir
AM_CONDITIONAL(DBUS_BUILD_TESTS, test x$enable_tests = xyes)
if test x$enable_tests = xyes; then
AC_DEFINE(DBUS_BUILD_TESTS,1,[Build test code])
fi
2002-11-21 16:41:33 +00:00
2003-01-18 15:52:53 +00:00
if test x$enable_verbose_mode = xyes; then
AC_DEFINE(DBUS_ENABLE_VERBOSE_MODE,1,[Support a verbose mode])
fi
2006-10-01 15:36:19 +00:00
2003-01-18 15:52:53 +00:00
if test x$enable_asserts = xno; then
AC_DEFINE(DBUS_DISABLE_ASSERT,1,[Disable assertion checking])
2003-09-03 02:08:25 +00:00
AC_DEFINE(G_DISABLE_ASSERT,1,[Disable GLib assertion macros])
2006-10-01 15:36:19 +00:00
R_DYNAMIC_LDFLAG=""
else
# -rdynamic is needed for glibc's backtrace_symbols to work.
# No clue how much overhead this adds, but it's useful
# to do this on any assertion failure,
# so for now it's enabled anytime asserts are (currently not
# in production builds).
# To get -rdynamic you pass -export-dynamic to libtool.
AC_DEFINE(DBUS_BUILT_R_DYNAMIC,1,[whether -export-dynamic was passed to libtool])
R_DYNAMIC_LDFLAG=-export-dynamic
2003-01-18 15:52:53 +00:00
fi
2006-10-01 15:36:19 +00:00
AC_SUBST(R_DYNAMIC_LDFLAG)
2003-04-24 19:18:23 +00:00
if test x$enable_checks = xno; then
AC_DEFINE(DBUS_DISABLE_CHECKS,1,[Disable public API sanity checking])
2003-09-03 02:08:25 +00:00
AC_DEFINE(G_DISABLE_CHECKS,1,[Disable GLib public API sanity checking])
2003-04-24 19:18:23 +00:00
fi
2003-01-18 15:52:53 +00:00
2006-12-12 22:01:22 +00:00
if test x$enable_userdb_cache = xyes; then
AC_DEFINE(DBUS_ENABLE_USERDB_CACHE,1,[Build with caching of user data])
fi
2003-03-31 08:19:50 +00:00
#### gcc warning flags
2006-08-08 15:36:59 +00:00
cc_supports_flag() {
AC_MSG_CHECKING(whether $CC supports "$@")
Cfile=/tmp/foo${$}
touch ${Cfile}.c
$CC -c "$@" ${Cfile}.c -o ${Cfile}.o >/dev/null 2>&1
rc=$?
rm -f ${Cfile}.c ${Cfile}.o
case $rc in
0) AC_MSG_RESULT(yes);;
*) AC_MSG_RESULT(no);;
esac
return $rc
}
2002-11-21 16:41:33 +00:00
if test "x$GCC" = "xyes"; then
2003-02-13 01:28:10 +00:00
changequote(,)dnl
2002-11-21 16:41:33 +00:00
case " $CFLAGS " in
*[\ \ ]-Wall[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wall" ;;
esac
2002-11-23 06:53:37 +00:00
case " $CFLAGS " in
*[\ \ ]-Wchar-subscripts[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wchar-subscripts" ;;
esac
case " $CFLAGS " in
*[\ \ ]-Wmissing-declarations[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wmissing-declarations" ;;
esac
case " $CFLAGS " in
*[\ \ ]-Wmissing-prototypes[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wmissing-prototypes" ;;
esac
case " $CFLAGS " in
*[\ \ ]-Wnested-externs[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wnested-externs" ;;
esac
case " $CFLAGS " in
*[\ \ ]-Wpointer-arith[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wpointer-arith" ;;
esac
case " $CFLAGS " in
*[\ \ ]-Wcast-align[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wcast-align" ;;
esac
2005-01-01 23:32:45 +00:00
case " $CFLAGS " in
*[\ \ ]-Wfloat-equal[\ \ ]*) ;;
2006-08-10 21:00:30 +00:00
*) if cc_supports_flag -Wfloat-equals; then
CFLAGS="$CFLAGS -Wfloat-equal"
fi
;;
2005-01-01 23:32:45 +00:00
esac
2002-11-23 06:53:37 +00:00
case " $CFLAGS " in
*[\ \ ]-Wsign-compare[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -Wsign-compare" ;;
esac
2006-08-04 16:15:16 +00:00
case " $CFLAGS " in
*[\ \ ]-Wdeclaration-after-statement[\ \ ]*) ;;
2006-08-08 15:36:59 +00:00
*) if cc_supports_flag -Wdeclaration-after-statement; then
CFLAGS="$CFLAGS -Wdeclaration-after-statement"
fi
;;
2006-08-04 16:15:16 +00:00
esac
2006-09-05 21:51:58 +00:00
case " $CFLAGS " in
*[\ \ ]-fno-common[\ \ ]*) ;;
*) if cc_supports_flag -fno-common; then
CFLAGS="$CFLAGS -fno-common"
fi
;;
esac
2006-10-14 17:38:56 +00:00
case " $CFLAGS " in
*[\ \ ]-fPIC[\ \ ]*) ;;
*) if cc_supports_flag -fPIC; then
CFLAGS="$CFLAGS -fPIC"
fi
;;
esac
2002-11-23 06:53:37 +00:00
if test "x$enable_ansi" = "xyes"; then
case " $CFLAGS " in
*[\ \ ]-ansi[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -ansi" ;;
esac
2003-06-28 22:56:27 +00:00
case " $CFLAGS " in
*[\ \ ]-D_POSIX_C_SOURCE*) ;;
*) CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=199309L" ;;
esac
case " $CFLAGS " in
*[\ \ ]-D_BSD_SOURCE[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -D_BSD_SOURCE" ;;
esac
2002-11-23 06:53:37 +00:00
case " $CFLAGS " in
*[\ \ ]-pedantic[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -pedantic" ;;
esac
fi
2003-02-13 01:28:10 +00:00
if test x$enable_gcov = xyes; then
case " $CFLAGS " in
*[\ \ ]-fprofile-arcs[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -fprofile-arcs" ;;
esac
case " $CFLAGS " in
*[\ \ ]-ftest-coverage[\ \ ]*) ;;
*) CFLAGS="$CFLAGS -ftest-coverage" ;;
esac
## remove optimization
CFLAGS=`echo "$CFLAGS" | sed -e 's/-O[0-9]*//g'`
fi
changequote([,])dnl
else
if test x$enable_gcov = xyes; then
AC_MSG_ERROR([--enable-gcov can only be used with gcc])
fi
2002-11-21 16:41:33 +00:00
fi
2003-02-13 01:28:10 +00:00
2006-10-08 16:56:50 +00:00
# Add -D_POSIX_PTHREAD_SEMANTICS if on Solaris
#
case $target_os in
solaris*)
CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS" ;;
esac
2003-06-22 15:24:16 +00:00
AM_PROG_LIBTOOL
2003-04-29 21:27:59 +00:00
changequote(,)dnl
# compress spaces in flags
2003-04-06 18:03:03 +00:00
CFLAGS=`echo "$CFLAGS" | sed -e 's/ +/ /g'`
2003-04-29 21:27:59 +00:00
CXXFLAGS=`echo "$CXXFLAGS" | sed -e 's/ +/ /g'`
CPPFLAGS=`echo "$CPPFLAGS" | sed -e 's/ +/ /g'`
changequote([,])dnl
2003-04-06 18:03:03 +00:00
2003-04-05 10:04:04 +00:00
if test x$enable_gcov = xyes; then
## so that config.h changes when you toggle gcov support
AC_DEFINE_UNQUOTED(DBUS_GCOV_ENABLED, 1, [Defined if gcov is enabled to force a rebuild due to config.h changing])
2003-10-10 03:56:30 +00:00
AC_MSG_CHECKING([for gcc 3.3 version of gcov file format])
have_gcc33_gcov=no
AC_RUN_IFELSE( [AC_LANG_PROGRAM( , [[ if (__GNUC__ >=3 && __GNUC_MINOR__ >= 3) exit (0); else exit (1); ]])],
have_gcc33_gcov=yes)
if test x$have_gcc33_gcov = xyes ; then
AC_DEFINE_UNQUOTED(DBUS_HAVE_GCC33_GCOV, 1, [Defined if we have gcc 3.3 and thus the new gcov format])
fi
AC_MSG_RESULT($have_gcc33_gcov)
2003-04-05 10:04:04 +00:00
fi
AM_CONDITIONAL(DBUS_GCOV_ENABLED, test x$enable_gcov = xyes)
#### Integer sizes
2003-03-31 08:19:50 +00:00
2002-11-21 16:41:33 +00:00
AC_CHECK_SIZEOF(char)
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(void *)
AC_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(__int64)
2003-04-23 03:33:52 +00:00
### See what our 64 bit type is called
AC_MSG_CHECKING([64-bit integer type])
2003-04-05 10:04:04 +00:00
case 8 in
$ac_cv_sizeof_int)
dbusint64=int
2003-04-23 03:33:52 +00:00
dbusint64_constant='(val)'
dbusuint64_constant='(val)'
2003-04-05 10:04:04 +00:00
;;
$ac_cv_sizeof_long)
dbusint64=long
2003-04-23 03:33:52 +00:00
dbusint64_constant='(val##L)'
dbusuint64_constant='(val##UL)'
2003-04-05 10:04:04 +00:00
;;
$ac_cv_sizeof_long_long)
dbusint64='long long'
2003-04-23 03:33:52 +00:00
dbusint64_constant='(val##LL)'
dbusuint64_constant='(val##ULL)'
2003-04-05 10:04:04 +00:00
;;
$ac_cv_sizeof___int64)
dbusint64=__int64
2003-04-23 03:33:52 +00:00
dbusint64_constant='(val##i64)'
dbusuint64_constant='(val##ui64)'
2003-04-05 10:04:04 +00:00
;;
esac
2003-04-23 03:33:52 +00:00
if test -z "$dbusint64" ; then
DBUS_INT64_TYPE="no_int64_type_detected"
DBUS_HAVE_INT64=0
DBUS_INT64_CONSTANT=
DBUS_UINT64_CONSTANT=
AC_MSG_RESULT([none found])
else
DBUS_INT64_TYPE="$dbusint64"
DBUS_HAVE_INT64=1
DBUS_INT64_CONSTANT="$dbusint64_constant"
DBUS_UINT64_CONSTANT="$dbusuint64_constant"
AC_MSG_RESULT($DBUS_INT64_TYPE)
fi
AC_SUBST(DBUS_INT64_TYPE)
AC_SUBST(DBUS_INT64_CONSTANT)
AC_SUBST(DBUS_UINT64_CONSTANT)
AC_SUBST(DBUS_HAVE_INT64)
2003-04-05 10:04:04 +00:00
2005-01-28 03:06:56 +00:00
### see what 32-bit int is called
AC_MSG_CHECKING([32-bit integer type])
case 4 in
$ac_cv_sizeof_short)
dbusint32=int
;;
$ac_cv_sizeof_int)
dbusint32=int
;;
$ac_cv_sizeof_long)
dbusint32=long
;;
esac
if test -z "$dbusint32" ; then
DBUS_INT32_TYPE="no_int32_type_detected"
AC_MSG_ERROR([No 32-bit integer type found])
else
DBUS_INT32_TYPE="$dbusint32"
AC_MSG_RESULT($DBUS_INT32_TYPE)
fi
AC_SUBST(DBUS_INT32_TYPE)
### see what 16-bit int is called
AC_MSG_CHECKING([16-bit integer type])
case 2 in
$ac_cv_sizeof_short)
dbusint16=short
;;
$ac_cv_sizeof_int)
dbusint16=int
;;
esac
if test -z "$dbusint16" ; then
DBUS_INT16_TYPE="no_int16_type_detected"
AC_MSG_ERROR([No 16-bit integer type found])
else
DBUS_INT16_TYPE="$dbusint16"
AC_MSG_RESULT($DBUS_INT16_TYPE)
fi
AC_SUBST(DBUS_INT16_TYPE)
2002-11-21 16:41:33 +00:00
## byte order
2006-09-05 21:56:20 +00:00
case $host_os in
darwin*)
# check at compile-time, so that it is possible to build universal
# (with multiple architectures at once on the compile line)
AH_VERBATIM([WORDS_BIGENDIAN_DARWIN], [
/* Use the compiler-provided endianness defines to allow universal compiling. */
#if defined(__BIG_ENDIAN__)
#define WORDS_BIGENDIAN 1
#endif
])
;;
*)
AC_C_BIGENDIAN
;;
esac
2004-03-05 14:05:33 +00:00
dnl **********************************
dnl *** va_copy checks (from GLib) ***
dnl **********************************
dnl we currently check for all three va_copy possibilities, so we get
dnl all results in config.log for bug reports.
AC_CACHE_CHECK([for an implementation of va_copy()],dbus_cv_va_copy,[
AC_LINK_IFELSE([#include <stdarg.h>
void f (int i, ...) {
va_list args1, args2;
va_start (args1, i);
va_copy (args2, args1);
if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
exit (1);
va_end (args1); va_end (args2);
}
int main() {
f (0, 42);
return 0;
}],
[dbus_cv_va_copy=yes],
[dbus_cv_va_copy=no])
])
AC_CACHE_CHECK([for an implementation of __va_copy()],dbus_cv___va_copy,[
AC_LINK_IFELSE([#include <stdarg.h>
void f (int i, ...) {
va_list args1, args2;
va_start (args1, i);
__va_copy (args2, args1);
if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
exit (1);
va_end (args1); va_end (args2);
}
int main() {
f (0, 42);
return 0;
}],
[dbus_cv___va_copy=yes],
[dbus_cv___va_copy=no])
])
if test "x$dbus_cv_va_copy" = "xyes"; then
dbus_va_copy_func=va_copy
else if test "x$dbus_cv___va_copy" = "xyes"; then
dbus_va_copy_func=__va_copy
fi
fi
if test -n "$dbus_va_copy_func"; then
AC_DEFINE_UNQUOTED(DBUS_VA_COPY,$dbus_va_copy_func,[A 'va_copy' style function])
fi
2006-10-18 20:28:26 +00:00
AC_LANG_PUSH(C)
AC_CACHE_CHECK([whether va_lists can be copied by value],
dbus_cv_va_val_copy,
[AC_RUN_IFELSE([AC_LANG_PROGRAM(
[[
#include <stdarg.h>
]],
[[
2004-03-05 14:05:33 +00:00
void f (int i, ...) {
va_list args1, args2;
va_start (args1, i);
args2 = args1;
if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
exit (1);
va_end (args1); va_end (args2);
}
int main() {
f (0, 42);
return 0;
2006-10-18 20:28:26 +00:00
}
]])],
2004-03-05 14:05:33 +00:00
[dbus_cv_va_val_copy=yes],
[dbus_cv_va_val_copy=no],
[dbus_cv_va_val_copy=yes])
])
2006-10-18 20:28:26 +00:00
AC_LANG_POP(C)
2004-03-05 14:05:33 +00:00
if test "x$dbus_cv_va_val_copy" = "xno"; then
AC_DEFINE(DBUS_VA_COPY_AS_ARRAY,1, ['va_lists' cannot be copies as values])
fi
2003-05-11 07:59:08 +00:00
#### Atomic integers (checks by Sebastian Wilhelmi for GLib)
AC_MSG_CHECKING([whether to use inline assembler routines for atomic integers])
have_atomic_inc=no
if test x"$GCC" = xyes; then
2003-06-28 22:56:27 +00:00
if test "x$enable_ansi" = "xyes"; then
AC_MSG_RESULT([no])
else
case $host_cpu in
i386)
AC_MSG_RESULT([no])
;;
i?86)
2006-09-05 21:56:20 +00:00
case $host_os in
darwin*)
AC_MSG_RESULT([darwin])
# check at compile-time, so that it is possible to build universal
# (with multiple architectures at once on the compile line)
AH_VERBATIM([DBUS_USE_ATOMIC_INT_486_DARWIN], [
#if (defined(__i386__) || defined(__x86_64__))
# define DBUS_USE_ATOMIC_INT_486 1
#endif
])
;;
*)
AC_MSG_RESULT([i486])
AC_DEFINE_UNQUOTED(DBUS_USE_ATOMIC_INT_486, 1, [Use atomic integer implementation for 486])
;;
esac
2003-06-28 22:56:27 +00:00
have_atomic_inc=yes
;;
*)
AC_MSG_RESULT([no])
;;
esac
fi
2003-05-11 07:59:08 +00:00
fi
if test x$have_atomic_inc = xyes ; then
2006-09-05 21:56:20 +00:00
case $host_os in
darwin*)
AH_VERBATIM([DBUS_HAVE_ATOMIC_INT_DARWIN], [
#if (defined(__i386__) || defined(__x86_64__))
# define DBUS_HAVE_ATOMIC_INT 1
#endif
])
;;
*)
AC_DEFINE_UNQUOTED(DBUS_HAVE_ATOMIC_INT, 1, [Some atomic integer implementation present])
;;
esac
2003-05-11 07:59:08 +00:00
fi
2003-04-06 18:03:03 +00:00
#### Various functions
2003-02-19 16:23:41 +00:00
AC_CHECK_LIB(socket,socket)
2006-10-13 20:01:16 +00:00
AC_CHECK_FUNC(gethostbyname,,[AC_CHECK_LIB(nsl,gethostbyname)])
2003-02-19 16:23:41 +00:00
2007-03-08 08:17:25 +00:00
AC_CHECK_FUNCS(vsnprintf vasprintf nanosleep usleep poll setenv unsetenv socketpair getgrouplist fpathconf setrlimit)
2006-10-11 17:29:01 +00:00
2006-10-12 01:05:16 +00:00
AC_MSG_CHECKING(for dirfd)
2006-11-02 19:19:08 +00:00
AC_TRY_LINK([
2006-10-11 17:29:01 +00:00
#include <sys/types.h>
#include <dirent.h>
2006-10-12 01:05:16 +00:00
],[
DIR *dirp;
dirp = opendir(".");
dirfd(dirp);
closedir(dirp);
],
dbus_have_dirfd=yes, dbus_have_dirfd=no)
AC_MSG_RESULT($dbus_have_dirfd)
if test "$dbus_have_dirfd" = yes; then
2006-10-11 17:29:01 +00:00
AC_DEFINE(HAVE_DIRFD,1,[Have dirfd function])
2006-11-02 19:19:08 +00:00
else
AC_MSG_CHECKING(for DIR *dirp->dd_fd)
AC_TRY_LINK([
#include <sys/types.h>
#include <dirent.h>
],[
DIR *dirp;
int fd;
dirp = opendir(".");
fd = dirp->dd_fd;
closedir(dirp);
],
dbus_have_ddfd=yes, dbus_have_ddfd=no)
AC_MSG_RESULT($dbus_have_ddfd)
if test "$dbus_have_ddfd" = yes; then
AC_DEFINE(HAVE_DDFD,1,[Have the ddfd member of DIR])
fi
2006-10-11 17:29:01 +00:00
fi
2003-02-19 16:23:41 +00:00
2003-03-15 06:00:01 +00:00
AC_CHECK_HEADERS(execinfo.h, [AC_CHECK_FUNCS(backtrace)])
2006-09-10 21:37:10 +00:00
AC_CHECK_HEADERS(errno.h)
2007-03-04 19:00:40 +00:00
AC_CHECK_HEADERS(unistd.h)
2006-10-13 20:32:48 +00:00
# checking for a posix version of getpwnam_r
# if we are cross compiling and can not run the test
# assume getpwnam_r is the posix version
# it is up to the person cross compiling to change
# this behavior if desired
2006-10-18 20:28:26 +00:00
AC_LANG_PUSH(C)
2003-02-19 16:23:41 +00:00
AC_CACHE_CHECK([for posix getpwnam_r],
ac_cv_func_posix_getpwnam_r,
2006-10-18 20:28:26 +00:00
[AC_RUN_IFELSE([AC_LANG_PROGRAM(
[[
2003-02-19 16:23:41 +00:00
#include <errno.h>
#include <pwd.h>
2006-10-18 20:28:26 +00:00
]],
[[
2003-02-19 16:23:41 +00:00
char buffer[10000];
struct passwd pwd, *pwptr = &pwd;
int error;
errno = 0;
error = getpwnam_r ("", &pwd, buffer,
sizeof (buffer), &pwptr);
return (error < 0 && errno == ENOSYS)
|| error == ENOSYS;
2006-10-18 20:28:26 +00:00
]])],
2003-02-19 16:23:41 +00:00
[ac_cv_func_posix_getpwnam_r=yes],
2006-10-13 20:32:48 +00:00
[ac_cv_func_posix_getpwnam_r=no],
2006-10-18 20:28:26 +00:00
[ac_cv_func_posix_getpwnam_r=yes]
)])
AC_LANG_POP(C)
2003-02-19 16:23:41 +00:00
if test "$ac_cv_func_posix_getpwnam_r" = yes; then
AC_DEFINE(HAVE_POSIX_GETPWNAM_R,1,
[Have POSIX function getpwnam_r])
else
AC_CACHE_CHECK([for nonposix getpwnam_r],
ac_cv_func_nonposix_getpwnam_r,
[AC_TRY_LINK([#include <pwd.h>],
[char buffer[10000];
struct passwd pwd;
getpwnam_r ("", &pwd, buffer,
sizeof (buffer));],
[ac_cv_func_nonposix_getpwnam_r=yes],
[ac_cv_func_nonposix_getpwnam_r=no])])
if test "$ac_cv_func_nonposix_getpwnam_r" = yes; then
AC_DEFINE(HAVE_NONPOSIX_GETPWNAM_R,1,
[Have non-POSIX function getpwnam_r])
fi
fi
2002-11-21 16:41:33 +00:00
2003-06-15 10:45:07 +00:00
dnl check for socklen_t
AC_MSG_CHECKING(whether socklen_t is defined)
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
],[
socklen_t foo;
foo = 1;
],dbus_have_socklen_t=yes,dbus_have_socklen_t=no)
AC_MSG_RESULT($dbus_have_socklen_t)
if test "x$dbus_have_socklen_t" = "xyes"; then
AC_DEFINE(HAVE_SOCKLEN_T,1,[Have socklen_t type])
fi
2002-11-25 05:13:09 +00:00
dnl check for writev header and writev function so we're
dnl good to go if HAVE_WRITEV gets defined.
AC_CHECK_HEADERS(sys/uio.h, [AC_CHECK_FUNCS(writev)])
2006-09-18 17:17:41 +00:00
dnl needed on darwin for NAME_MAX
AC_CHECK_HEADERS(sys/syslimits.h)
2003-01-18 15:52:53 +00:00
dnl check for flavours of varargs macros (test from GLib)
AC_MSG_CHECKING(for ISO C99 varargs macros in C)
AC_TRY_COMPILE([],[
int a(int p1, int p2, int p3);
#define call_a(...) a(1,__VA_ARGS__)
call_a(2,3);
],dbus_have_iso_c_varargs=yes,dbus_have_iso_c_varargs=no)
AC_MSG_RESULT($dbus_have_iso_c_varargs)
AC_MSG_CHECKING(for GNUC varargs macros)
AC_TRY_COMPILE([],[
int a(int p1, int p2, int p3);
#define call_a(params...) a(1,params)
call_a(2,3);
],dbus_have_gnuc_varargs=yes,dbus_have_gnuc_varargs=no)
AC_MSG_RESULT($dbus_have_gnuc_varargs)
dnl Output varargs tests
if test x$dbus_have_iso_c_varargs = xyes; then
AC_DEFINE(HAVE_ISO_VARARGS,1,[Have ISO C99 varargs macros])
fi
if test x$dbus_have_gnuc_varargs = xyes; then
AC_DEFINE(HAVE_GNUC_VARARGS,1,[Have GNU-style varargs macros])
fi
2003-03-01 20:50:18 +00:00
dnl Check for various credentials.
AC_MSG_CHECKING(for struct cmsgcred)
AC_TRY_COMPILE([
#include <sys/types.h>
#include <sys/socket.h>
],[
struct cmsgcred cred;
cred.cmcred_pid = 0;
],dbus_have_struct_cmsgcred=yes,dbus_have_struct_cmsgcred=no)
AC_MSG_RESULT($dbus_have_struct_cmsgcred)
if test x$dbus_have_struct_cmsgcred = xyes; then
AC_DEFINE(HAVE_CMSGCRED,1,[Have cmsgcred structure])
fi
2003-01-18 15:52:53 +00:00
2005-10-12 22:15:37 +00:00
AC_CHECK_FUNCS(getpeerucred getpeereid)
2003-03-26 07:16:03 +00:00
2003-06-04 05:20:20 +00:00
#### Abstract sockets
AC_LANG_PUSH(C)
2006-10-18 20:28:26 +00:00
AC_CACHE_CHECK([abstract socket namespace],
ac_cv_have_abstract_sockets,
[AC_RUN_IFELSE([AC_LANG_PROGRAM(
2003-06-04 05:20:20 +00:00
[[
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <errno.h>
]],
[[
int listen_fd;
struct sockaddr_un addr;
listen_fd = socket (PF_UNIX, SOCK_STREAM, 0);
if (listen_fd < 0)
{
fprintf (stderr, "socket() failed: %s\n", strerror (errno));
exit (1);
}
memset (&addr, '\0', sizeof (addr));
addr.sun_family = AF_UNIX;
strcpy (addr.sun_path, "X/tmp/dbus-fake-socket-path-used-in-configure-test");
addr.sun_path[0] = '\0'; /* this is what makes it abstract */
if (bind (listen_fd, (struct sockaddr*) &addr, SUN_LEN (&addr)) < 0)
{
fprintf (stderr, "Abstract socket namespace bind() failed: %s\n",
strerror (errno));
exit (1);
}
else
exit (0);
]])],
2006-10-18 20:28:26 +00:00
[ac_cv_have_abstract_sockets=yes],
[ac_cv_have_abstract_sockets=no]
)])
2003-06-04 05:20:20 +00:00
AC_LANG_POP(C)
if test x$enable_abstract_sockets = xyes; then
2006-10-18 20:28:26 +00:00
if test x$ac_cv_have_abstract_sockets = xno; then
2003-06-04 05:20:20 +00:00
AC_MSG_ERROR([Abstract sockets explicitly required, and support not detected.])
fi
fi
if test x$enable_abstract_sockets = xno; then
2006-10-18 20:28:26 +00:00
ac_cv_have_abstract_sockets=no;
2003-06-04 05:20:20 +00:00
fi
2006-10-18 20:28:26 +00:00
if test x$ac_cv_have_abstract_sockets = xyes ; then
2003-06-04 05:20:20 +00:00
DBUS_PATH_OR_ABSTRACT=abstract
2004-05-21 09:05:20 +00:00
AC_DEFINE(HAVE_ABSTRACT_SOCKETS,1,[Have abstract socket namespace])
2003-06-04 05:20:20 +00:00
else
DBUS_PATH_OR_ABSTRACT=path
fi
# this is used in addresses to prefer abstract, e.g.
# unix:path=/foo or unix:abstract=/foo
AC_SUBST(DBUS_PATH_OR_ABSTRACT)
2003-03-26 07:16:03 +00:00
#### Sort out XML library
# see what we have
2005-05-18 15:44:50 +00:00
AC_CHECK_LIB(expat, XML_ParserCreate_MM,
2003-03-26 07:16:03 +00:00
[ AC_CHECK_HEADERS(expat.h, have_expat=true, have_expat=false) ],
have_expat=false)
2006-08-10 21:22:33 +00:00
PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= 2.6.0, have_libxml=true, have_libxml=false)
2003-03-26 07:16:03 +00:00
# see what we want to use
dbus_use_libxml=false
dbus_use_expat=false
if test x$with_xml = xexpat; then
dbus_use_expat=true
if ! $have_expat ; then
AC_MSG_ERROR([Explicitly requested expat but expat not found])
fi
elif test x$with_xml = xlibxml; then
dbus_use_libxml=true
if ! $have_libxml ; then
2006-08-10 21:33:06 +00:00
AC_MSG_ERROR([Explicitly requested libxml but libxml not found])
2003-03-26 07:16:03 +00:00
fi
else
### expat is the default because libxml can't currently survive
2003-03-28 05:42:19 +00:00
### our brutal OOM-handling unit test setup.
### http://bugzilla.gnome.org/show_bug.cgi?id=109368
2003-03-26 07:16:03 +00:00
if $have_expat ; then
with_xml=expat
dbus_use_expat=true
elif $have_libxml ; then
with_xml=libxml
dbus_use_libxml=true
else
AC_MSG_ERROR([No XML library found, check config.log for failed attempts])
fi
fi
AM_CONDITIONAL(DBUS_USE_EXPAT, $dbus_use_expat)
AM_CONDITIONAL(DBUS_USE_LIBXML, $dbus_use_libxml)
if $dbus_use_expat; then
XML_LIBS=-lexpat
XML_CFLAGS=
fi
if $dbus_use_libxml; then
XML_LIBS=$LIBXML_LIBS
XML_CFLAGS=$LIBXML_CFLAGS
fi
2006-10-26 18:06:07 +00:00
# Thread lib detection
AC_CHECK_FUNC(pthread_cond_timedwait,,[AC_CHECK_LIB(pthread,pthread_cond_timedwait,
[THREAD_LIBS="-lpthread"])])
2004-07-30 05:59:34 +00:00
# SELinux detection
if test x$enable_selinux = xno ; then
have_selinux=no;
else
# See if we have SELinux library
AC_CHECK_LIB(selinux, is_selinux_enabled,
have_selinux=yes, have_selinux=no)
2006-08-03 20:34:36 +00:00
# see if we have the SELinux header with the new D-Bus stuff in it
2004-07-30 05:59:34 +00:00
if test x$have_selinux = xyes ; then
2004-07-31 05:35:52 +00:00
AC_MSG_CHECKING([for DBUS Flask permissions in selinux/av_permissions.h])
AC_TRY_COMPILE([#include <selinux/av_permissions.h>],
[#ifdef DBUS__ACQUIRE_SVC return 0;
2004-07-31 15:18:04 +00:00
#else
#error DBUS__ACQUIRE_SVC not defined
2004-07-31 05:35:52 +00:00
#endif],
2004-07-30 05:59:34 +00:00
have_selinux=yes, have_selinux=no)
2004-07-31 05:35:52 +00:00
AC_MSG_RESULT($have_selinux)
2004-07-30 05:59:34 +00:00
fi
if test x$enable_selinux = xauto ; then
if test x$have_selinux = xno ; then
AC_MSG_WARN([Sufficiently new SELinux library not found])
fi
else
if test x$have_selinux = xno ; then
AC_MSG_ERROR([SElinux explicitly required, and SELinux library not found])
fi
fi
fi
AM_CONDITIONAL(HAVE_SELINUX, test x$have_selinux = xyes)
if test x$have_selinux = xyes ; then
2006-10-26 18:06:07 +00:00
# the selinux code creates threads
# which requires libpthread even on linux
AC_CHECK_FUNC(pthread_create,,[AC_CHECK_LIB(pthread,pthread_create,
[SELINUX_THREAD_LIBS="-lpthread"])])
SELINUX_LIBS="-lselinux $SELINUX_THREAD_LIBS"
2004-07-30 05:59:34 +00:00
AC_DEFINE(HAVE_SELINUX,1,[SELinux support])
else
SELINUX_LIBS=
fi
2005-06-15 02:31:38 +00:00
# dnotify checks
2005-11-14 20:51:25 +00:00
if test x$enable_dnotify = xno ; then
have_dnotify=no;
else
if test x$target_os = xlinux-gnu -o x$target_os = xlinux; then
have_dnotify=yes;
else
have_dnotify=no;
fi
2005-06-15 02:31:38 +00:00
fi
2005-11-14 20:51:25 +00:00
2005-06-15 02:31:38 +00:00
dnl check if dnotify backend is enabled
2005-11-14 20:51:25 +00:00
if test x$have_dnotify = xyes; then
2005-06-15 02:31:38 +00:00
AC_DEFINE(DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX,1,[Use dnotify on Linux])
fi
2006-08-08 22:08:39 +00:00
AM_CONDITIONAL(DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX, test x$have_dnotify = xyes)
# kqueue checks
if test x$enable_kqueue = xno ; then
2006-08-25 19:18:52 +00:00
have_kqueue=no
2006-08-08 22:08:39 +00:00
else
2006-08-25 19:18:52 +00:00
have_kqueue=yes
AC_CHECK_HEADER(sys/event.h, , have_kqueue=no)
AC_CHECK_FUNC(kqueue, , have_kqueue=no)
if test x$enable_kqueue = xyes -a x$have_kqueue = xno; then
AC_MSG_ERROR(kqueue support explicitly enabled but not available)
fi
2006-08-08 22:08:39 +00:00
fi
dnl check if kqueue backend is enabled
if test x$have_kqueue = xyes; then
2006-08-25 19:18:52 +00:00
AC_DEFINE(DBUS_BUS_ENABLE_KQUEUE,1,[Use kqueue])
2006-08-08 22:08:39 +00:00
fi
2006-08-25 19:18:52 +00:00
AM_CONDITIONAL(DBUS_BUS_ENABLE_KQUEUE, test x$have_kqueue = xyes)
2006-08-08 22:08:39 +00:00
2006-06-07 19:59:11 +00:00
dnl console owner file
if test x$enable_console_owner_file = xno ; then
have_console_owner_file=no;
else
case $target_os in
solaris*)
have_console_owner_file=yes;
AC_DEFINE(HAVE_CONSOLE_OWNER_FILE,1,[Have console owner file])
;;
*)
have_console_owner_file=no;;
esac
fi
AM_CONDITIONAL(HAVE_CONSOLE_OWNER_FILE, test x$have_console_owner_file = xyes)
2003-03-26 07:16:03 +00:00
#### Set up final flags
2002-11-21 16:41:33 +00:00
DBUS_CLIENT_CFLAGS=
2006-10-26 18:06:07 +00:00
DBUS_CLIENT_LIBS="$THREAD_LIBS"
2002-11-21 16:41:33 +00:00
AC_SUBST(DBUS_CLIENT_CFLAGS)
AC_SUBST(DBUS_CLIENT_LIBS)
2003-03-26 07:16:03 +00:00
DBUS_BUS_CFLAGS=$XML_CFLAGS
2006-10-26 18:06:07 +00:00
DBUS_BUS_LIBS="$XML_LIBS $SELINUX_LIBS $INTLLIBS $THREAD_LIBS"
2002-11-22 05:59:06 +00:00
AC_SUBST(DBUS_BUS_CFLAGS)
AC_SUBST(DBUS_BUS_LIBS)
2002-11-21 16:41:33 +00:00
2002-11-25 05:13:09 +00:00
DBUS_TEST_CFLAGS=
2006-10-26 18:06:07 +00:00
DBUS_TEST_LIBS="$THREAD_LIBS"
2002-11-25 05:13:09 +00:00
AC_SUBST(DBUS_TEST_CFLAGS)
AC_SUBST(DBUS_TEST_LIBS)
2003-05-04 03:22:46 +00:00
### X11 detection
AC_PATH_XTRA
## for now enable_x11 just tracks have_x11,
## there's no --enable-x11
if test x$no_x = xyes ; then
have_x11=no
enable_x11=no
else
have_x11=yes
enable_x11=yes
fi
if test x$enable_x11 = xyes ; then
AC_DEFINE(DBUS_BUILD_X11,1,[Build X11-dependent code])
2003-05-04 08:54:24 +00:00
DBUS_X_LIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS"
DBUS_X_CFLAGS="$X_CFLAGS"
else
DBUS_X_LIBS=
DBUS_X_CFLAGS=
2003-05-04 03:22:46 +00:00
fi
2003-05-04 08:54:24 +00:00
AC_SUBST(DBUS_X_CFLAGS)
AC_SUBST(DBUS_X_LIBS)
2003-09-30 03:34:00 +00:00
### Doxygen Documentation
2003-04-28 23:40:17 +00:00
AC_PATH_PROG(DOXYGEN, doxygen, no)
2003-09-30 03:34:00 +00:00
AC_MSG_CHECKING([whether to build Doxygen documentation])
2003-04-28 23:40:17 +00:00
2003-09-30 03:34:00 +00:00
if test x$DOXYGEN = xno ; then
have_doxygen=no
2003-04-28 23:40:17 +00:00
else
2003-09-30 03:34:00 +00:00
have_doxygen=yes
2003-04-28 23:40:17 +00:00
fi
2003-09-30 03:34:00 +00:00
if test x$enable_doxygen_docs = xauto ; then
if test x$have_doxygen = xno ; then
enable_doxygen_docs=no
2003-04-28 23:40:17 +00:00
else
2003-09-30 03:34:00 +00:00
enable_doxygen_docs=yes
2003-04-28 23:40:17 +00:00
fi
fi
2003-09-30 03:34:00 +00:00
if test x$enable_doxygen_docs = xyes; then
if test x$have_doxygen = xno; then
AC_MSG_ERROR([Building Doxygen docs explicitly required, but Doxygen not found])
2003-04-28 23:40:17 +00:00
fi
fi
2003-09-30 03:34:00 +00:00
AM_CONDITIONAL(DBUS_DOXYGEN_DOCS_ENABLED, test x$enable_doxygen_docs = xyes)
AC_MSG_RESULT(yes)
### XML Documentation
AC_PATH_PROG(XMLTO, xmlto, no)
AC_MSG_CHECKING([whether to build XML documentation])
if test x$XMLTO = xno ; then
have_xmlto=no
else
have_xmlto=yes
fi
if test x$enable_xml_docs = xauto ; then
if test x$have_xmlto = xno ; then
enable_xml_docs=no
else
enable_xml_docs=yes
fi
fi
if test x$enable_xml_docs = xyes; then
if test x$have_xmlto = xno; then
AC_MSG_ERROR([Building XML docs explicitly required, but xmlto not found])
fi
fi
AM_CONDITIONAL(DBUS_XML_DOCS_ENABLED, test x$enable_xml_docs = xyes)
2003-04-28 23:40:17 +00:00
AC_MSG_RESULT(yes)
2007-05-21 17:37:08 +00:00
#### Have to go $localstatedir->$prefix/var->/usr/local/var
2003-07-17 01:32:43 +00:00
2003-03-31 08:19:50 +00:00
#### find the actual value for $prefix that we'll end up with
2003-04-06 23:15:41 +00:00
## (I know this is broken and should be done in the Makefile, but
## that's a major pain and almost nobody actually seems to care)
2007-05-21 17:37:08 +00:00
AS_AC_EXPAND(EXPANDED_LOCALSTATEDIR, "$localstatedir")
AS_AC_EXPAND(EXPANDED_SYSCONFDIR, "$sysconfdir")
AS_AC_EXPAND(EXPANDED_BINDIR, "$bindir")
AS_AC_EXPAND(EXPANDED_LIBDIR, "$libdir")
AS_AC_EXPAND(EXPANDED_DATADIR, "$datadir")
2003-07-17 01:32:43 +00:00
2003-04-06 23:15:41 +00:00
#### Check our operating system
operating_system=unknown
if test -f /etc/redhat-release || test -f $EXPANDED_SYSCONFDIR/redhat-release ; then
operating_system=redhat
fi
2004-10-29 19:17:57 +00:00
if test -f /etc/slackware-version || test -f $EXPANDED_SYSCONFDIR/slackware-version ; then
operating_system=slackware
fi
2003-03-31 23:19:19 +00:00
#### Sort out init scripts
if test x$with_init_scripts = x; then
2003-04-06 23:15:41 +00:00
if test xredhat = x$operating_system ; then
with_init_scripts=redhat
else
2004-10-29 19:17:57 +00:00
if test xslackware = x$operating_system ; then
with_init_scripts=slackware
else
with_init_scripts=none
fi
2003-04-06 23:15:41 +00:00
fi
2003-03-31 23:19:19 +00:00
fi
AM_CONDITIONAL(DBUS_INIT_SCRIPTS_RED_HAT, test x$with_init_scripts = xredhat)
2004-10-29 19:17:57 +00:00
AM_CONDITIONAL(DBUS_INIT_SCRIPTS_SLACKWARE, test x$with_init_scripts = xslackware)
2003-04-06 23:15:41 +00:00
##### Set up location for system bus socket
if ! test -z "$with_system_socket"; then
DBUS_SYSTEM_SOCKET=$with_system_socket
else
DBUS_SYSTEM_SOCKET=${EXPANDED_LOCALSTATEDIR}/run/dbus/system_bus_socket
fi
AC_SUBST(DBUS_SYSTEM_SOCKET)
2003-09-29 01:43:52 +00:00
AC_DEFINE_UNQUOTED(DBUS_SYSTEM_SOCKET,"$DBUS_SYSTEM_SOCKET",[The name of the socket the system bus listens on by default])
## system bus only listens on local domain sockets, and never
## on an abstract socket (so only root can create the socket)
DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="unix:path=$DBUS_SYSTEM_SOCKET"
AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
2006-08-03 20:34:36 +00:00
AC_DEFINE_UNQUOTED(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS, "$DBUS_SYSTEM_BUS_DEFAULT_ADDRESS",[The default D-Bus address of the system bus])
2003-04-06 23:15:41 +00:00
#### Set up the pid file
if ! test -z "$with_system_pid_file"; then
DBUS_SYSTEM_PID_FILE=$with_system_pid_file
2006-08-17 18:46:00 +00:00
elif test x$with_init_scripts = xredhat ; then
2003-04-06 23:15:41 +00:00
DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/messagebus.pid
else
DBUS_SYSTEM_PID_FILE=${EXPANDED_LOCALSTATEDIR}/run/dbus/pid
fi
AC_SUBST(DBUS_SYSTEM_PID_FILE)
2005-07-08 14:36:22 +00:00
#### Directory to check for console ownership
if ! test -z "$with_console_auth_dir"; then
DBUS_CONSOLE_AUTH_DIR=$with_console_auth_dir
else
DBUS_CONSOLE_AUTH_DIR=/var/run/console/
fi
AC_SUBST(DBUS_CONSOLE_AUTH_DIR)
AC_DEFINE_UNQUOTED(DBUS_CONSOLE_AUTH_DIR, "$DBUS_CONSOLE_AUTH_DIR", [Directory to check for console ownerhip])
2006-06-07 19:59:11 +00:00
#### File to check for console ownership
if test x$have_console_owner_file = xyes; then
if ! test -z "$with_console_owner_file"; then
DBUS_CONSOLE_OWNER_FILE=$with_console_owner_file
else
DBUS_CONSOLE_OWNER_FILE=/dev/console
fi
else
DBUS_CONSOLE_OWNER_FILE=
fi
AC_SUBST(DBUS_CONSOLE_OWNER_FILE)
AC_DEFINE_UNQUOTED(DBUS_CONSOLE_OWNER_FILE, "$DBUS_CONSOLE_OWNER_FILE", [File to check for console ownerhip])
2005-07-15 17:28:35 +00:00
#### User to start the system bus as
if test -z "$with_dbus_user" ; then
DBUS_USER=messagebus
else
DBUS_USER=$with_dbus_user
fi
AC_SUBST(DBUS_USER)
AC_DEFINE_UNQUOTED(DBUS_USER,"$DBUS_USER", [User for running the system BUS daemon])
2006-11-01 23:30:46 +00:00
#### Direcotry to install data files into
DBUS_DATADIR=$EXPANDED_DATADIR
AC_SUBST(DBUS_DATADIR)
AC_DEFINE_UNQUOTED(DBUS_DATADIR,"$DBUS_DATADIR", [Directory for installing DBUS data files])
2006-08-08 21:30:31 +00:00
#### Directory to install dbus-daemon
if test -z "$with_dbus_daemondir" ; then
2006-08-25 19:33:39 +00:00
DBUS_DAEMONDIR=$EXPANDED_BINDIR
2006-08-08 21:30:31 +00:00
else
DBUS_DAEMONDIR=$with_dbus_daemondir
fi
AC_SUBST(DBUS_DAEMONDIR)
AC_DEFINE_UNQUOTED(DBUS_DAEMONDIR,"$DBUS_DAEMONDIR", [Directory for installing the DBUS daemon])
2006-09-30 19:38:34 +00:00
#### Directory to install the other binaries
DBUS_BINDIR=$EXPANDED_BINDIR
AC_SUBST(DBUS_BINDIR)
AC_DEFINE_UNQUOTED(DBUS_BINDIR,"$DBUS_BINDIR", [Directory for installing the binaries])
2003-04-03 21:56:22 +00:00
#### Tell tests where to find certain stuff in builddir
2006-08-25 19:50:16 +00:00
DBUS_PWD=`pwd`
2006-02-16 01:13:04 +00:00
AC_DEFUN([TEST_PATH], [
2006-08-25 19:50:16 +00:00
TEST_$1=${DBUS_PWD}/test/$2
2003-04-05 00:37:17 +00:00
AC_DEFINE_UNQUOTED(TEST_$1, "$TEST_$1",
[Full path to test file test/$2 in builddir])
AC_SUBST(TEST_$1)
])
2003-04-03 21:56:22 +00:00
2003-04-05 00:37:17 +00:00
TEST_PATH(SERVICE_DIR, data/valid-service-files)
TEST_PATH(SERVICE_BINARY, test-service)
2005-07-14 20:44:15 +00:00
TEST_PATH(SHELL_SERVICE_BINARY, test-shell-service)
2003-04-05 00:37:17 +00:00
TEST_PATH(EXIT_BINARY, test-exit)
TEST_PATH(SEGFAULT_BINARY, test-segfault)
TEST_PATH(SLEEP_FOREVER_BINARY, test-sleep-forever)
2003-04-03 21:56:22 +00:00
2006-10-26 15:55:44 +00:00
AC_DEFINE_UNQUOTED(TEST_BUS_BINARY, "$DBUS_PWD/bus/dbus-daemon",
[Full path to the daemon in the builddir])
AC_SUBST(TEST_BUS_BINARY)
2003-04-06 18:03:03 +00:00
#### Find socket directories
if ! test -z "$TMPDIR" ; then
DEFAULT_SOCKET_DIR=$TMPDIR
elif ! test -z "$TEMP" ; then
DEFAULT_SOCKET_DIR=$TEMP
elif ! test -z "$TMP" ; then
DEFAULT_SOCKET_DIR=$TMP
else
DEFAULT_SOCKET_DIR=/tmp
fi
if ! test -z "$with_test_socket_dir" ; then
TEST_SOCKET_DIR="$with_test_socket_dir"
else
TEST_SOCKET_DIR=$DEFAULT_SOCKET_DIR
fi
AC_SUBST(TEST_SOCKET_DIR)
2003-05-11 07:59:08 +00:00
AC_DEFINE_UNQUOTED(DBUS_TEST_SOCKET_DIR, "$TEST_SOCKET_DIR", [Where to put test sockets])
2003-04-06 18:03:03 +00:00
if ! test -z "$with_session_socket_dir" ; then
DBUS_SESSION_SOCKET_DIR="$with_session_socket_dir"
else
DBUS_SESSION_SOCKET_DIR=$DEFAULT_SOCKET_DIR
fi
2003-06-01 07:33:59 +00:00
AC_DEFINE_UNQUOTED(DBUS_SESSION_SOCKET_DIR, "$DBUS_SESSION_SOCKET_DIR", [Where per-session bus puts its sockets])
2003-04-06 18:03:03 +00:00
AC_SUBST(DBUS_SESSION_SOCKET_DIR)
2002-11-21 16:41:33 +00:00
AC_OUTPUT([
2002-11-22 21:33:07 +00:00
Doxyfile
2003-05-03 23:07:19 +00:00
dbus/dbus-arch-deps.h
2003-03-31 08:19:50 +00:00
bus/system.conf
bus/session.conf
2003-03-31 23:19:19 +00:00
bus/messagebus
2004-10-29 19:17:57 +00:00
bus/rc.messagebus
2005-01-18 22:20:38 +00:00
bus/dbus-daemon.1
2003-03-31 08:19:50 +00:00
Makefile
2002-11-21 16:41:33 +00:00
dbus/Makefile
2002-11-22 05:59:06 +00:00
bus/Makefile
2003-04-14 03:25:19 +00:00
tools/Makefile
2002-11-21 16:41:33 +00:00
test/Makefile
* configure.in: Add test/name-test/Makefile to the generated
Makefile list
* dbus/dbus-shared.h (#define DBUS_NAME_FLAG_ALLOW_REPLACEMENT):
New flag which replaces DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT
(#define DBUS_NAME_FLAG_DO_NOT_QUEUE): New flag for specifying
not to queue an ower if it can't be the primary owner
* bus/bus.h: Add new internal BusOwner struct
* bus/driver.c (bus_driver_handle_hello): Send flags (0 for default)
to bus_registry_ensure and don't set the prohibit_replacement flag
since they are now set per BusOwner and not per name.
(bus_driver_handle_list_queued_owners): bus method (ListQueuedOwners)
that returns the list of connections in a name's connection queue
* bus/services.c (struct BusService): remove prohibit_replacement field
(struct BusOwner): new struct for keeping track of queued connections
and their associated flags for the queue
(struct BusRegistry): add a BusOwner memory pool
(bus_registry_new): initialize the BusOwner memory pool
(bus_registry_unref): free the BusOwner memory pool
(_bus_service_find_owner_link): new internal method for
searching the queue for a specific connection
(bus_owner_set_flags): new method for adding setting the flags on a
bus owner
(bus_owner_new): new method that creates a BusOwner object from the
pool and sets its flags
(bus_owner_ref, bus_owner_unref): ref counting for BusOwner objects
(bus_registry_ensure): Add the flags parameter
(bus_registry_acquire_service): Switch from using raw connections to
using the BusOwner struct
Add new state machine for dealing with the new set of flags
(bus_registry_set_service_context_table, struct OwnershipCancelData,
cancel_ownership, free_ownership_cancel_data,
add_cancel_ownership_to_transaction, struct OwnershipRestoreData,
restore_ownership, free_ownership_restore_data,
add_restore_ownership_to_transaction): Switch to using BusOwner
instead of raw connections
(bus_service_add_owner): Add flags parameter
Switch to using BusOwner instead of raw connections
Add state machine for dealing with the new set of flags
(bus_service_swap_owner): Swaps the first and second owners in the
queue. Used to make sure proper signals are sent when a service looses
or gains primary ownership. We never insert an owner at the top of the
queue. Instead we insert it in the second position and then swap.
(bus_service_remove_owner): Remove the owner from the queue sending
out the NameLost and NameOwnerChanged signals if the we were the
primary owner
(bus_service_get_primary_owners_connection): New method that extracts
the connection from the primary owner
(bus_service_get_primary_owner): Returns the BusOwner instead of the
connection
(bus_service_get_allow_replacement): Changed from the old
bus_service_get_prohibit_replacement method. Checks the flags of the
primary owner and returns if it can be replaced or not
(bus_service_set_prohibit_replacement): removed
(bus_service_has_owner): returns TRUE if and owner with
the specified connection exists in the queue
* dbus/dbus-bus.c (dbus_bus_connection_get_unique_name): New helper
method that only compiles if tests are enabled. Allows us to get the
unique name of a connection so we can check it against the queue when
doing regression tests
* bus/activation.c (bus_activation_send_pending_auto_activate),
bus/dispatch.c (bus_dispatch),
bus/driver.c (bus_driver_handle_get_service_owner,
bus_driver_handle_get_connection_unix_user,
bus_driver_handle_get_connection_unix_process_id,
bus_driver_handle_get_connection_selinux_security_context),
bus/signals.c (connection_is_primary_owner):
use bus_service_get_primary_owners_connection instead of
bus_service_get_primary_owner
* dbus/dbus-sysdeps.c (_dbus_connect_unix_socket,
_dbus_listen_unix_socket): Calculate the length of the socket
path and use that instead of using a fixed length which was
causing socket names to contain many trailing Nul bytes.
* dbus/dbus-glib-lowlevel.h, glib/dbus-gobject.c
(dbus_g_method_get_sender): New method for extracting the sender
from a DBusGMethodInvocation
(dbus_g_method_return_get_reply): changed name to
dbus_g_method_get_reply
(dbus_g_method_return_send_reply): changed name to
dbus_g_method_send reply
* doc/dbus-specification.xml: New docs that describe how the new
queueing system works and talks about the changes to the how
we specify socket names
* glib/examples/example-service.c,
glib/examples/example-signal-emitter.c,
glib/examples/statemachine/statemachine-server.c:
Changed the RequestName flags to the new system
* test/name-test/ (test-names.c, run-test.sh, Makefile.am): New
regression test suite for testing various states of the new
queueing system
2005-11-22 20:37:00 +00:00
test/name-test/Makefile
2002-11-21 16:41:33 +00:00
doc/Makefile
2003-04-29 21:56:37 +00:00
dbus-1.pc
2003-04-03 21:56:22 +00:00
test/data/valid-config-files/debug-allow-all.conf
2003-04-14 23:52:40 +00:00
test/data/valid-config-files/debug-allow-all-sha1.conf
2003-04-03 21:56:22 +00:00
test/data/valid-service-files/debug-echo.service
2003-04-11 03:45:40 +00:00
test/data/valid-service-files/debug-segfault.service
2005-07-14 20:44:15 +00:00
test/data/valid-service-files/debug-shell-echo-success.service
test/data/valid-service-files/debug-shell-echo-fail.service
2002-11-21 16:41:33 +00:00
])
2002-11-23 06:53:37 +00:00
dnl ==========================================================================
echo "
2006-08-03 20:34:36 +00:00
D-Bus $VERSION
2002-11-23 06:53:37 +00:00
==============
2003-04-06 18:03:03 +00:00
prefix: ${prefix}
2003-07-17 01:32:43 +00:00
exec_prefix: ${exec_prefix}
libdir: ${EXPANDED_LIBDIR}
bindir: ${EXPANDED_BINDIR}
sysconfdir: ${EXPANDED_SYSCONFDIR}
localstatedir: ${EXPANDED_LOCALSTATEDIR}
2006-02-16 01:13:04 +00:00
datadir: ${EXPANDED_DATADIR}
2003-04-06 18:03:03 +00:00
source code location: ${srcdir}
compiler: ${CC}
cflags: ${CFLAGS}
2003-04-29 21:27:59 +00:00
cppflags: ${CPPFLAGS}
cxxflags: ${CXXFLAGS}
2003-08-11 02:11:58 +00:00
64-bit int: ${DBUS_INT64_TYPE}
2005-01-28 03:06:56 +00:00
32-bit int: ${DBUS_INT32_TYPE}
16-bit int: ${DBUS_INT16_TYPE}
2003-04-28 23:40:17 +00:00
Doxygen: ${DOXYGEN}
2003-09-30 03:34:00 +00:00
xmlto: ${XMLTO}"
2003-06-22 05:53:06 +00:00
echo "
2003-04-06 18:03:03 +00:00
Maintainer mode: ${USE_MAINTAINER_MODE}
gcc coverage profiling: ${enable_gcov}
Building unit tests: ${enable_tests}
Building verbose mode: ${enable_verbose_mode}
Building assertions: ${enable_asserts}
2003-04-24 19:18:23 +00:00
Building checks: ${enable_checks}
2004-07-30 05:59:34 +00:00
Building SELinux support: ${have_selinux}
2005-11-14 20:51:25 +00:00
Building dnotify support: ${have_dnotify}
2003-05-04 03:22:46 +00:00
Building X11 code: ${enable_x11}
2003-09-30 03:34:00 +00:00
Building Doxygen docs: ${enable_doxygen_docs}
Building XML docs: ${enable_xml_docs}
2006-12-12 22:01:22 +00:00
Building cache support: ${enable_userdb_cache}
2005-05-18 15:44:50 +00:00
Gettext libs (empty OK): ${INTLLIBS}
2003-04-06 18:03:03 +00:00
Using XML parser: ${with_xml}
Init scripts style: ${with_init_scripts}
2006-10-18 20:28:26 +00:00
Abstract socket names: ${ac_cv_have_abstract_sockets}
2003-04-06 23:15:41 +00:00
System bus socket: ${DBUS_SYSTEM_SOCKET}
2003-09-29 01:43:52 +00:00
System bus address: ${DBUS_SYSTEM_BUS_DEFAULT_ADDRESS}
2003-04-06 23:15:41 +00:00
System bus PID file: ${DBUS_SYSTEM_PID_FILE}
2003-04-06 18:03:03 +00:00
Session bus socket dir: ${DBUS_SESSION_SOCKET_DIR}
2005-07-08 14:36:22 +00:00
Console auth dir: ${DBUS_CONSOLE_AUTH_DIR}
2006-06-07 19:59:11 +00:00
Console owner file: ${have_console_owner_file}
Console owner file path: ${DBUS_CONSOLE_OWNER_FILE}
2005-07-15 17:28:35 +00:00
System bus user: ${DBUS_USER}
2006-03-17 03:20:14 +00:00
Session bus services dir: ${EXPANDED_DATADIR}/dbus-1/services
2003-04-06 18:03:03 +00:00
'make check' socket dir: ${TEST_SOCKET_DIR}
2002-11-23 06:53:37 +00:00
"
if test x$enable_tests = xyes; then
2003-03-31 08:19:50 +00:00
echo "NOTE: building with unit tests increases the size of the installed library and renders it insecure."
2002-11-23 06:53:37 +00:00
fi
2003-04-30 21:24:41 +00:00
if test x$enable_tests = xyes -a x$enable_asserts = xno; then
echo "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)"
fi
2003-02-13 01:28:10 +00:00
if test x$enable_gcov = xyes; then
2003-03-31 08:19:50 +00:00
echo "NOTE: building with coverage profiling is definitely for developers only."
2003-02-13 01:28:10 +00:00
fi
2003-01-18 15:52:53 +00:00
if test x$enable_verbose_mode = xyes; then
2003-04-24 19:18:23 +00:00
echo "NOTE: building with verbose mode increases library size, may slightly increase security risk, and decreases performance."
2003-01-18 15:52:53 +00:00
fi
if test x$enable_asserts = xyes; then
2003-04-24 19:18:23 +00:00
echo "NOTE: building with assertions increases library size and decreases performance."
2003-01-18 15:52:53 +00:00
fi
2003-04-24 19:18:23 +00:00
if test x$enable_checks = xno; then
2006-08-03 20:34:36 +00:00
echo "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."
2003-05-14 02:40:41 +00:00
fi