summaryrefslogtreecommitdiffstats
path: root/zinf
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2007-08-16 18:20:07 +0000
committer Eric Hameleers <alien@slackware.com>2007-08-16 18:20:07 +0000
commit9fa27c07f34e9328ecc06ceb712301c1b5c5f0ab (patch)
tree27a7a235fa518ab0d2dd84f522454f7efaf9c41e /zinf
parentc8421ee76d83c3152bac3c72e8d160ca82e41fc8 (diff)
downloadasb-9fa27c07f34e9328ecc06ceb712301c1b5c5f0ab.tar.gz
asb-9fa27c07f34e9328ecc06ceb712301c1b5c5f0ab.tar.xz
Initial revision
Diffstat (limited to 'zinf')
-rw-r--r--zinf/build/zinf_gcc4.patch51
1 files changed, 51 insertions, 0 deletions
diff --git a/zinf/build/zinf_gcc4.patch b/zinf/build/zinf_gcc4.patch
new file mode 100644
index 00000000..1bc0f7ba
--- /dev/null
+++ b/zinf/build/zinf_gcc4.patch
@@ -0,0 +1,51 @@
+--- a/base/include/event.h Sat Apr 22 00:34:35 2006 +0000
++++ b/base/include/event.h Tue Oct 10 12:46:22 2006 -0700
+@@ -40,6 +40,7 @@ protected:
+
+ class EventQueue {
+ public:
++ virtual ~EventQueue() {}
+ virtual Error AcceptEvent(Event *) = 0;
+ };
+
+
+--- a/base/include/player.h Sat Apr 22 00:34:35 2006 +0000
++++ b/base/include/player.h Tue Oct 10 12:46:22 2006 -0700
+@@ -156,13 +156,13 @@ class ZINF_EXPORT Player : public EventQ
+
+ #define _EQUALIZER_ENABLE_
+ #ifdef _EQUALIZER_ENABLE_
+- void Player::SetEQData(Event *pEvent);
++ void SetEQData(Event *pEvent);
+ #endif // _EQUALIZER_ENABLE_
+ #undef _EQUALIZER_ENABLE_
+
+ #define _VISUAL_ENABLE_
+ #ifdef _VISUAL_ENABLE_
+- void Player::SendVisBuf(Event *pEvent);
++ void SendVisBuf(Event *pEvent);
+ #endif // _VISUAL_ENABLE_
+ #undef _VISUAL_ENABLE_
+
+
+--- a/base/include/properties.h Sat Apr 22 00:34:35 2006 +0000
++++ b/base/include/properties.h Tue Oct 10 12:46:22 2006 -0700
+@@ -64,6 +64,7 @@ class Int32PropValue : public PropValue
+
+ class PropertyWatcher {
+ public:
++ virtual ~PropertyWatcher() {}
+ virtual Error PropertyChange(const std::string& prop, PropValue *) = 0;
+ };
+
+
+--- a/base/include/queue.h Sat Apr 22 00:34:35 2006 +0000
++++ b/base/include/queue.h Tue Oct 10 12:46:22 2006 -0700
+@@ -26,6 +26,7 @@ ________________________________________
+
+ #include "config.h"
+ #include "mutex.h"
++#include <assert.h>
+
+ template<class T>
+ class Queue {