Fix build on Solaris
d_type is not part of the POSIX spec unfortunately.
This commit is contained in:
		
							parent
							
								
									5bc12454fd
								
							
						
					
					
						commit
						cdb346c65e
					
				
					 3 changed files with 11 additions and 0 deletions
				
			
		|  | @ -232,7 +232,11 @@ DirEntries readDirectory(const Path & path) | |||
|         checkInterrupt(); | ||||
|         string name = dirent->d_name; | ||||
|         if (name == "." || name == "..") continue; | ||||
| #ifdef HAVE_STRUCT_DIRENT_D_TYPE | ||||
|         entries.emplace_back(name, dirent->d_ino, dirent->d_type); | ||||
| #else | ||||
|         entries.emplace_back(name, dirent->d_ino, getFileType(absPath(name, path))); | ||||
| #endif | ||||
|     } | ||||
|     if (errno) throw SysError(format("reading directory ‘%1%’") % path); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue