ec0658c0d3
- Update to version 2.2.0 * -t/--tree flag for starting in tree-view mode * Various automake and build improvements * Check for pkg-config when building with --enable-delayacct * Avoid some bashisms in configure script * Use CFLAGS from ncurses*-config if present * Header generator supports non-UTF-8 environments * Changed detection of kernel threads * Collapse current subtree pressing Backspace * BUGFIX: fix behavior of SYSCR column * BUGFIX: obtain exit code of lsof correctly * BUGFIX: fix crash with particular keycodes * BUGFIX: fix issue with small terminals * BUGFIX: fix terminal color issues * BUGFIX: preserve LDFLAGS when building * BUGFIX: fixed overflow for systems with >= 100 signals - cleanup with spec-cleaner - rebase htop-script-python3.patch OBS-URL: https://build.opensuse.org/request/show/595378 OBS-URL: https://build.opensuse.org/package/show/Base:System/htop?expand=0&rev=48
20 lines
535 B
Diff
20 lines
535 B
Diff
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -2388,7 +2388,7 @@ coverage:
|
|
$(MAKE) all CFLAGS="" AM_CPPFLAGS="-fprofile-arcs -ftest-coverage -DDEBUG" LDFLAGS="-lgcov"
|
|
|
|
.c.h:
|
|
- @srcdir@/scripts/MakeHeader.py $<
|
|
+ LC_ALL=en_US.UTF-8 @srcdir@/scripts/MakeHeader.py $<
|
|
|
|
cppcheck:
|
|
cppcheck -q -v . --enable=all -DHAVE_CGROUP -DHAVE_OPENVZ -DHAVE_TASKSTATS
|
|
--- a/scripts/MakeHeader.py
|
|
+++ b/scripts/MakeHeader.py
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env python
|
|
+#!/usr/bin/python3
|
|
import os, sys, string, io
|
|
try:
|
|
from StringIO import StringIO
|