Skip to content

Commit 658d368

Browse files
committed
sysstat 11.1.3
sysstat version 11.1.3 final packaging. Changelog added. lsm file and configure script updated. NOTE: A stable version (11.0.3) also exists and will be available for download from my web site: http://pagesperso-orange.fr/sebastien.godard/ The stable version includes only the bug fixes added in sysstat 11.1.3 but not the new features. Signed-off-by: Sebastien GODARD <[email protected]>
1 parent ffbabb6 commit 658d368

File tree

5 files changed

+135
-92
lines changed

5 files changed

+135
-92
lines changed

CHANGES

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
Changes:
22

3+
2015/02/13: Version 11.1.3 - Sebastien Godard (sysstat <at> orange.fr)
4+
* sar/sadc: Added new metrics from /proc/meminfo to memory
5+
statistics.
6+
* sadf: Update output formats to take into account new memory
7+
metrics.
8+
* [Peter Schiffer]: Fixes from static analysis.
9+
* [Peter Schiffer]: Prefer xz compression program when compressing
10+
sa data files [11.0.3].
11+
* [Peter Schiffer]: Portable way to detect 64 bit OS in configure
12+
script [11.0.4].
13+
* [Vasant Hegde]: sadc: Fix possible race condition in signal
14+
handler code [11.0.3].
15+
* Fix description of %util in iostat and sar manual pages [11.0.3].
16+
* Fix wrong size used in upgrade_magic_section() function.
17+
* Add new sadc_options variable to configure script.
18+
* Rename --disable-man-group option to --disable-file-attr. This
19+
configure's option prevents the build process from setting
20+
attributes of files being installed.
21+
* Make sure that no crontabs are activated when configure's option
22+
--enable-copy-only is used [11.0.3].
23+
* FAQ updated.
24+
* RPM spec file updated.
25+
* sar manual page updated.
26+
* sadc manual page updated [11.0.3].
27+
* CREDITS file updated.
28+
* Code cleaned [11.0.3].
29+
330
2014/10/19: Version 11.1.2 - Sebastien Godard (sysstat <at> orange.fr)
431
* [Robert Elliott]: Added irqtop command. irqtop monitors
532
differences in /proc/interrupts and /proc/softirqs per CPU,

CREDITS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ The following people have contributed to 'sysstat' in one way or another:
135135
C�dric Marie <cedric.marie [at] openmailbox.org> sent me
136136
several patches to improve pidstat.
137137

138+
Robert Elliott <Elliott [at] hp.com> contributed the irqtop
139+
command, and Lance Shelton <Lance.Shelton [at] sandisk.com>
140+
the irqstat command.
141+
138142
I would also thank the following people for their hints or bug reports
139143
(in alphabetical order):
140144

@@ -162,9 +166,11 @@ I would also thank the following people for their hints or bug reports
162166
Dr. David Alan Gilbert <dave@tre[...].org>
163167
David Gesswein <djg@drs[...].com>
164168
Frank Glinka <glinkaf@uni[...].de>
169+
John Goodyear <johngood@us[...].com>
165170
Gurinder Shergill <gurinder.shergill@hp[...].com>
166171
Ladislav Hagara <ladislav.hagara@uno[...].cz>
167172
Don Harrop <don@swb[...].com>
173+
Vasant Hegde <hegdevasant@lin[...].com>
168174
J�rgen Heinemann <heinemann.juergen@hjc[...].de>
169175
Kei Ishida <ishida.kei@oss[...].jp>
170176
Tatsuo Ito <tito@mir[...].com>

configure

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4937,11 +4937,19 @@ fi
49374937
49384938
SADC_DIR=$AuxPrefix/lib
49394939
if test -d $AuxPrefix/lib64; then
4940-
# Look for lm (long mode) flag to know if CPU is 64 bit
4941-
grep " lm " /proc/cpuinfo >/dev/null 2>&1
4942-
if test $? = 0; then
4943-
SADC_DIR=$AuxPrefix/lib64
4944-
fi
4940+
# Verify that this OS is really 64 bit
4941+
BITS=$(getconf LONG_BIT 2>/dev/null)
4942+
if test $? = 0; then
4943+
if test $BITS = 64; then
4944+
SADC_DIR=$AuxPrefix/lib64
4945+
fi
4946+
else
4947+
# Fallback: look for lm (long mode) flag to know if CPU is 64 bit
4948+
grep " lm " /proc/cpuinfo >/dev/null 2>&1
4949+
if test $? = 0; then
4950+
SADC_DIR=$AuxPrefix/lib64
4951+
fi
4952+
fi
49454953
fi
49464954
49474955
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking sadc directory" >&5

0 commit comments

Comments
 (0)