diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-12-06 13:02:59 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-12-06 13:02:59 +0000 |
commit | 6a5eaacc6ada22808ec8515ef2b414883f4f59fe (patch) | |
tree | 11ddc57ab808907ac2652e57a2f1cde8335eec81 /src/Makefile_Eio.am | |
parent | e3178a936d09c417ad9935c2304bf211fe8de345 (diff) |
efl: common inotify checks, simplified.
Another try to make inotify checks more common.
This time uses AC_CHECK_HEADERS() as for others, that already define
HAVE_SYS_INOTIFY_H, then uses that.
I still kept AM_CONDITIONAL([HAVE_INOTIFY]) because I plan to convert
ecore_file to the same, smarter, method that is used in eio (compiling
the file depending on the backend.
SVN revision: 80358
Diffstat (limited to 'src/Makefile_Eio.am')
-rw-r--r-- | src/Makefile_Eio.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile_Eio.am b/src/Makefile_Eio.am index 28286b455b..9624285e13 100644 --- a/src/Makefile_Eio.am +++ b/src/Makefile_Eio.am @@ -18,7 +18,7 @@ lib/eio/eio_single.c \ lib/eio/eio_xattr.c \ lib/eio/eio_private.h -if EIO_HAVE_INOTIFY +if HAVE_INOTIFY lib_eio_libeio_la_SOURCES += lib/eio/eio_monitor_inotify.c else if EIO_HAVE_WINCHANGE |