fluxbox: fix the comparison method with zero. (#13642)
This commit is contained in:
parent
2eb65f8a5d
commit
3c2542f387
@ -0,0 +1,11 @@
|
||||
--- spack-src/util/fluxbox-remote.cc.org 2019-11-08 16:22:55.647747144 +0900
|
||||
+++ spack-src/util/fluxbox-remote.cc 2019-11-08 16:23:15.709859444 +0900
|
||||
@@ -73,7 +73,7 @@
|
||||
if (strcmp(cmd, "result") == 0) {
|
||||
XTextProperty text_prop;
|
||||
if (XGetTextProperty(disp, root, &text_prop, atom_result) != 0
|
||||
- && text_prop.value > 0
|
||||
+ && text_prop.value != 0
|
||||
&& text_prop.nitems > 0) {
|
||||
|
||||
printf("%s", text_prop.value);
|
@ -19,6 +19,9 @@ class Fluxbox(AutotoolsPackage):
|
||||
|
||||
version('1.3.7', sha256='c99e2baa06fff1e96342b20415059d12ff1fa2917ade0173c75b2fa570295b9f')
|
||||
|
||||
# Referenced:https://sourceforge.net/p/fluxbox/bugs/1171/
|
||||
patch('fix_zero_comparison.patch')
|
||||
|
||||
depends_on('pkgconfig', type='build')
|
||||
depends_on('freetype')
|
||||
depends_on('libxrender')
|
||||
|
Loading…
Reference in New Issue
Block a user