>From f809e7e73e2c9f54c5bbc193319d35699608a249 Mon Sep 17 00:00:00 2001
From: Matthieu Herrb <matthieu.he...@laas.fr>
Date: Sun, 12 Oct 2008 16:38:27 +0200
Subject: [PATCH] Build fixes for gcc 2.95

---
 src/glx/x11/drisw_glx.c  |    6 +++---
 src/glx/x11/glxcurrent.c |    4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/glx/x11/drisw_glx.c b/src/glx/x11/drisw_glx.c
index bcf7e14..05ab914 100644
--- a/src/glx/x11/drisw_glx.c
+++ b/src/glx/x11/drisw_glx.c
@@ -114,7 +114,7 @@ swrastGetDrawableInfo(__DRIdrawable *draw,
                      void *loaderPrivate)
 {
     __GLXDRIdrawablePrivate *pdp = loaderPrivate;
-    __GLXDRIdrawable *pdraw = &(pdp->base);;
+    __GLXDRIdrawable *pdraw = &(pdp->base);
     Display *dpy = pdraw->psc->dpy;
     Drawable drawable;
 
@@ -143,7 +143,7 @@ swrastPutImage(__DRIdrawable *draw, int op,
               void *loaderPrivate)
 {
     __GLXDRIdrawablePrivate *pdp = loaderPrivate;
-    __GLXDRIdrawable *pdraw = &(pdp->base);;
+    __GLXDRIdrawable *pdraw = &(pdp->base);
     Display *dpy = pdraw->psc->dpy;
     Drawable drawable;
     XImage *ximage;
@@ -179,7 +179,7 @@ swrastGetImage(__DRIdrawable *draw,
               void *loaderPrivate)
 {
     __GLXDRIdrawablePrivate *pdp = loaderPrivate;
-    __GLXDRIdrawable *pdraw = &(pdp->base);;
+    __GLXDRIdrawable *pdraw = &(pdp->base);
     Display *dpy = pdraw->psc->dpy;
     Drawable drawable;
     XImage *ximage;
diff --git a/src/glx/x11/glxcurrent.c b/src/glx/x11/glxcurrent.c
index d40f876..efacefc 100644
--- a/src/glx/x11/glxcurrent.c
+++ b/src/glx/x11/glxcurrent.c
@@ -354,7 +354,7 @@ static Bool MakeContextCurrent(Display *dpy, GLXDrawable 
draw,
     const CARD8 oldOpcode = ((gc == oldGC) || (oldGC == &dummyContext))
       ? opcode : __glXSetupForCommand(oldGC->currentDpy);
     Bool bindReturnValue;
-
+    __GLXattribute *state;
 
     if (!opcode || !oldOpcode) {
        return GL_FALSE;
@@ -475,7 +475,7 @@ static Bool MakeContextCurrent(Display *dpy, GLXDrawable 
draw,
                } while (0);
 #endif
 
-               __GLXattribute *state = 
+               state = 
                  (__GLXattribute *)(gc->client_state_private);
 
                gc->currentContextTag = reply.contextTag;
-- 
1.6.0.5


------------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
_______________________________________________
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev

Reply via email to