mirror of https://github.com/kiwix/libkiwix.git
Merge branch 'master' of ssh://git.code.sf.net/p/kiwix/kiwix
This commit is contained in:
commit
457406b743
|
@ -34,6 +34,17 @@ namespace kiwix {
|
|||
resultRange(20)
|
||||
{
|
||||
template_ct2 = getResourceAsString("results.ct2");
|
||||
#ifdef __APPLE__
|
||||
string executablePath = getExecutablePath();
|
||||
string executableDirectory = removeLastPathElement(executablePath);
|
||||
string datPath = computeAbsolutePath(executableDirectory, "icudt49l.dat");
|
||||
try {
|
||||
u_setDataDirectory(datPath.c_str());
|
||||
} catch (exception &e) {
|
||||
std::cerr << e.what() << std::endl;
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
/* Search strings in the database */
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#include <resourceTools.h>
|
||||
#include <pathTools.h>
|
||||
#include <stringTools.h>
|
||||
#include "unicode/putil.h"
|
||||
|
||||
#include <ctpp2/CDT.hpp>
|
||||
#include <ctpp2/CTPP2FileLogger.hpp>
|
||||
|
|
Loading…
Reference in New Issue