Files
pkgsrc-ng/emulators/stella/patches/patch-src_unix_FSNodePOSIX.cxx
2016-11-18 22:39:22 +01:00

22 lines
751 B
C++

$NetBSD: patch-src_unix_FSNodePOSIX.cxx,v 1.2 2015/12/21 06:46:04 dbj Exp $
Try to make the dirent->d_type handling code autodetect. (As best as I
can tell it is not, in the current version 3.9.2 at least, handled
from configure.)
--- src/unix/FSNodePOSIX.cxx.orig 2015-01-01 03:49:32.000000000 +0000
+++ src/unix/FSNodePOSIX.cxx
@@ -120,6 +120,12 @@ bool FilesystemNodePOSIX::getChildren(Ab
FilesystemNodePOSIX entry(newPath, false);
+#ifndef DT_UNKNOWN
+#ifndef SYSTEM_NOT_SUPPORTING_D_TYPE
+#define SYSTEM_NOT_SUPPORTING_D_TYPE
+#endif
+#endif
+
#if defined(SYSTEM_NOT_SUPPORTING_D_TYPE)
/* TODO: d_type is not part of POSIX, so it might not be supported
* on some of our targets. For those systems where it isn't supported,