diff options
author | Jouk Jansen <[email protected]> | 2001-03-22 11:38:36 +0000 |
---|---|---|
committer | Jouk Jansen <[email protected]> | 2001-03-22 11:38:36 +0000 |
commit | df1e73af7a46911935a9746e29ad7c5f1644e789 (patch) | |
tree | 370b1b6c8dd5bfb001846388622a354aefdec91f /src/glu/sgi/libnurbs/internals | |
parent | ea1bfcc80a524ee2466874081194c1697e1fc936 (diff) |
Modified Files:
Mesa/descrip.mms Mesa/mms-config Mesa/demos/descrip.mms
Mesa/si-glu/include/gluos.h
Mesa/si-glu/libnurbs/internals/bufpool.h
Mesa/si-glu/libnurbs/internals/mysetjmp.h
Mesa/src-glut/descrip.mms
Added Files:
Mesa/si-glu/descrip.mms Mesa/si-glu/mesaglu.opt
changes needed to compile SI-GLU on VMS.
----------------------------------------------------------------------
Diffstat (limited to 'src/glu/sgi/libnurbs/internals')
-rw-r--r-- | src/glu/sgi/libnurbs/internals/bufpool.h | 5 | ||||
-rw-r--r-- | src/glu/sgi/libnurbs/internals/mysetjmp.h | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/glu/sgi/libnurbs/internals/bufpool.h b/src/glu/sgi/libnurbs/internals/bufpool.h index f7f46655cf1..90c775e4b75 100644 --- a/src/glu/sgi/libnurbs/internals/bufpool.h +++ b/src/glu/sgi/libnurbs/internals/bufpool.h @@ -35,13 +35,14 @@ /* * bufpool.h * - * $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $ - * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/bufpool.h,v 1.1 2001/03/17 00:25:40 brianp Exp $ + * $Date: 2001/03/22 11:38:36 $ $Revision: 1.2 $ + * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/bufpool.h,v 1.2 2001/03/22 11:38:36 joukj Exp $ */ #ifndef __glubufpool_h_ #define __glubufpool_h_ +#include "gluos.h" #include "myassert.h" #include "mystdlib.h" diff --git a/src/glu/sgi/libnurbs/internals/mysetjmp.h b/src/glu/sgi/libnurbs/internals/mysetjmp.h index f62377e0be6..16f9f74cf64 100644 --- a/src/glu/sgi/libnurbs/internals/mysetjmp.h +++ b/src/glu/sgi/libnurbs/internals/mysetjmp.h @@ -35,8 +35,8 @@ /* * mysetjmp.h * - * $Date: 2001/03/17 00:25:41 $ $Revision: 1.1 $ - * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/mysetjmp.h,v 1.1 2001/03/17 00:25:41 brianp Exp $ + * $Date: 2001/03/22 11:38:36 $ $Revision: 1.2 $ + * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/mysetjmp.h,v 1.2 2001/03/22 11:38:36 joukj Exp $ */ #ifndef __glumysetjmp_h_ @@ -84,7 +84,7 @@ mylongjmp( JumpBuffer *j, int code ) inline int mysetjmp( JumpBuffer *j ) { - return ::setjmp( j->buf ); + return setjmp( j->buf ); } #endif |