Date: Mon, 12 Oct 2020 07:27:16 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r552104 - branches/2020Q4/security/heaan/files Message-ID: <202010120727.09C7RG18047462@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Mon Oct 12 07:27:15 2020 New Revision: 552104 URL: https://svnweb.freebsd.org/changeset/ports/552104 Log: MFH: r552103 security/heaan: fix build on GCC architectures Patch created manually, because WRKSRC differs. Add include sys/time.h: In file included from ../src/TestScheme.cpp:20: ../src/TimeUtils.h:20:17: error: field 'startTime' has incomplete type 'timeval' 20 | struct timeval startTime, stopTime; | ^~~~~~~~~ Approved by: portmgr (fix build blanket) Added: branches/2020Q4/security/heaan/files/patch-TimeUtils.h - copied unchanged from r552103, head/security/heaan/files/patch-TimeUtils.h Modified: Directory Properties: branches/2020Q4/ (props changed) Copied: branches/2020Q4/security/heaan/files/patch-TimeUtils.h (from r552103, head/security/heaan/files/patch-TimeUtils.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/security/heaan/files/patch-TimeUtils.h Mon Oct 12 07:27:15 2020 (r552104, copy of r552103, head/security/heaan/files/patch-TimeUtils.h) @@ -0,0 +1,10 @@ +--- ../src/TimeUtils.h.orig 2020-10-12 09:20:15.992285000 +0200 ++++ ../src/TimeUtils.h 2020-10-12 09:20:25.674915000 +0200 +@@ -8,6 +8,7 @@ + #ifndef HEAAN_TIMEUTILS_H_ + #define HEAAN_TIMEUTILS_H_ + ++#include <sys/time.h> + #include <iostream> + + struct timeval;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010120727.09C7RG18047462>