mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2024-11-11 09:33:49 +00:00
Resolve ID: 3376260 Solaris also needs inttypes.h
This commit is contained in:
parent
852e9ccd2d
commit
2d17ae18b3
@ -121,9 +121,10 @@ typedef _W64 int ptrdiff_t;
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
/* SGI MIPSPro doesn't like stdint.h in C++ mode */
|
||||
/* SGI MIPSPro doesn't like stdint.h in C++ mode */
|
||||
/* ID: 3376260 Solaris 9 has inttypes.h, but not stdint.h */
|
||||
|
||||
#if defined(__sgi) && !defined(__GNUC__)
|
||||
#if (defined(__sgi) || defined(__sun)) && !defined(__GNUC__)
|
||||
#include <inttypes.h>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
|
Loading…
Reference in New Issue
Block a user