Compare commits

...

2 Commits

Author SHA1 Message Date
Kai Sommerfeld
43b2467d35 Merge pull request #47 from ksooo/fix-windows-build
Fix windows build
2020-10-31 00:34:12 +01:00
Kai Sommerfeld
18fc3a3339 Fix windows build 2020-10-31 00:25:34 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<addon <addon
id="pvr.octonet" id="pvr.octonet"
version="4.0.0" version="4.0.1"
name="Digital Devices Octopus NET Client" name="Digital Devices Octopus NET Client"
provider-name="digitaldevices"> provider-name="digitaldevices">
<requires>@ADDON_DEPENDS@</requires> <requires>@ADDON_DEPENDS@</requires>

View File

@@ -18,7 +18,7 @@
#include <sstream> #include <sstream>
#include <string> #include <string>
#ifdef __WINDOWS__ #if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
#define timegm _mkgmtime #define timegm _mkgmtime
#endif #endif