From eb6f1f534a94350d08d611239f978b4b0cff2dcd Mon Sep 17 00:00:00 2001 From: Park Ju Hyung Date: Wed, 18 Sep 2019 19:01:20 +0900 Subject: [PATCH] exfat: fix xattr support xattr.c wasn't being built properly, fix it Signed-off-by: Park Ju Hyung --- config.h | 4 ++++ xattr.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/config.h b/config.h index 4d0ed55..ccf9e23 100644 --- a/config.h +++ b/config.h @@ -44,6 +44,10 @@ #define CONFIG_EXFAT_FAT_MIRRORING /* Write FAT 1, FAT 2 simultaneously */ #endif +#ifndef CONFIG_EXFAT_VIRTUAL_XATTR +#define CONFIG_EXFAT_VIRTUAL_XATTR +#endif + #endif /* _EXFAT_CONFIG_H */ /* end of config.h */ diff --git a/xattr.c b/xattr.c index 0d4bc6a..af14ea0 100644 --- a/xattr.c +++ b/xattr.c @@ -27,6 +27,8 @@ /* */ /************************************************************************/ +#include "config.h" + #ifdef CONFIG_EXFAT_VIRTUAL_XATTR #include