in reply to Re: KinoSearch Installation errors
in thread KinoSearch Installation errors
It doesn't appear to be Windows-compatible
Interestingly, there are two separate sections in FSDirHandle.c:
/********************************** UNIXEN *************************** +******/ #ifdef CHY_HAS_DIRENT_H #include <dirent.h> FSDirHandle* FSDH_do_open(FSDirHandle *self, const CharBuf *dir) { char *dir_path_ptr = (char*)CB_Get_Ptr8(dir); DH_init((DirHandle*)self, dir); self->sys_dir_entry = NULL; self->fullpath = NULL; self->sys_dirhandle = opendir(dir_path_ptr); ...
and
/********************************** Windows ************************** +******/ #elif defined(CHY_HAS_WINDOWS_H) #include <windows.h> FSDirHandle* FSDH_do_open(FSDirHandle *self, const CharBuf *dir) { ...
but apparently, the ifdefs haven't been figured out correctly...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: KinoSearch Installation errors
by ikegami (Patriarch) on Mar 28, 2011 at 19:35 UTC | |
by creamygoodness (Curate) on Mar 28, 2011 at 22:15 UTC | |
by ikegami (Patriarch) on Mar 28, 2011 at 22:52 UTC | |
by Anonymous Monk on Mar 29, 2011 at 09:19 UTC | |
by creamygoodness (Curate) on Mar 29, 2011 at 10:41 UTC | |
by archimca (Novice) on Mar 30, 2011 at 12:17 UTC | |
by Anonymous Monk on Mar 28, 2011 at 20:34 UTC | |
by ikegami (Patriarch) on Mar 28, 2011 at 20:54 UTC | |
by archimca (Novice) on Apr 20, 2011 at 19:37 UTC | |
by Eliya (Vicar) on Apr 20, 2011 at 19:57 UTC | |
by archimca (Novice) on Apr 20, 2011 at 20:46 UTC |