comparison configure.ac @ 1724:655949f889ec

New Gnome shortcuts plugin to listen for Gnome's shortcuts over dbus
author Sascha Hlusiak <contact@saschahlusiak.de>
date Tue, 18 Sep 2007 16:10:07 +0200
parents 48b4c7d504f7
children 0b6e61f2f22b
comparison
equal deleted inserted replaced
1723:ff587f35467a 1724:655949f889ec
443 have_hotkey="no" 443 have_hotkey="no"
444 fi 444 fi
445 445
446 if test "x$have_hotkey" = "xyes"; then 446 if test "x$have_hotkey" = "xyes"; then
447 GENERAL_PLUGINS="$GENERAL_PLUGINS hotkey" 447 GENERAL_PLUGINS="$GENERAL_PLUGINS hotkey"
448 fi
449
450 dnl *** Gnome Shortcuts Plugin
451
452 AC_ARG_ENABLE(gnomeshortcuts,
453 [ --disable-gnomeshortcuts disable gnome shortcuts (default=enabled)],
454 [enable_gnomeshortcuts=$enableval],
455 [enable_gnomeshortcuts="yes"]
456 )
457
458 if test "x$enable_gnomeshortcuts" = "xyes"; then
459 have_gnomeshortcuts="yes"
460 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.60 dbus-glib-1 >= 0.60],,
461 [AC_MSG_ERROR([Cannot find dbus-glib >= 0.60 for gnomeshortcuts plugin])])
462 else
463 AC_MSG_RESULT([*** Gnome Shortcuts Plugin disabled per user request ***])
464 have_gnomeshortcuts="no"
465 fi
466
467 if test "x$have_gnomeshortcuts" = "xyes"; then
468 GENERAL_PLUGINS="$GENERAL_PLUGINS gnomeshortcuts"
448 fi 469 fi
449 470
450 dnl *** Status Icon plugin (for X11 only) 471 dnl *** Status Icon plugin (for X11 only)
451 472
452 AC_ARG_ENABLE(statusicon, 473 AC_ARG_ENABLE(statusicon,
1579 echo " Status Icon: $have_statusicon" 1600 echo " Status Icon: $have_statusicon"
1580 echo " Audacious OSD: $have_aosd" 1601 echo " Audacious OSD: $have_aosd"
1581 echo " -> X Composite support: $have_aosd_xcomp" 1602 echo " -> X Composite support: $have_aosd_xcomp"
1582 echo " Control via event device (evdev-plug): $have_evdevplug" 1603 echo " Control via event device (evdev-plug): $have_evdevplug"
1583 echo " Global Hotkey Plugin: $have_hotkey" 1604 echo " Global Hotkey Plugin: $have_hotkey"
1605 echo " Gnome Shortcuts Plugin: $have_gnomeshortcuts"
1584 echo " LIRC: $have_lirc" 1606 echo " LIRC: $have_lirc"
1585 echo " AudioScrobbler Client: $scrobbler" 1607 echo " AudioScrobbler Client: $scrobbler"
1586 echo " Upload to MTP device: $have_mtp_up" 1608 echo " Upload to MTP device: $have_mtp_up"
1587 echo " MacOS Dock Album Art plugin: $have_dockalbumart" 1609 echo " MacOS Dock Album Art plugin: $have_dockalbumart"
1588 echo 1610 echo