Cyril Hrubis

Results 133 comments of Cyril Hrubis

@DaanDeMeyer that's really strange I did look at the git repository of xfs-progs and there isn't a single use of `__GNU_SOURCE` or `__USE_GNU`. This failure does not show up in...

@DaanDeMeyer I just installed Fedora-39 VM and the configure script works as expected both with and without xfsprogs-devel installed. I can't reproduce the failure at all.

On Fedora-39: ``` $ cat test.c #include int main(void) { if (sizeof(struct fs_quota_statv)) return 0; return 0; } $ gcc -W -Wall test.c $ echo $? 0 ```

Given that rawhide is not yet released version it may be as well bug in the fedora. I suppose that something in the headers that are included from the `xfs/xfs.h`...

Actually this is an interesting proposal, gfxprim at the moment supports loading images from zip, rar, etc. but the API is somewhat limited. I will have to look closer how...

I guess that gpplayer is not the only application that will use audio output and alsa is complicated beast, so it would make sense to put the simplified API for...

I guess that we can convert the header guards from `GP_FOO_H__` to just `GP_FOO_H` these are prefixed with `GP_` anyways. As for the unique names for variables in macros I...

I do not follow here. Are you proposing sending a patch? As for the header guards, yes, we can delete the double underscore at the end. As for variables in...

Sounds reasonable, I can look into this when I have some time and as usual patches are welcomed.

See 483cf4d9a8e2446e6e7ccc0e5a86aff47d01ef2a now only `gp_time_stamp()` has to be implemented for a given platform, which simplifies the problem quite a bit. Now the question is how to make the `gp_time_stamp()` implementation...