diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-03-19 17:24:42 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-03-19 17:25:18 -0600 |
commit | 46cc4854e9f781e83556063981d824fad0651eea (patch) | |
tree | 90bc88a911fc98ea4ece7af4e89b1fd5075ad0ce | |
parent | f93882512e54402a7b5199208648be4f60015597 (diff) |
fix IEEE_ONE definition for ICC compiler (bug 15134)
-rw-r--r-- | src/mesa/main/imports.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index ebdfc452a7..d6dc725b0c 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.5.2 + * Version: 7.0.3 * - * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -159,7 +159,7 @@ typedef union { GLfloat f; GLint i; } fi_type; ***/ #if defined(__i386__) || defined(__386__) || defined(__sparc__) || \ defined(__s390x__) || defined(__powerpc__) || \ - defined(__amd64__) || \ + defined(__amd64__) || defined(__x86_64__) || \ defined(ia64) || defined(__ia64__) || \ defined(__hppa__) || defined(hpux) || \ defined(__mips) || defined(_MIPS_ARCH) || \ |