Commit 07e3fb08 authored by Marc G. Fournier's avatar Marc G. Fournier

More work in the right direction on linux/alpha

From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
parent 5da68b98
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.29 1998/02/26 04:37:07 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/float.c,v 1.30 1998/04/12 02:58:17 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -132,7 +132,7 @@ extern int isinf(double x); ...@@ -132,7 +132,7 @@ extern int isinf(double x);
* until the distributions are updated. * until the distributions are updated.
* --djm 12/16/96 * --djm 12/16/96
*/ */
#if defined(linuxalpha) && !defined(UNSAFE_FLOATS) #if ( defined(linux) && defined(alpha) ) && !defined(UNSAFE_FLOATS)
#define UNSAFE_FLOATS #define UNSAFE_FLOATS
#endif #endif
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: memutils.h,v 1.14 1998/02/26 04:44:08 momjian Exp $ * $Id: memutils.h,v 1.15 1998/04/12 02:58:22 scrappy Exp $
* *
* NOTES * NOTES
* some of the information in this file will be moved to * some of the information in this file will be moved to
...@@ -67,7 +67,7 @@ s...) ...@@ -67,7 +67,7 @@ s...)
*/ */
#if defined(sun) && ! defined(sparc) #if defined(sun) && ! defined(sparc)
#define LONGALIGN(LEN) SHORTALIGN(LEN) #define LONGALIGN(LEN) SHORTALIGN(LEN)
#elif defined (alpha) || defined(linuxalpha) #elif defined (alpha)
/* /*
* even though "long alignment" should really be on 8-byte boundaries for * even though "long alignment" should really be on 8-byte boundaries for
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment