From edb3a6139ef7424f99ed860c516e9dbe4e644ce7 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 2 May 2014 12:51:58 +0200 Subject: Fix 692171: Guard against .incbin on Intel's C compiler. --- scripts/fontdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/fontdump.c b/scripts/fontdump.c index add26437..8c1220ce 100644 --- a/scripts/fontdump.c +++ b/scripts/fontdump.c @@ -50,7 +50,7 @@ main(int argc, char **argv) fprintf(fo, "#ifndef __STRICT_ANSI__\n"); fprintf(fo, "#if defined(__linux__) || defined(__FreeBSD__) || defined(__OpenBSD__)\n"); - fprintf(fo, "#ifndef __clang__\n"); + fprintf(fo, "#if !defined(__clang__) && !defined(__ICC)\n"); fprintf(fo, "#define HAVE_INCBIN\n"); fprintf(fo, "#endif\n"); fprintf(fo, "#endif\n"); -- cgit v1.2.3