summaryrefslogtreecommitdiff
path: root/m4/eio_check_options.m4
blob: 5fb901273c4060f9619db9e1e110732a6ab48ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
dnl use: EIO_CHECK_NOTIFY_WIN32([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
AC_DEFUN([EIO_CHECK_NOTIFY_WIN32],
[
if test "x${have_win32}" = "xyes" ; then
   AC_DEFINE([HAVE_NOTIFY_WIN32], [1], [ File monitoring with Windows notification ])
fi

AC_MSG_CHECKING([whether Windows notification is to be used for filemonitoring])
AC_MSG_RESULT([${have_win32}])

AS_IF([test "x${have_win32}" = "xyes"], [$1], [$2])
])