mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-10 23:02:56 +02:00
pchar: fix build
This commit is contained in:
parent
0bbc2ca782
commit
e96ab62d5d
2 changed files with 23 additions and 1 deletions
22
srcpkgs/pchar/patches/fix-build.patch
Normal file
22
srcpkgs/pchar/patches/fix-build.patch
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
--- ResultTable.cc.orig 2018-01-10 19:18:31.278796587 +0100
|
||||||
|
+++ ResultTable.cc 2018-01-10 19:18:18.193831083 +0100
|
||||||
|
@@ -909,8 +909,8 @@ void ResultTable::lmsint(double &a, doub
|
||||||
|
l = 0;
|
||||||
|
for (i = 0; i < columns; i++) {
|
||||||
|
if (partialmins[i] != timeoutresult) {
|
||||||
|
- residuals[l] = abs(partialmins[i] -
|
||||||
|
- ((currentslope *
|
||||||
|
+ residuals[l] = abs((long int)partialmins[i] -
|
||||||
|
+ (long int)((currentslope *
|
||||||
|
column2size(i) /
|
||||||
|
slopescale) +
|
||||||
|
currentintercept));
|
||||||
|
@@ -930,7 +930,7 @@ void ResultTable::lmsint(double &a, doub
|
||||||
|
l = 0;
|
||||||
|
for (i = 0; i < columns; i++) {
|
||||||
|
if (partialmins[i] != timeoutresult) {
|
||||||
|
- ys[l] = abs(partialmins[i] - mediany);
|
||||||
|
+ ys[l] = abs((long int)partialmins[i] - (long int)mediany);
|
||||||
|
l++;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'pchar'
|
# Template file for 'pchar'
|
||||||
pkgname=pchar
|
pkgname=pchar
|
||||||
version=1.5
|
version=1.5
|
||||||
revision=2
|
revision=3
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
short_desc="Perform network measurements along an Internet path"
|
short_desc="Perform network measurements along an Internet path"
|
||||||
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
||||||
|
|
Loading…
Add table
Reference in a new issue