diff options
author | schmirl <schmirl> | 2008-07-16 06:00:48 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2008-07-16 06:00:48 +0000 |
commit | 90bae5b011f52b82c7a9f7f412533cca64c752ac (patch) | |
tree | 505fe3914e2f3f4a0760b9fb55d83ba325140f94 | |
parent | 9ecbab88824c809c814e8d5df745e2616b0b965e (diff) | |
download | vdr-plugin-streamdev-90bae5b011f52b82c7a9f7f412533cca64c752ac.tar.gz vdr-plugin-streamdev-90bae5b011f52b82c7a9f7f412533cca64c752ac.tar.bz2 |
- added preprocessor directive for ancient gcc
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | server/connectionVTP.h | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ VDR Plugin 'streamdev' Revision History --------------------------------------- +- added preprocessor directive for ancient gcc - added Russian translation (thanks to Oleg Roitburd) - fixed assignment of externremux.sh's default location (reported by plautze) - added French translation (thanks to micky979) diff --git a/server/connectionVTP.h b/server/connectionVTP.h index 3acb1a2..452f3ae 100644 --- a/server/connectionVTP.h +++ b/server/connectionVTP.h @@ -12,9 +12,9 @@ class cLSTTHandler; class cConnectionVTP: public cServerConnection { friend class cLSTEHandler; - // if your compiler doesn't understand the following statement - // (e.g. gcc 2.x), simply remove it and try again ;-) +#if !defined __GNUC__ || __GNUC__ >= 3 using cServerConnection::Respond; +#endif private: cTBSocket *m_LiveSocket; |