Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jul 2020 20:28:31 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r541717 - in head/security/step-certificates: . files
Message-ID:  <202007082028.068KSVHt037197@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Wed Jul  8 20:28:31 2020
New Revision: 541717
URL: https://svnweb.freebsd.org/changeset/ports/541717

Log:
  Fix build on i386
  
  PR:		247855
  Submitted by:	Markus Wipp <mw@wipp.bayern> (maintainer)

Added:
  head/security/step-certificates/files/patch-vendor_github.com_go-piv_piv-go_piv_pcsc__freebsd.go   (contents, props changed)
Modified:
  head/security/step-certificates/Makefile

Modified: head/security/step-certificates/Makefile
==============================================================================
--- head/security/step-certificates/Makefile	Wed Jul  8 20:05:07 2020	(r541716)
+++ head/security/step-certificates/Makefile	Wed Jul  8 20:28:31 2020	(r541717)
@@ -3,6 +3,7 @@
 PORTNAME=	step-certificates
 DISTVERSIONPREFIX=v
 DISTVERSION=	0.14.6
+PORTREVISION=	1
 CATEGORIES=	security
 
 MAINTAINER=	mw@wipp.bayern

Added: head/security/step-certificates/files/patch-vendor_github.com_go-piv_piv-go_piv_pcsc__freebsd.go
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/step-certificates/files/patch-vendor_github.com_go-piv_piv-go_piv_pcsc__freebsd.go	Wed Jul  8 20:28:31 2020	(r541717)
@@ -0,0 +1,9 @@
+--- vendor/github.com/go-piv/piv-go/piv/pcsc_freebsd.go.orig	2020-05-23 07:13:27 UTC
++++ vendor/github.com/go-piv/piv-go/piv/pcsc_freebsd.go
+@@ -26,5 +26,5 @@ func scCheck(rc C.long) error {
+ }
+ 
+ func isRCNoReaders(rc C.long) bool {
+-	return rc == 0x8010002E
++	return int64(rc) == 0x8010002E
+ }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007082028.068KSVHt037197>