diff options
author | edwin <edwin@FreeBSD.org> | 2002-12-15 03:08:32 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-12-15 03:08:32 +0000 |
commit | e451ebb7b4449128a2249c08f66154222e5574d0 (patch) | |
tree | 402a43d589fd1182d08dce5e82c3fda76e89dbee /textproc | |
parent | bbd191503eb724b186738d4fddf699d69fca106b (diff) | |
download | FreeBSD-ports-e451ebb7b4449128a2249c08f66154222e5574d0.zip FreeBSD-ports-e451ebb7b4449128a2249c08f66154222e5574d0.tar.gz |
Make textproc/isearch compile on -current again.
PR: ports/46264
Submitted by: Kuang-che Wu <kcwu@kcwu.dyndns.org>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/isearch/Makefile | 8 | ||||
-rw-r--r-- | textproc/isearch/files/patch-src::registry.hxx | 11 | ||||
-rw-r--r-- | textproc/isearch/files/patch-src::string.cxx | 11 |
3 files changed, 23 insertions, 7 deletions
diff --git a/textproc/isearch/Makefile b/textproc/isearch/Makefile index ab5a316..9797cae 100644 --- a/textproc/isearch/Makefile +++ b/textproc/isearch/Makefile @@ -16,16 +16,10 @@ MAINTAINER= pmarquis@pobox.com GNU_CONFIGURE= yes MAKE_ARGS= INSTALL=${PREFIX}/bin -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500035 -BROKEN= "Does not compile on 5.0" -.endif - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/html/*.html ${DOCSDIR} .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/textproc/isearch/files/patch-src::registry.hxx b/textproc/isearch/files/patch-src::registry.hxx new file mode 100644 index 0000000..82245d3 --- /dev/null +++ b/textproc/isearch/files/patch-src::registry.hxx @@ -0,0 +1,11 @@ +--- src/registry.hxx.orig Sun Dec 15 09:13:27 2002 ++++ src/registry.hxx Sun Dec 15 09:12:51 2002 +@@ -89,7 +89,7 @@ + void LoadFromFile(const STRING& FileName); + void AddFromFile(const STRING& FileName); + // void Print(ostream& os, const INT Level) const; +- void fprint(FILE* fp, const INT level = 0) const; ++ void fprint(FILE* fp, const INT level) const; + void ProfilePrint(ostream& os, const INT Level) const; + void GetData(STRLIST *StrlistBuffer); + void DeleteChildren(); diff --git a/textproc/isearch/files/patch-src::string.cxx b/textproc/isearch/files/patch-src::string.cxx new file mode 100644 index 0000000..784a3ac --- /dev/null +++ b/textproc/isearch/files/patch-src::string.cxx @@ -0,0 +1,11 @@ +--- src/string.cxx.orig Sun Dec 15 09:27:00 2002 ++++ src/string.cxx Sun Dec 15 09:27:20 2002 +@@ -574,7 +574,7 @@ + + // can this be const STRING& ? + ostream& operator<<(ostream& os, const STRING& str) { +- os.write(str.Buffer, str.Length); ++ os.write((char*)str.Buffer, str.Length); + return os; + } + |