diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-10-06 08:16:08 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2004-10-06 08:16:08 +0000 |
commit | ea52d5a8f9b3218b0a8799112b2a825133be6907 (patch) | |
tree | 24330d467ec9c45f542f5fa237396b96d0346a72 /audio/xmms-fc | |
parent | e50dad9e73946ba5261f20b5417cfa432c322db6 (diff) | |
download | ports-ea52d5a8f9b3218b0a8799112b2a825133be6907.tar.gz ports-ea52d5a8f9b3218b0a8799112b2a825133be6907.zip |
Notes
Diffstat (limited to 'audio/xmms-fc')
-rw-r--r-- | audio/xmms-fc/Makefile | 8 | ||||
-rw-r--r-- | audio/xmms-fc/files/patch-SmartPtr.h | 26 |
2 files changed, 27 insertions, 7 deletions
diff --git a/audio/xmms-fc/Makefile b/audio/xmms-fc/Makefile index 26e91535e2b1..ce8f4a771c10 100644 --- a/audio/xmms-fc/Makefile +++ b/audio/xmms-fc/Makefile @@ -23,10 +23,4 @@ USE_X_PREFIX= yes GNU_CONFIGURE= yes USE_GNOME= gtk12 -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 502126 -BROKEN= "Does not compile on FreeBSD >= 5.x" -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/audio/xmms-fc/files/patch-SmartPtr.h b/audio/xmms-fc/files/patch-SmartPtr.h new file mode 100644 index 000000000000..7f746dff870f --- /dev/null +++ b/audio/xmms-fc/files/patch-SmartPtr.h @@ -0,0 +1,26 @@ +--- src/SmartPtr.h.orig Wed Oct 6 14:50:12 2004 ++++ src/SmartPtr.h Wed Oct 6 14:51:29 2004 +@@ -207,16 +207,16 @@ + { + if ( bufferLen >= 1 ) + { +- pBufCurrent = ( bufBegin = buffer ); +- bufEnd = bufBegin + bufferLen; +- bufLen = bufferLen; +- status = true; ++ this->pBufCurrent = ( this->bufBegin = buffer ); ++ this->bufEnd = this->bufBegin + bufferLen; ++ this->bufLen = bufferLen; ++ this->status = true; + } + else + { +- pBufCurrent = bufBegin = bufEnd = 0; +- bufLen = 0; +- status = false; ++ this->pBufCurrent = this->bufBegin = this->bufEnd = 0; ++ this->bufLen = 0; ++ this->status = false; + } + } + }; |