diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-12-16 21:59:51 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-12-16 22:01:18 +0100 |
commit | f2111a7ed11410ac80cd1b700315881d8b8ee7dd (patch) | |
tree | 730a39d9b93ee96258a7ac79d4abd8ff45b1d183 | |
parent | 66397a4fd222757a8bd651c0c297615319eac4a5 (diff) |
remove SGI compiler checks
Change-Id: I8b4bce4b9c0cc457732b2de4af93049010de1097
-rw-r--r-- | hwpfilter/source/grammar.cxx | 2 | ||||
-rw-r--r-- | include/sal/types.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/grammar.cxx b/hwpfilter/source/grammar.cxx index ba7c712483e3..e10c5987d80e 100644 --- a/hwpfilter/source/grammar.cxx +++ b/hwpfilter/source/grammar.cxx @@ -379,7 +379,7 @@ static const short yycheck[] = { 11, #define YYSTACK_USE_ALLOCA #define alloca __builtin_alloca #else /* not GNU C. */ -#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386)) +#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || (defined (__sun) && defined (__i386)) #define YYSTACK_USE_ALLOCA #include <sal/alloca.h> #else /* not sparc */ diff --git a/include/sal/types.h b/include/sal/types.h index cc042464e8e4..11d62ae8a65c 100644 --- a/include/sal/types.h +++ b/include/sal/types.h @@ -88,7 +88,7 @@ typedef unsigned char sal_uInt8; #define SAL_PRIuUINT64 "I64u" #define SAL_PRIxUINT64 "I64x" #define SAL_PRIXUINT64 "I64X" -#elif defined (__GNUC__) || defined (sgi) +#elif defined (__GNUC__) #if SAL_TYPES_SIZEOFLONG == 8 typedef signed long int sal_Int64; typedef unsigned long int sal_uInt64; |