comparison configure.ac @ 11055:df0241eb602c

[gaim-migrate @ 12996] Added preliminary DBUS support to gaim, the details are described in README.dbus. committer: Tailor Script <tailor@pidgin.im>
author Piotr Zielinski <zielaj>
date Sun, 03 Jul 2005 21:48:56 +0000
parents 2ce8ec01a064
children 2eca9ed49469
comparison
equal deleted inserted replaced
11054:bc700cc98b82 11055:df0241eb602c
302 if test X"$x_includes" = X"" ; then 302 if test X"$x_includes" = X"" ; then
303 x_incpath_add= 303 x_incpath_add=
304 else 304 else
305 x_incpath_add="-I$x_includes" 305 x_incpath_add="-I$x_includes"
306 fi 306 fi
307
308 dnl #######################################################################
309 dnl # Check for DBUS libraries
310 dnl #######################################################################
311
312 AC_ARG_ENABLE(dbus, [ --enable-dbus enable DBUS support],,enable_dbus=no)
313
314 if test "x$enable_dbus" = "xyes"; then
315 AC_CHECK_PROG(enable_dbus, dbus-binding-tool, yes, no)
316 fi
317
318 if test "x$enable_dbus" = "xyes"; then
319 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.34 dbus-glib-1 >= 0.34],
320 [
321 AC_DEFINE(HAVE_DBUS, 1, [Define if we're using DBUS.])
322 AC_SUBST(DBUS_CFLAGS)
323 AC_SUBST(DBUS_LIBS)
324 echo "Building with DBUS support"
325 ])
326 else
327 echo "Building without DBUS support"
328 enable_dbus=no
329 fi
330
331 AM_CONDITIONAL(ENABLE_DBUS, test "x$enable_dbus" = "xyes")
332
307 333
308 dnl ####################################################################### 334 dnl #######################################################################
309 dnl # Check for startup notification 335 dnl # Check for startup notification
310 dnl ####################################################################### 336 dnl #######################################################################
311 AC_ARG_ENABLE(startup-notification, [ --disable-startup-notification compile without startup notification support],,enable_startup_notification=yes) 337 AC_ARG_ENABLE(startup-notification, [ --disable-startup-notification compile without startup notification support],,enable_startup_notification=yes)
1277 echo Build with Tcl support........ : $enable_tcl 1303 echo Build with Tcl support........ : $enable_tcl
1278 echo Build with Tk support......... : $enable_tk 1304 echo Build with Tk support......... : $enable_tk
1279 echo Build with Audio support...... : $enable_audio 1305 echo Build with Audio support...... : $enable_audio
1280 echo Build with NAS support........ : $enable_nas 1306 echo Build with NAS support........ : $enable_nas
1281 echo Build with GtkSpell support... : $enable_gtkspell 1307 echo Build with GtkSpell support... : $enable_gtkspell
1308 echo Build with DBUS support....... : $enable_dbus
1282 echo Has you....................... : yes 1309 echo Has you....................... : yes
1283 echo 1310 echo
1284 echo Use kerberos 4 with zephyr.... : $kerberos 1311 echo Use kerberos 4 with zephyr.... : $kerberos
1285 echo Use external libzephyr........ : $zephyr 1312 echo Use external libzephyr........ : $zephyr
1286 echo 1313 echo