diff options
author | Ian Romanick <idr@us.ibm.com> | 2005-08-11 20:29:45 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2005-08-11 20:29:45 +0000 |
commit | f2876d1ee3b878a07b12ddcb464633a44f7c29e7 (patch) | |
tree | 9e46feeaeb58aa5484ff2a11f6632bea84bcca29 /src/glx | |
parent | fbcc5aedf2a06e14030a3e67d2be9fd043e3cf38 (diff) |
Remove the logic that determines at compile time whether or not HAVE_ALIAS
should be defined. It was flawed on some platforms (e.g., Darwin & mingw).
Instead, rely on the build system to define it on the compiler command line.
This also reverts ajax's hand-edit to indirect_size.c. I'll fix that on the
X.org side of things later today.
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/x11/indirect_size.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/glx/x11/indirect_size.c b/src/glx/x11/indirect_size.c index a37b2f806f..b8886e4859 100644 --- a/src/glx/x11/indirect_size.c +++ b/src/glx/x11/indirect_size.c @@ -29,10 +29,6 @@ #include <GL/gl.h> #include "indirect_size.h" -# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) -# define HAVE_ALIAS -# endif - # if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) # define PURE __attribute__((pure)) # else @@ -365,10 +361,7 @@ ALIAS( Map2f, Map2d ) ALIAS( ColorTableParameteriv, ColorTableParameterfv ) ALIAS( ConvolutionParameteriv, ConvolutionParameterfv ) ALIAS( PointParameterivNV, PointParameterfvEXT ) -ALIAS( PointParameterfvARB, PointParameterfvEXT ) -ALIAS( PointParameteriv, PointParameterfvEXT ) -# undef HAVE_ALIAS # undef PURE # undef FASTCALL # undef INTERNAL |