From fc8ef6669203b674a973c4f6ca638b593787a826 Mon Sep 17 00:00:00 2001 From: szaka Date: Thu, 25 Oct 2007 21:02:59 +0000 Subject: [PATCH] add preliminary uClinux support (huwenke, Szabolcs Szakacsits) --- src/ntfs-3g.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index b6da8e99..9fd25551 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -2024,7 +2024,7 @@ static int parse_options(int argc, char *argv[]) return 0; } -#ifdef linux +#ifdef linux || __uClinux__ static const char *dev_fuse_msg = "HINT: You should be root, or make ntfs-3g setuid root, or load the FUSE\n" @@ -2231,7 +2231,7 @@ int main(int argc, char *argv[]) goto err_out; } -#ifdef linux +#ifdef linux || __uClinux__ fstype = get_fuse_fstype(); if (fstype == FSTYPE_NONE || fstype == FSTYPE_UNKNOWN) fstype = load_fuse_module(); @@ -2302,7 +2302,7 @@ int main(int argc, char *argv[]) goto err_out; } -#ifdef linux +#ifdef linux || __uClinux__ if (S_ISBLK(sbuf.st_mode) && (fstype == FSTYPE_FUSE)) ntfs_log_info(fuse26_kmod_msg); #endif