Added the macro VDR_NO_STL_PROTOTYPES to tools.h

This commit is contained in:
Klaus Schmidinger
2017-05-21 09:37:45 +02:00
parent 0b9870959b
commit 82813f48c4
3 changed files with 14 additions and 3 deletions

View File

@@ -8991,7 +8991,7 @@ Video Disk Recorder Revision History
current channel is listed.
- Fixed a possible crash when pulling the CAM while decrypting a channel with MTD.
2017-05-20: Version 2.3.5
2017-05-21: Version 2.3.5
- CAMs are now sent a generated EIT packet that contains a single 'present event' for
the current SID, in order to avoid any parental rating dialogs.
@@ -9035,3 +9035,10 @@ Video Disk Recorder Revision History
- No longer setting a new timer's remote host name if "SVDRP peering" is turned off.
- Fixed a double deletion of a cTimer in case HandleRemoteModifications() returned
false (thanks to Johann Friedrichs).
- Added the macro VDR_NO_STL_PROTOTYPES to tools.h (thanks to Jasmin Jessich). For
some reason the STL developers decided to remove the macro __STL_CONFIG_H, so VDR
can no longer automatically determine whether an STL header file has been included.
If you use the STL and get error messages regarding template functions defined in
VDR's tools.h, you can insert
#define VDR_NO_STL_PROTOTYPES
before including tools.h.