mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
Committing in .
VMS : C++ & Xlib.h problems. Modified Files: Mesa/include/GL/glx.h ----------------------------------------------------------------------
This commit is contained in:
parent
0223baaf57
commit
3f600e47cf
1 changed files with 13 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: glx.h,v 1.14 2000/03/03 15:35:51 brianp Exp $ */
|
/* $Id: glx.h,v 1.15 2000/03/06 12:59:24 joukj Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Mesa 3-D graphics library
|
* Mesa 3-D graphics library
|
||||||
|
|
@ -30,8 +30,20 @@
|
||||||
#define GLX_H
|
#define GLX_H
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __VMS
|
||||||
|
# ifdef __cplusplus
|
||||||
|
/* VMS Xlib.h gives problems with C++.
|
||||||
|
* this avoids a bunch of trivial warnings */
|
||||||
|
#pragma message disable nosimpint
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
|
#ifdef __VMS
|
||||||
|
# ifdef __cplusplus
|
||||||
|
#pragma message enable nosimpint
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
#include "GL/gl.h"
|
#include "GL/gl.h"
|
||||||
#ifdef MESA
|
#ifdef MESA
|
||||||
#include "GL/xmesa.h"
|
#include "GL/xmesa.h"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue