[00:58:32] *** waddlesplash <waddlesplash!uid58358@gateway/web/irccloud.com/x-vmeekrsfqxydusvn> has quit IRC (Quit: Connection closed for inactivity)[01:58:43] *** Manchotix <Manchotix!~Manchotix@ip-178-202-194-178.hsi09.unitymediagroup.de> has quit IRC (Ping timeout: 255 seconds)[08:28:34] *** humdinger <humdinger!~humdinger@x4d04f8c9.dyn.telefonica.de> has joined #haiku-3rdparty[11:11:39] *** humdinger <humdinger!~humdinger@x4d04f8c9.dyn.telefonica.de> has quit IRC (Quit: Vision[0.9.8pre9]: Oi, with the poodles already!)[11:12:43] *** humdinger <humdinger!~humdinger@x4d04f8c9.dyn.telefonica.de> has joined #haiku-3rdparty[11:38:20] *** humdinger <humdinger!~humdinger@x4d04f8c9.dyn.telefonica.de> has quit IRC (Quit: Vision[0.9.7-H-20140108]: Oi, with the poodles already!)[14:11:30] *** Manchotix <Manchotix!~Manchotix@ip-178-202-194-178.hsi09.unitymediagroup.de> has joined #haiku-3rdparty[16:08:13] *** Manchotix <Manchotix!~Manchotix@ip-178-202-194-178.hsi09.unitymediagroup.de> has quit IRC (Ping timeout: 240 seconds)[17:05:01] *** humdinger <humdinger!~humdinger@x4d04f8c9.dyn.telefonica.de> has joined #haiku-3rdparty[20:09:27] *** humdinger <humdinger!~humdinger@x4d04f8c9.dyn.telefonica.de> has quit IRC (Quit: Vision[0.9.8pre9]: Oi, with the poodles already!)[22:31:39] *** waddlesplash <waddlesplash!uid58358@gateway/web/irccloud.com/x-xqdtwtzikkbxeymc> has joined #haiku-3rdparty[22:31:39] *** ChanServ sets mode: +o waddlesplash[23:02:19] *** Intuition <Intuition!~quassel@56.61.7.51.dyn.plus.net> has joined #haiku-3rdparty[23:06:33] <Intuition> Hi guys. I haven't used Haiku since just before the package management stuff got merged. I decided to ease myself back into it by porting something from Linux but i've stumbled into posix/dirent.h territory and as I've discovered the struct member d_type is a none-posix extension and not available on Haiku. Is there standard work around or shall i just hack together a replacement for this particular program?[23:07:04] <waddlesplash> there is a ticket to implement that at some point I think[23:07:15] <waddlesplash> but, it will break binary compatibility so it won't happen soon probably[23:07:33] <waddlesplash> so, try to use POSIX-compliant stuff instead?[23:10:32] <Intuition> thanks waddlesplash[23:11:18] <Intuition> There's a workaround in the code for WIN32 platforms, i'll have a play with that and see what i can come up with.[23:11:54] <Intuition> Nice interview the other day btw. Really enjoyed it. Made me reinstall Haiku after so long :)[23:13:27] <PulkoMandy> Linux puts several things in dirent, but does not guarantees they are opulated (it depends if the filesystem can know from on-disk dir entries about the data)[23:13:55] <PulkoMandy> so, clean code should always have a fallback for when d_type is not available (most likely, using stat or similar to learn more about the file entry)[23:15:10] <Intuition> Thamks PulkoMandy, I'm just reading the docs for stat now