freebsd-ports/devel/libbonobomm/files/patch-tools::m4::class_bonoboobject.m4
Alexander Nedotsukov 7602e7208d Fix build with gcc 3.4 (friend of typedef is prohibited by C++ standard).
Reported by:	pointyhat via kris
2004-08-17 09:14:31 +00:00

11 lines
315 B
Text

--- tools/m4/class_bonoboobject.m4.orig Tue Aug 17 17:57:29 2004
+++ tools/m4/class_bonoboobject.m4 Tue Aug 17 17:58:19 2004
@@ -200,7 +200,7 @@
')dnl
private:
- friend class CppClassType;
+ friend class __CPPNAME__`'_Class;
static CppClassType `'__BASE__`'_class_;
__CPPNAME__`'(const __CPPNAME__&);