diff options
author | Jouk Jansen <joukj@hrem.stm.tudelft.nl> | 2005-07-22 09:30:54 +0000 |
---|---|---|
committer | Jouk Jansen <joukj@hrem.stm.tudelft.nl> | 2005-07-22 09:30:54 +0000 |
commit | 70cf1f0cf83fc3f2df241cc638e23f8df3b89923 (patch) | |
tree | baceae237352eab947dbce73c74e056ba34a8845 | |
parent | 60a6a0eb51a6cafc9f65bff8028510e0788cf311 (diff) |
----------------------------------------------------------------------
Committing in .
_mesa_sprintf crashes on OpenVMS -> replaced it by the OS-supplied sprintf
Modified Files:
Mesa/src/mesa/drivers/x11/fakeglx.c
----------------------------------------------------------------------
-rw-r--r-- | src/mesa/drivers/x11/fakeglx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c index 7569fb05c1..ee1cdfcc6c 100644 --- a/src/mesa/drivers/x11/fakeglx.c +++ b/src/mesa/drivers/x11/fakeglx.c @@ -52,6 +52,9 @@ #include "xfonts.h" #include "xmesaP.h" +#ifdef __VMS +#define _mesa_sprintf sprintf +#endif /* This indicates the client-side GLX API and GLX encoder version. */ #define CLIENT_MAJOR_VERSION 1 |