summaryrefslogtreecommitdiff
path: root/graphics/gltt
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2003-06-10 16:45:05 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2003-06-10 16:45:05 +0000
commit845e4667161876551f7b427ace0ec45706d902ef (patch)
treed440110778dc5dc21cb375ca5b66bf46154d1bc1 /graphics/gltt
parent. Update to 0.2. (diff)
Fix build with gcc 3.x: friend class declarations are more strict
friend A; -> friend class A; Prompted by: bento, kris
Notes
Notes: svn path=/head/; revision=82703
Diffstat (limited to 'graphics/gltt')
-rw-r--r--graphics/gltt/files/patch-FTGlyphVectorizer.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/gltt/files/patch-FTGlyphVectorizer.h b/graphics/gltt/files/patch-FTGlyphVectorizer.h
new file mode 100644
index 000000000000..a813c5254e1f
--- /dev/null
+++ b/graphics/gltt/files/patch-FTGlyphVectorizer.h
@@ -0,0 +1,11 @@
+--- FTGlyphVectorizer.h.orig Tue Jun 10 13:41:02 2003
++++ FTGlyphVectorizer.h Tue Jun 10 13:41:07 2003
+@@ -76,7 +76,7 @@
+ private:
+ void add_point( double x, double y );
+
+- friend FTGlyphVectorizer;
++ friend class FTGlyphVectorizer;
+ };
+
+ protected: