diff options
author | lioux <lioux@FreeBSD.org> | 2003-06-11 00:45:05 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2003-06-11 00:45:05 +0800 |
commit | cb0658b7606fabeffe9616054972554473e0b799 (patch) | |
tree | da81dfc05e143aca38905e8f0593d3980bb0c058 /graphics/gltt | |
parent | cedd7e2cd67aaa0acaf75a26d2a9a69c2b63f350 (diff) | |
download | freebsd-ports-gnome-cb0658b7606fabeffe9616054972554473e0b799.tar.gz freebsd-ports-gnome-cb0658b7606fabeffe9616054972554473e0b799.tar.zst freebsd-ports-gnome-cb0658b7606fabeffe9616054972554473e0b799.zip |
Fix build with gcc 3.x: friend class declarations are more strict
friend A; -> friend class A;
Prompted by: bento,
kris
Diffstat (limited to 'graphics/gltt')
-rw-r--r-- | graphics/gltt/files/patch-FTGlyphVectorizer.h | 11 |
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: |