[tracker/tracker-0.8] Fix build failures on none Linux platforms
- From: Martyn James Russell <mr src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/tracker-0.8] Fix build failures on none Linux platforms
- Date: Fri, 16 Apr 2010 17:28:31 +0000 (UTC)
commit 928e2fa94201c5bfce6fd67f1cca818b5c36a8f8
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]