Make it somewhat IRIX/MipsPro compliant again. We still need to resolve the IOSTREAMH declaration issue
This commit is contained in:
parent
631c9ab968
commit
4516c4a9d6
3 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,6 @@ void TrackedTriangle::update(Subdivision& s)
|
|||
gs.scanTriangle(*this);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ terra_SOURCES = \
|
|||
Vec3.h cmdline.cc glHacks.cc glHacks.h greedy.cc gui.cc gui.h \
|
||||
output.cc terra.cc terra.h version.h
|
||||
|
||||
terra_LDADD = -lGL -lGLU -lglut
|
||||
terra_LDADD = $(opengl_LIBS)
|
||||
|
||||
xterra_SOURCES = \
|
||||
Array.h Geom.h GreedyInsert.cc GreedyInsert.h Heap.cc Heap.h \
|
||||
|
@ -18,4 +18,4 @@ xterra_SOURCES = \
|
|||
Vec3.h cmdline.cc glHacks.cc glHacks.h greedy.cc gui.cc gui.h \
|
||||
output.cc terra.h version.h xterra.cc
|
||||
|
||||
xterra_LDADD = -lGL -lGLU -lglut
|
||||
xterra_LDADD = $(opengl_LIBS)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "terra.h"
|
||||
#include <fstream>
|
||||
#include <streambuf>
|
||||
|
||||
using std::cerr;
|
||||
using std::cout;
|
||||
|
|
Loading…
Reference in a new issue