Date: Fri, 28 Oct 2022 22:00:03 GMT From: Stephen Montgomery-Smith <stephen@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 76878a2b78b3 - main - math/octave-forge-biosig: Correction to invokation of localtime. Message-ID: <202210282200.29SM03nR096199@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by stephen: URL: https://cgit.FreeBSD.org/ports/commit/?id=76878a2b78b38528629f522a76a403498c63eb7c commit 76878a2b78b38528629f522a76a403498c63eb7c Author: Stephen Montgomery-Smith <stephen@FreeBSD.org> AuthorDate: 2022-10-28 21:58:03 +0000 Commit: Stephen Montgomery-Smith <stephen@FreeBSD.org> CommitDate: 2022-10-28 21:58:03 +0000 math/octave-forge-biosig: Correction to invokation of localtime. Bump portrevision. --- math/octave-forge-biosig/Makefile | 1 + math/octave-forge-biosig/files/patch-mexSSAVE.cpp | 14 +++++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/math/octave-forge-biosig/Makefile b/math/octave-forge-biosig/Makefile index 25dce241def1..cc6fd5f30199 100644 --- a/math/octave-forge-biosig/Makefile +++ b/math/octave-forge-biosig/Makefile @@ -1,5 +1,6 @@ PORTNAME= octave-forge-biosig DISTVERSION= 3.0.1 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= https://pub.ist.ac.at/~schloegl/biosig/prereleases/ DISTNAME= biosig4octave-${DISTVERSION}.src diff --git a/math/octave-forge-biosig/files/patch-mexSSAVE.cpp b/math/octave-forge-biosig/files/patch-mexSSAVE.cpp index b7e987b7bb31..2cc834af1bd2 100644 --- a/math/octave-forge-biosig/files/patch-mexSSAVE.cpp +++ b/math/octave-forge-biosig/files/patch-mexSSAVE.cpp @@ -1,11 +1,19 @@ ---- mexSSAVE.cpp.orig 2022-10-28 21:23:00 UTC +--- mexSSAVE.cpp.orig 2021-07-14 20:07:43 UTC +++ mexSSAVE.cpp -@@ -202,7 +202,7 @@ void mexFunction( +@@ -87,6 +87,7 @@ void mexFunction( + HDRTYPE *hdr; + size_t count; + time_t T0; ++ time_t zero = 0; + char *FileName; + char tmpstr[128]; + int status; +@@ -202,7 +203,7 @@ void mexFunction( if ( (p = mxGetField(prhs[0], 0, "tzmin") ) != NULL ) hdr->tzmin = (int16_t)getDouble(p, 0); else - hdr->tzmin = -timezone/60; -+ hdr->tzmin = -localtime(0)->tm_gmtoff/60; ++ hdr->tzmin = -localtime(&zero)->tm_gmtoff/60; if ( (p = mxGetField(prhs[0], 0, "FileName") ) != NULL ) FileName = mxArrayToString(p); if ( (p = mxGetField(prhs[0], 0, "SampleRate") ) != NULL ) hdr->SampleRate = getDouble(p, 0); if ( (p = mxGetField(prhs[0], 0, "NS") ) != NULL ) hdr->NS = getDouble(p, 0);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210282200.29SM03nR096199>