View | Details | Raw Unified | Return to bug 118010
Collapse All | Expand All

(-)Makefile (-7 / +1 lines)
Lines 30-39 Link Here
30
		LDFLAGS="-L${X11BASE}/lib"
30
		LDFLAGS="-L${X11BASE}/lib"
31
USE_LDCONFIG=	yes
31
USE_LDCONFIG=	yes
32
32
33
.include <bsd.port.pre.mk>
33
.include <bsd.port.mk>
34
35
.if ${OSVERSION} >= 700042
36
BROKEN=		Broken with gcc 4.2
37
.endif
38
39
.include <bsd.port.post.mk>
(-)files/patch-engine_encoder.h (+11 lines)
Added Link Here
1
--- engine/encoder.h.orig	2007-11-12 17:25:45.000000000 +0100
2
+++ engine/encoder.h	2007-11-12 17:25:59.000000000 +0100
3
@@ -185,7 +185,7 @@
4
 														GLASSERT( numRGBA >= numSegment );
5
 //														GLASSERT( numSegment >= numLine );
6
 													 }
7
-	void KrEncoder::Save();
8
+	void Save();
9
 
10
 	KrResourceVault* GetVault()						{ return &vault; }
11
 
(-)files/patch-engine_imagetree.h (+11 lines)
Added Link Here
1
--- engine/imagetree.h.orig	2007-11-12 17:22:54.000000000 +0100
2
+++ engine/imagetree.h	2007-11-12 17:23:06.000000000 +0100
3
@@ -217,7 +217,7 @@
4
 	void Clear( KrImNode* root );	// delete the entire tree
5
 
6
 	// Recursive hit test walk.
7
-	bool KrImageTree::HitTestRec( KrImNode* node, int x, int y, int flags, GlDynArray<KrImage*>* outputArray, int windowIndex );
8
+	bool HitTestRec( KrImNode* node, int x, int y, int flags, GlDynArray<KrImage*>* outputArray, int windowIndex );
9
 
10
 	KrImNode*  root;			// The root to position the window
11
 	KrImNode*  offsetRoot;		// The root as returned to the client
(-)files/patch-guiExtended_progress.h (+20 lines)
Added Link Here
1
--- guiExtended/progress.h.orig	2007-11-12 17:24:08.000000000 +0100
2
+++ guiExtended/progress.h	2007-11-12 17:24:34.000000000 +0100
3
@@ -43,7 +43,7 @@
4
 	/** if width of the resource is greater then its height then makes
5
 		a horizontal, else makes a vertical progress bar
6
 	*/
7
-	KrProgress::KrProgress (int width,
8
+	KrProgress (int width,
9
 							int height,
10
 							KrRGBA FillColor,
11
 							KrRGBA ChangeColor,
12
@@ -53,7 +53,7 @@
13
 	/** if width of the resource is greater then its height then makes
14
 		a horizontal, else makes a vertical progress bar
15
 	*/
16
-	KrProgress::KrProgress (int width,
17
+	KrProgress (int width,
18
 							int height,
19
 							const KrScheme& scheme);
20
 

Return to bug 118010