3 Commits
3.1.0 ... 3.1.1

Author SHA1 Message Date
Matthieu Gautier
4120e7fd25 New version 3.1.1 2020-05-18 15:17:14 +02:00
Matthieu Gautier
8736a2f4ea Merge pull request #383 from kiwix/include_windows 2020-05-18 13:38:38 +02:00
Matthieu Gautier
00b810d649 Include missing "windows.h"
Now that libzim doesn't inculde "windows.h" in its public headers it fails
if we don't include it.
2020-05-18 13:27:14 +02:00
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
kiwix-tools 3.1.1
=================
* Fix compilation on Windows' CI
kiwix-tools 3.1.0
=================

View File

@@ -1,5 +1,5 @@
project('kiwix-tools', 'cpp',
version : '3.1.0',
version : '3.1.1',
license : 'GPL',
default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true'])

View File

@@ -23,7 +23,9 @@
#include <kiwix/name_mapper.h>
#include <kiwix/tools/otherTools.h>
#ifndef _WIN32
#ifdef _WIN32
# include <windows.h>
#else
# include <unistd.h>
#endif