Skip to content

Commit 8ea7351

Browse files
committed
Fixed build constraints for CGO
Signed-off-by: Anagh Kumar Baranwal <[email protected]>
1 parent 92816b5 commit 8ea7351

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

ieproxy_darwin.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build darwin && cgo
2+
// +build darwin,cgo
3+
14
package ieproxy
25

36
/*

ieproxy_windows.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && cgo
2+
// +build windows,cgo
3+
14
package ieproxy
25

36
import (

pac_darwin.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build darwin && cgo
2+
// +build darwin,cgo
3+
14
package ieproxy
25

36
/*

pac_windows.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
//go:build windows && cgo
2+
// +build windows,cgo
3+
14
package ieproxy
25

36
import (

0 commit comments

Comments
 (0)