Skip to content
Snippets Groups Projects
Commit e20c6943 authored by Rene Brun's avatar Rene Brun
Browse files

From Axel:

recent cygwins' dirent don't have a d_ino field. Thanks, Angelo Grasiozi.


git-svn-id: http://root.cern.ch/svn/root/trunk@13924 27541ba8-7e3a-0410-8455-c3a389f83636
parent c1cad716
No related branches found
No related tags found
No related merge requests found
// @(#)root/unix:$Name: $:$Id: TUnixSystem.cxx,v 1.144 2005/11/02 14:34:15 rdm Exp $ // @(#)root/unix:$Name: $:$Id: TUnixSystem.cxx,v 1.145 2005/11/15 22:22:15 brun Exp $
// Author: Fons Rademakers 15/09/95 // Author: Fons Rademakers 15/09/95
/************************************************************************* /*************************************************************************
...@@ -3360,7 +3360,7 @@ void *TUnixSystem::UnixOpendir(const char *dir) ...@@ -3360,7 +3360,7 @@ void *TUnixSystem::UnixOpendir(const char *dir)
return (void*) opendir(edir); return (void*) opendir(edir);
} }
#if defined(_POSIX_SOURCE) #if defined(_POSIX_SOURCE) || defined(__CYGWIN__)
// Posix does not require that the d_ino field be present, and some // Posix does not require that the d_ino field be present, and some
// systems do not provide it. // systems do not provide it.
# define REAL_DIR_ENTRY(dp) 1 # define REAL_DIR_ENTRY(dp) 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment