svn commit: r541717 - in head/security/step-certificates: . files

Li-Wen Hsu lwhsu at FreeBSD.org
Wed Jul 8 20:28:32 UTC 2020


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 at 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 at 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
+ }


More information about the svn-ports-all mailing list