Update ctpp2 patches to handle mingw32 compilation with meson 0.40.0
It seems that last meson version (0.40.0) do not pass cross compilation extra_args to compiler when checking for headers. Thus, the kiwix-lib check for ctpp2 headers fails because the WIN32 define is not present. So kiwix-lib is compiled without CTPP2 but kiwix-tool compile as if kiwix-lib where compile with CTPP2 and fails. By making CTPP2 headers check for `__WINGW32__` we workaround this problem. I don't know if this is a bug in meson, ctpp2 or kiwix-lib but this small fix allow to compile correctly with last meson version.
This commit is contained in:
parent
db9f277188
commit
2e14765a38
|
@ -83,3 +83,27 @@ diff -ur ctpp2-2.8.3/src/functions/FnRandom.cpp ctpp2-2.8.3.patched/src/function
|
|||
srandomdev();
|
||||
#else
|
||||
srandom(time(NULL));
|
||||
diff -ur ctpp2-2.8.3/include/CTPP2GlobalDefines.h ctpp2-2.8.3.patche/include/CTPP2GlobalDefines.h
|
||||
--- ctpp2-2.8.3/include/CTPP2GlobalDefines.h 2012-08-02 09:22:44.000000000 +0200
|
||||
+++ ctpp2-2.8.3.patched/include/CTPP2GlobalDefines.h 2017-04-24 10:59:54.236256866 +0200
|
||||
@@ -92,7 +92,7 @@
|
||||
/*
|
||||
* Header files
|
||||
*/
|
||||
-#ifndef WIN32
|
||||
+#if !defined(WIN32) && !defined(__MINGW32__)
|
||||
|
||||
#ifndef HAVE_SYS_TIME_H
|
||||
#error "Cannot find header file `sys/time.h'"
|
||||
diff -ur ctpp2-2.8.3/include/CTPP2SysTypes.h ctpp2-2.8.3.patche/include/CTPP2SysTypes.h
|
||||
--- ctpp2-2.8.3/include/CTPP2SysTypes.h 2012-08-02 09:22:44.000000000 +0200
|
||||
+++ ctpp2-2.8.3.patched/include/CTPP2SysTypes.h 2017-04-24 11:00:42.284545293 +0200
|
||||
@@ -227,7 +227,7 @@
|
||||
typedef UCCHAR_8 * UCCHAR_P;
|
||||
|
||||
|
||||
-#elif WIN32 /* FreeBSD End, start of Win32 declarations */
|
||||
+#elif WIN32 || __MINGW32__ /* FreeBSD End, start of Win32 declarations */
|
||||
|
||||
/**
|
||||
@var typedef __int16 INT_16
|
||||
|
|
Loading…
Reference in New Issue