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