forked from pool/krita
c94e1b84c5
- Restore openSUSE Leap 42.3 support: * boost 1.61 presents in Leap 42.3 repo * Added fix_libgif_5_0_build.patch to make krita build against libgif 5.0.x OBS-URL: https://build.opensuse.org/request/show/590757 OBS-URL: https://build.opensuse.org/package/show/KDE:Extra/krita?expand=0&rev=63
15 lines
399 B
Diff
15 lines
399 B
Diff
From: Anatoly Bobrov <khnazile@rkmail.ru>
|
|
Subject: Trivial fix to make Krita link against libgif 5.0.x in openSUSE Leap 42.3
|
|
|
|
--- plugins/impex/gif/qgiflibhandler.cpp 2018-03-20 10:49:57.000000000 +0300
|
|
+++ plugins/impex/gif/qgiflibhandler.cpp 2018-03-23 15:11:33.890071869 +0300
|
|
@@ -314,7 +314,7 @@
|
|
}
|
|
}
|
|
|
|
- EGifCloseFile(gif, &err);
|
|
+ EGifCloseFile(gif);
|
|
|
|
return true;
|
|
}
|