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

(-)isearch.new/Makefile (-7 / +1 lines)
Lines 16-31 Link Here
16
GNU_CONFIGURE=	yes
16
GNU_CONFIGURE=	yes
17
MAKE_ARGS=	INSTALL=${PREFIX}/bin
17
MAKE_ARGS=	INSTALL=${PREFIX}/bin
18
18
19
.include <bsd.port.pre.mk>
20
21
.if ${OSVERSION} >= 500035
22
#BROKEN=		"Does not compile on 5.0"
23
.endif
24
25
post-install:
19
post-install:
26
.if !defined(NOPORTDOCS)
20
.if !defined(NOPORTDOCS)
27
	${MKDIR} ${DOCSDIR}
21
	${MKDIR} ${DOCSDIR}
28
	${INSTALL_MAN} ${WRKSRC}/html/*.html ${DOCSDIR}
22
	${INSTALL_MAN} ${WRKSRC}/html/*.html ${DOCSDIR}
29
.endif
23
.endif
30
24
31
.include <bsd.port.post.mk>
25
.include <bsd.port.mk>
(-)isearch.new/files/patch-src::registry.hxx (+11 lines)
Line 0 Link Here
1
--- src/registry.hxx.orig	Sun Dec 15 09:13:27 2002
2
+++ src/registry.hxx	Sun Dec 15 09:12:51 2002
3
@@ -89,7 +89,7 @@
4
   void LoadFromFile(const STRING& FileName);
5
   void AddFromFile(const STRING& FileName);
6
 //  void Print(ostream& os, const INT Level) const;
7
-	void fprint(FILE* fp, const INT level = 0) const;
8
+	void fprint(FILE* fp, const INT level) const;
9
   void ProfilePrint(ostream& os, const INT Level) const;
10
   void GetData(STRLIST *StrlistBuffer);
11
   void DeleteChildren();
(-)isearch.new/files/patch-src::string.cxx (+11 lines)
Line 0 Link Here
1
--- src/string.cxx.orig	Sun Dec 15 09:27:00 2002
2
+++ src/string.cxx	Sun Dec 15 09:27:20 2002
3
@@ -574,7 +574,7 @@
4
 
5
 // can this be const STRING& ?
6
 ostream& operator<<(ostream& os, const STRING& str) {
7
-  os.write(str.Buffer, str.Length);
8
+  os.write((char*)str.Buffer, str.Length);
9
   return os;
10
 }
11

Return to bug 46264