diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2003-07-18 05:27:31 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2003-07-18 05:27:31 +0000 |
commit | bcb40644d69faa09f6c56ae6a443792c9e41ee99 (patch) | |
tree | 869027513f2914bfaab9d74585cbedad9777d3c3 /textproc/opensp | |
parent | 48e012743e3b227655f15e8d3be5591222fe4df6 (diff) | |
download | FreeBSD-ports-bcb40644d69faa09f6c56ae6a443792c9e41ee99.zip FreeBSD-ports-bcb40644d69faa09f6c56ae6a443792c9e41ee99.tar.gz |
Add explicit cast to C++ include files to unbreak openjade on
gcc 3.3.
Diffstat (limited to 'textproc/opensp')
-rw-r--r-- | textproc/opensp/Makefile | 1 | ||||
-rw-r--r-- | textproc/opensp/files/patch-Ptr.cxx | 11 | ||||
-rw-r--r-- | textproc/opensp/files/patch-Ptr.h | 10 |
3 files changed, 22 insertions, 0 deletions
diff --git a/textproc/opensp/Makefile b/textproc/opensp/Makefile index d3fd213..67b573a 100644 --- a/textproc/opensp/Makefile +++ b/textproc/opensp/Makefile @@ -7,6 +7,7 @@ PORTNAME= OpenSP PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= openjade diff --git a/textproc/opensp/files/patch-Ptr.cxx b/textproc/opensp/files/patch-Ptr.cxx new file mode 100644 index 0000000..400534a --- /dev/null +++ b/textproc/opensp/files/patch-Ptr.cxx @@ -0,0 +1,11 @@ +--- include/Ptr.cxx.orig Fri Jul 18 14:11:13 2003 ++++ include/Ptr.cxx Fri Jul 18 14:11:32 2003 +@@ -19,7 +19,7 @@ + Ptr<T>::~Ptr() + { + if (ptr_) { +- if (ptr_->unref()) ++ if (((Resource*)ptr_)->unref()) + delete ptr_; + ptr_ = 0; + } diff --git a/textproc/opensp/files/patch-Ptr.h b/textproc/opensp/files/patch-Ptr.h new file mode 100644 index 0000000..9bef362 --- /dev/null +++ b/textproc/opensp/files/patch-Ptr.h @@ -0,0 +1,10 @@ +--- include/Ptr.h.orig Fri Jul 18 14:11:08 2003 ++++ include/Ptr.h Fri Jul 18 14:11:22 2003 +@@ -5,6 +5,7 @@ + #define Ptr_INCLUDED 1 + + #include "Boolean.h" ++#include "Resource.h" + + // T must have Resource as a public base class + // T may be an incomplete type |