summaryrefslogtreecommitdiff
path: root/graphics/tcm
diff options
context:
space:
mode:
authorAlexander Kabaev <kan@FreeBSD.org>2002-10-21 21:26:57 +0000
committerAlexander Kabaev <kan@FreeBSD.org>2002-10-21 21:26:57 +0000
commit865128706baabd79a143f3b250a084b8c1acf9a4 (patch)
treee9c050ddc357e303dbcffd2ccb6f18673bf49763 /graphics/tcm
parentFix *alloc definition clash. (diff)
Fix build on -CURRENT.
Approved by: mbr
Notes
Notes: svn path=/head/; revision=68541
Diffstat (limited to 'graphics/tcm')
-rw-r--r--graphics/tcm/files/patch-Config.tmpl3
-rw-r--r--graphics/tcm/files/patch-src:gl:inputfile.c65
-rw-r--r--graphics/tcm/files/patch-src:gl:point.c13
-rw-r--r--graphics/tcm/files/patch-src:gl:point.h15
-rw-r--r--graphics/tcm/files/patch-src:gl:rectangle.c17
-rw-r--r--graphics/tcm/files/patch-src:gl:rectangle.h15
6 files changed, 127 insertions, 1 deletions
diff --git a/graphics/tcm/files/patch-Config.tmpl b/graphics/tcm/files/patch-Config.tmpl
index 45a705506fd4..8b0b42e70be1 100644
--- a/graphics/tcm/files/patch-Config.tmpl
+++ b/graphics/tcm/files/patch-Config.tmpl
@@ -70,5 +70,6 @@
+MKDEPEND=$(TCM_HOME)/bin/makedepend.sh
+MKDEPENDFLAGS := $(CPPFLAGS) -D__i386__ -I/usr/include/g++-3 \
+ -I/usr/include/g++-2 \
-+ -I/usr/include/g++
++ -I/usr/include/g++ \
++ -I/usr/include/g++/backward
+
diff --git a/graphics/tcm/files/patch-src:gl:inputfile.c b/graphics/tcm/files/patch-src:gl:inputfile.c
new file mode 100644
index 000000000000..10f066c8a9e1
--- /dev/null
+++ b/graphics/tcm/files/patch-src:gl:inputfile.c
@@ -0,0 +1,65 @@
+--- src/gl/inputfile.c.orig Sat Oct 19 21:37:26 2002
++++ src/gl/inputfile.c Sat Oct 19 21:37:53 2002
+@@ -51,7 +51,7 @@
+ }
+
+ void InputFile::SkipLine() {
+- unsigned char c;
++ char c;
+ while (!ifile->eof()) {
+ ifile->get(c);
+ if (c == '\n') {
+@@ -62,7 +62,7 @@
+ }
+
+ int InputFile::ReadChar() {
+- unsigned char c;
++ char c;
+ while (!ifile->eof()) {
+ ifile->get(c);
+ if (c == '\n')
+@@ -78,7 +78,7 @@
+ }
+
+ bool InputFile::LookupChar(const char c) {
+- unsigned char c2;
++ char c2;
+ while (!ifile->eof()) {
+ ifile->get(c2);
+ if (c2 == '\n')
+@@ -100,7 +100,7 @@
+
+ bool InputFile::LookupWord(const string *word) {
+ string word2;
+- unsigned char c;
++ char c;
+ // skip white space and comment.
+ do {
+ if (ifile->eof())
+@@ -138,7 +138,7 @@
+
+ bool InputFile::LookupString(const string *s) {
+ string string2;
+- unsigned char c;
++ char c;
+ bool escaped = False;
+ if (!LookupChar('"'))
+ return False;
+@@ -179,7 +179,7 @@
+ }
+
+ bool InputFile::ReadWord(string *word) {
+- unsigned char c;
++ char c;
+ *word = "";
+ // skip white space and comment.
+ do {
+@@ -211,7 +211,7 @@
+ }
+
+ bool InputFile::ReadString(string *s) {
+- unsigned char c;
++ char c;
+ *s = "";
+ bool escaped = False;
+ if (!LookupChar('"'))
diff --git a/graphics/tcm/files/patch-src:gl:point.c b/graphics/tcm/files/patch-src:gl:point.c
new file mode 100644
index 000000000000..8785d46663c8
--- /dev/null
+++ b/graphics/tcm/files/patch-src:gl:point.c
@@ -0,0 +1,13 @@
+--- src/gl/point.c.orig Sat Oct 19 21:32:33 2002
++++ src/gl/point.c Sat Oct 19 21:33:30 2002
+@@ -41,8 +41,8 @@
+ bool operator!=(const Point &p1, const Point &p2) {
+ return (p1.x != p2.x || p1.y != p2.y); }
+
+-ostream &operator<<(ostream &o, const Point p)
++std::ostream &operator<<(std::ostream &o, const Point p)
+ {o << p.x << " "; o << p.y; return o;}
+
+-istream &operator>>(istream &i, Point &p)
++std::istream &operator>>(std::istream &i, Point &p)
+ {i >> p.x; i >> p.y; return i;}
diff --git a/graphics/tcm/files/patch-src:gl:point.h b/graphics/tcm/files/patch-src:gl:point.h
new file mode 100644
index 000000000000..3a1b182e59f7
--- /dev/null
+++ b/graphics/tcm/files/patch-src:gl:point.h
@@ -0,0 +1,15 @@
+--- src/gl/point.h.orig Sat Oct 19 21:32:28 2002
++++ src/gl/point.h Sat Oct 19 21:33:12 2002
+@@ -74,10 +74,10 @@
+ void operator*(double c) {x = int(x*c); y = int(y*c);}
+
+ /// Write string representation to ostream.
+- friend ostream &operator<<(ostream &o, const Point p);
++ friend std::ostream &operator<<(std::ostream &o, const Point p);
+
+ /// Read string representation from istream.
+- friend istream &operator>>(istream &i, Point &p);
++ friend std::istream &operator>>(std::istream &i, Point &p);
+
+ /// the x-coordinate.
+ int x;
diff --git a/graphics/tcm/files/patch-src:gl:rectangle.c b/graphics/tcm/files/patch-src:gl:rectangle.c
new file mode 100644
index 000000000000..1542b0ce679c
--- /dev/null
+++ b/graphics/tcm/files/patch-src:gl:rectangle.c
@@ -0,0 +1,17 @@
+--- src/gl/rectangle.c.orig Sat Oct 19 21:33:51 2002
++++ src/gl/rectangle.c Sat Oct 19 21:34:21 2002
+@@ -26,12 +26,12 @@
+ bool Rectangle::Inside(int a, int b) const
+ {return (a>x && b>y && a<(x+width) && b<(y+height));}
+
+-ostream &operator<<(ostream &s, const Rectangle r)
++std::ostream &operator<<(std::ostream &s, const Rectangle r)
+ {s << r.x << " "; s << r.y << " ";
+ s << r.width << " "; s << r.height << " ";
+ return s;}
+
+-istream &operator>>(istream &s, Rectangle &r)
++std::istream &operator>>(std::istream &s, Rectangle &r)
+ {s >> r.x; s >> r.y;
+ s >> r.width; s >> r.height;
+ return s;}
diff --git a/graphics/tcm/files/patch-src:gl:rectangle.h b/graphics/tcm/files/patch-src:gl:rectangle.h
new file mode 100644
index 000000000000..d981757c2f30
--- /dev/null
+++ b/graphics/tcm/files/patch-src:gl:rectangle.h
@@ -0,0 +1,15 @@
+--- src/gl/rectangle.h.orig Sat Oct 19 21:33:45 2002
++++ src/gl/rectangle.h Sat Oct 19 21:34:44 2002
+@@ -80,10 +80,10 @@
+ friend bool operator!=(const Rectangle &x, const Rectangle &y);
+
+ /// Write string representation to ostream.
+- friend ostream &operator<<(ostream &s, const Rectangle r);
++ friend std::ostream &operator<<(std::ostream &s, const Rectangle r);
+
+ /// Read string representation from istream.
+- friend istream &operator>>(istream &s, Rectangle &r);
++ friend std::istream &operator>>(std::istream &s, Rectangle &r);
+
+ /// the left x-coordinate of the rectangle
+ int x;