Fix unknown attribute in Win32

This commit is contained in:
Akira TAGOH 2015-03-25 12:10:48 +09:00
parent c965c9f677
commit e92c92ff22
1 changed files with 1 additions and 1 deletions

View File

@ -2265,8 +2265,8 @@ FcParseInclude (FcConfigParse *parse)
attr = FcConfigGetAttribute (parse, "ignore_missing");
if (attr && FcConfigLexBool (parse, (FcChar8 *) attr) == FcTrue)
ignore_missing = FcTrue;
#ifndef _WIN32
attr = FcConfigGetAttribute (parse, "deprecated");
#ifndef _WIN32
if (attr && FcConfigLexBool (parse, (FcChar8 *) attr) == FcTrue)
deprecated = FcTrue;
#endif