wok-next view perl-fuse/stuff/patches/fuse-2.9.0.patch @ rev 20555

Fix "DSO missing..." error: loqui, xfprint, notification-daemon-gtk2, xfmedia, evince, celestia(?)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 06 17:43:57 2018 +0300 (2018-04-06)
parents
children
line source
1 Fix missing "temp" variable declaration in _PLfuse_release,
2 which only affects 32-bit systems using FUSE 2.9.0 or later.
3 https://github.com/dpavlin/perl-fuse/commit/8603ed015c80a48b4e6907e46445219fe1f09d24
5 --- a/Fuse.xs
6 +++ b/Fuse.xs
7 @@ -755,6 +755,9 @@
8 int _PLfuse_release (const char *file, struct fuse_file_info *fi) {
9 int rv;
10 int flags = fi->flags;
11 +#if FUSE_VERSION >= 29 && !defined(PERL_HAS_64BITINT)
12 + char *temp;
13 +#endif
14 FUSE_CONTEXT_PRE;
15 DEBUGf("release begin\n");
16 ENTER;