diff --git a/Graphics/Geom.cpp b/Graphics/Geom.cpp
index 7952f33ab38742e3d63d390baf3e4c04e38514e9..c77aef75aecfaecee1bafad47e86c118dd2c49ba 100644
--- a/Graphics/Geom.cpp
+++ b/Graphics/Geom.cpp
@@ -1,4 +1,4 @@
-// $Id: Geom.cpp,v 1.16 2001-02-23 00:07:51 remacle Exp $
+// $Id: Geom.cpp,v 1.17 2001-02-23 08:46:12 geuzaine Exp $
 
 #include "Gmsh.h"
 #include "GmshUI.h"
@@ -833,7 +833,6 @@ void EndHighlight(int permanent){
 void HighlightEntity(Vertex *v,Curve *c, Surface *s, int permanent){
 
   Curve *cc;
-  Vertex *v1,*v2;
   char Message[256],temp[256];
   int i,nbg;
 
@@ -845,9 +844,6 @@ void HighlightEntity(Vertex *v,Curve *c, Surface *s, int permanent){
   else if(c){
     if(permanent) c->ipar[3] = 1;
     if(CTX.geom.highlight) Draw_Curve(&c,NULL);
-
-    //    List_Read(c->Control_Points,0,&v1);
-    //    List_Read(c->Control_Points,List_Nbr(c->Control_Points)-1,&v2);
     Msg(STATUS1N,"Curve %d  {%d->%d}",c->Num,c->beg->Num,c->end->Num);
   }
   else if(s){
diff --git a/Makefile b/Makefile
index 610dcb351c2bf18f09e89b63ea0bb5bb5c9ec3b5..5272bd2ee409604a876052303dad26bb05259cb7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.68 2001-02-23 00:07:51 remacle Exp $
+# $Id: Makefile,v 1.69 2001-02-23 08:46:12 geuzaine Exp $
 # ----------------------------------------------------------------------
 #  Makefile for Gmsh  
 # ----------------------------------------------------------------------
@@ -395,7 +395,7 @@ fltk_compile_linux_scorec :
 fltk_compile_sgi:
 	@for i in $(GMSH_FLTK_DIR); do (cd $$i && $(MAKE) \
            "CC=CC" \
-           "C_FLAGS=-O2 -n32 -OPT:Olimit=0" \
+           "C_FLAGS=-O2 -n32 -OPT:Olimit=0 -LANG:std" \
            "RANLIB=true"\
            "AR=CC -n32 -ar -o"\
            "OS_FLAGS=" \
diff --git a/Mesh/SMS.cpp b/Mesh/SMS.cpp
index 7d03988b1c8ff71510fca0b6b5e5bdf4c4ceb2db..fe867f86c9217801b9aee5aba68d0bb81cac5515 100644
--- a/Mesh/SMS.cpp
+++ b/Mesh/SMS.cpp
@@ -1,4 +1,4 @@
-#include <iostream>
+#include <iostream.h>
 #include <assert.h>
 #include "Gmsh.h"
 #include "Geo.h"
@@ -38,9 +38,8 @@ void Read_VTK_File (char *file, Mesh *m)
   FILE *in = fopen (file,"r");
   if(!in)return;
   char line[256],dumline1[256],dumline2[256];
-  int i,j;
-  int NbRegions,NbFaces,NbEdges,NbVertices,NbPoints,
-    Vertex1,Vertex2,Vertex3,Vertex4,NbVerticesOnFace;
+  int i;
+  int NbFaces,NbVertices,Vertex1,Vertex2,Vertex3,NbVerticesOnFace;
   double x,y,z;
   Vertex *v1,*v2,*v3,*v4;