[tracker/rss-enclosures] Fix build failures on none Linux platforms
- From: Roberto Guido <rguido src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/rss-enclosures] Fix build failures on none Linux platforms
- Date: Mon, 3 May 2010 00:30:48 +0000 (UTC)
commit 962cf12e56172a5175316b45c96723de72bbb267
Author: Michael Biebl <biebl debian org>
Date: Fri Apr 9 11:42:55 2010 +0100
Fix build failures on none Linux platforms
src/miners/fs/tracker-miner-files.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/src/miners/fs/tracker-miner-files.c b/src/miners/fs/tracker-miner-files.c
index 621895b..5e55576 100644
--- a/src/miners/fs/tracker-miner-files.c
+++ b/src/miners/fs/tracker-miner-files.c
@@ -21,8 +21,10 @@
#include <sys/statvfs.h>
#include <fcntl.h>
+#ifdef __linux__
#include <sys/ioctl.h>
#include <linux/msdos_fs.h>
+#endif /* __linux__ */
#include <unistd.h>
#include <glib/gi18n.h>
@@ -1777,6 +1779,7 @@ tracker_miner_files_check_directory (GFile *file,
*/
is_hidden = file_info && g_file_info_get_is_hidden (file_info);
+#ifdef __linux__
/* Second we check if the file is on FAT and if the hidden
* attribute is set. GIO does this but ONLY on a Windows OS,
* not for Windows files under a Linux OS, so we have to check
@@ -1796,6 +1799,7 @@ tracker_miner_files_check_directory (GFile *file,
close (fd);
}
}
+#endif /* __linux__ */
if (is_hidden) {
/* FIXME: We need to check if the file is actually a
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]