diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2010-06-20 18:17:42 +0200 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2010-06-20 18:17:42 +0200 |
commit | 8edd4eb02751bbf45ab2833102dee3707fbbd499 (patch) | |
tree | cbfbebe9c403d896b1788f8fad124ee4d770002d /tntconfig.h | |
parent | a5f3edc89393f869bfc6cbcadff5b727562df88a (diff) | |
download | vdr-plugin-live-8edd4eb02751bbf45ab2833102dee3707fbbd499.tar.gz vdr-plugin-live-8edd4eb02751bbf45ab2833102dee3707fbbd499.tar.bz2 |
Reaction to a patch sent by Jan Willies for an other problem withcvs-commit-370
tntnet version string. Jan's patch resolved the immediate problem with
regard to the updated version but was not backwards compatible for older
tntnet version.
My changes to the code adressed that problem and added an enhancement
how to deal with that problem in the future.
Diffstat (limited to 'tntconfig.h')
-rw-r--r-- | tntconfig.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tntconfig.h b/tntconfig.h index 9c30e44..c02e6a0 100644 --- a/tntconfig.h +++ b/tntconfig.h @@ -3,10 +3,11 @@ #include <string> #include <tnt/tntnet.h> +#include "tntfeatures.h" namespace vdrlive { -#if TNTVERSION >= 1606 +#if TNT_CONFIG_INTERNAL class TntConfig { public: @@ -36,7 +37,7 @@ namespace vdrlive { void WriteProperties(); void WriteConfig(); }; -#endif +#endif // TNT_CONFIG_INTERNAL } // namespace vdrlive |