[cdesktopenv-devel] Replace ustat(2) usage with statfs(2) on Linux systems

2018-08-21 Thread David Cantrell
This is now a compile time failure on systems with glibc-2.28 as they have removed ustat(2) from the library. The replacement for a while has been statfs(2), so this patch does that for dtfile which is the only program I found that uses that. Also, this patch could be refactored or just have a di

Re: [cdesktopenv-devel] Replace ustat(2) usage with statfs(2) on Linux systems

2018-08-21 Thread David Cantrell
On 08/21/2018 03:55 PM, David Cantrell wrote: > This is now a compile time failure on systems with glibc-2.28 as they > have removed ustat(2) from the library. The replacement for a while has > been statfs(2), so this patch does that for dtfile which is the only > program I found that uses that. >