View | Details | Raw Unified | Return to bug 243310 | Differences between
and this patch

Collapse All | Expand All

(-)graphics/silgraphite/Makefile (-3 lines)
Lines 10-18 Link Here
10
MAINTAINER=	sunpoet@FreeBSD.org
10
MAINTAINER=	sunpoet@FreeBSD.org
11
COMMENT=	Font engine for complex non-Roman writing systems
11
COMMENT=	Font engine for complex non-Roman writing systems
12
12
13
# /usr/include/c++/v1/type_traits:3699:9: error: no matching constructor for initialization of 'gr3ooo::Segment'
14
BROKEN_FreeBSD_13=	no matching constructor for initialization of 'gr3ooo::Segment'
15
16
LICENSE=	CPL05 LGPL21+
13
LICENSE=	CPL05 LGPL21+
17
LICENSE_COMB=	dual
14
LICENSE_COMB=	dual
18
LICENSE_FILE_CPL05=	${WRKSRC}/license/License_CPLv05.txt
15
LICENSE_FILE_CPL05=	${WRKSRC}/license/License_CPLv05.txt
(-)graphics/silgraphite/files/patch-engine-include-graphite-Segment.h (+11 lines)
Line 0 Link Here
1
--- engine/include/graphite/Segment.h.orig	2009-01-29 08:33:19 UTC
2
+++ engine/include/graphite/Segment.h
3
@@ -64,7 +64,7 @@ class Segment (public)
4
 	virtual ~Segment();
5
 
6
 	// Basic copy constructor:
7
-	Segment(Segment & seg);
8
+	Segment(const Segment & seg);
9
 
10
 	// For making modified copies of segments:
11
 	static Segment * LineContextSegment(Segment & seg, bool fStartLine, bool fEndLine);
(-)graphics/silgraphite/files/patch-engine-src-segment-Segment.cpp (+11 lines)
Line 0 Link Here
1
--- engine/src/segment/Segment.cpp.orig	2008-08-21 14:24:32 UTC
2
+++ engine/src/segment/Segment.cpp
3
@@ -433,7 +433,7 @@ void Segment::InitWhiteSpaceSegment(int nNewDepth)
4
 /*----------------------------------------------------------------------------------------------
5
 	Basic copy method.
6
 ----------------------------------------------------------------------------------------------*/
7
-Segment::Segment(Segment & seg)
8
+Segment::Segment(const Segment & seg)
9
 {
10
 	int islout;
11
 

Return to bug 243310