in reply to KinoSearch Installation errors
It doesn't appear to be Windows-compatible. You should be talking to the KinoSearch people.
error: 'S_IFLNK' undeclared
Windows doesn't support symbolic links, so it doesn't implement S_IFLNK which isn't even in POSIX.
In core/KinoSearch/Store/FSDirHandle.c, replace the FSDH_entry_is_symlink definition with
bool_t FSDH_entry_is_symlink(FSDirHandle *self) { return false; }
warning: implicit declaration of function 'opendir'
warning: implicit declaration of function 'readdir'
warning: implicit declaration of function 'closedir'
error: dereferencing pointer to incomplete type
They didn't include a necessary include file.
In core/KinoSearch/Store/FSDirHandle.c, add
#include <dirent.h>
|
|---|