90d3fb
From 036562b66fa607152c6c54f0d6d030cd19bfcb7f Mon Sep 17 00:00:00 2001
90d3fb
From: Andreas Arnez <arnez@linux.ibm.com>
90d3fb
Date: Tue, 19 Feb 2019 19:03:52 +0100
90d3fb
Subject: [PATCH 1/8] Avoid c99 standard compiler
90d3fb
90d3fb
When probing for a usable GCC, the existing code already dropped path
90d3fb
names that contained "c89" or "c90", because these compilers don't have
90d3fb
the GCC extensions enabled.  This patch also drops names with "c99" in
90d3fb
them.
90d3fb
---
90d3fb
 CONFIG/src/atlconf_misc.c | 3 ++-
90d3fb
 1 file changed, 2 insertions(+), 1 deletion(-)
90d3fb
90d3fb
diff --git a/CONFIG/src/atlconf_misc.c b/CONFIG/src/atlconf_misc.c
90d3fb
index 63cb1ef..fb62214 100644
90d3fb
--- a/CONFIG/src/atlconf_misc.c
90d3fb
+++ b/CONFIG/src/atlconf_misc.c
90d3fb
@@ -824,7 +824,8 @@ int CompIsGcc(char *comp)
90d3fb
    int i;
90d3fb
 
90d3fb
    cmpname = NameWithoutPath(comp);
90d3fb
-   if (strstr(cmpname, "c89") || strstr(cmpname, "c90"))
90d3fb
+   if (strstr(cmpname, "c89") || strstr(cmpname, "c90") ||
90d3fb
+       strstr(cmpname, "c99"))
90d3fb
    {
90d3fb
       free(cmpname);
90d3fb
       return(0);
90d3fb
-- 
90d3fb
2.23.0
90d3fb