summaryrefslogtreecommitdiff
path: root/configure.in.in
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis@xfce.org>2010-07-22 13:47:49 +0200
committerJannis Pohlmann <jannis@xfce.org>2010-07-25 19:42:30 +0200
commitec4a642dac6bdf799b868daa41a4c9c43aa2adb4 (patch)
treec062f268974b3e41dd5be3c17160d58fc509d450 /configure.in.in
parente6833035f20332b23e4e76f3eb96117680628bb8 (diff)
downloadthunar-volman-ec4a642dac6bdf799b868daa41a4c9c43aa2adb4.tar.gz
Display detection and mount notifications if libnotify is available.
Diffstat (limited to 'configure.in.in')
-rw-r--r--configure.in.in13
1 files changed, 12 insertions, 1 deletions
diff --git a/configure.in.in b/configure.in.in
index 89ba231..2189714 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -91,6 +91,12 @@ XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.7.0])
XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.7.0])
XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.7.0])
+dnl *******************************************************
+dnl *** Optional mount notification support (libnotify) ***
+dnl *******************************************************
+XDT_CHECK_OPTIONAL_PACKAGE([LIBNOTIFY], [libnotify], [0.4.0], [notifications],
+ [Notifications support], [yes])
+
dnl ***********************************
dnl *** Check for debugging support ***
dnl ***********************************
@@ -130,5 +136,10 @@ dnl ***************************
echo
echo "Build Configuration:"
echo
-echo "* Debug Support: $enable_debug"
+if test x"$LIBNOTIFY_FOUND" = x"yes"; then
+echo "* Mount notifications: yes"
+else
+echo "* Mount notifications: no"
+fi
+echo "* Debug Support: $enable_debug"
echo