diff options
author | David Nusinow <[email protected]> | 2006-04-07 01:50:23 +0000 |
---|---|---|
committer | David Nusinow <[email protected]> | 2006-04-07 01:50:23 +0000 |
commit | 32266bb21a014540cb49c8435925420d4a2f3166 (patch) | |
tree | 375a26d83473ba40ba36315f2a27aad33cb859af | |
parent | cab39103b7b185bdbf0f757cb377038c9264a57e (diff) |
* Re-Add s390 and m68k to the USE_IEEE test in src/mesa/main/imports.h.
I need to submit this upstream.
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | src/mesa/main/imports.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index f4c219efa85..72b653dea76 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,8 +2,10 @@ mesa (6.5.0-0.1) experimental; urgency=low * New upstream development release * Increment libdrm-dev build-dep to 2.0.1 + * Re-Add s390 and m68k to the USE_IEEE test in src/mesa/main/imports.h. + I need to submit this upstream. - -- David Nusinow <[email protected]> Thu, 6 Apr 2006 20:37:32 -0400 + -- David Nusinow <[email protected]> Thu, 6 Apr 2006 21:49:58 -0400 mesa (6.4.1-0.4) unstable; urgency=low diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 2827264a3ac..37abe89d330 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -143,8 +143,9 @@ typedef union { GLfloat f; GLint i; } fi_type; *** USE_IEEE: Determine if we're using IEEE floating point ***/ #if defined(__i386__) || defined(__386__) || defined(__sparc__) || \ - defined(__s390x__) || defined(__powerpc__) || \ + defined(__s390x__) || defined(__s390__) || defined(__powerpc__) || \ defined(__amd64__) || \ + defined(__m68k__) || \ defined(ia64) || defined(__ia64__) || \ defined(__hppa__) || defined(hpux) || \ defined(__mips) || defined(_MIPS_ARCH) || \ |