From eb4125376482206505bc9521408a5b58ad074c2b Mon Sep 17 00:00:00 2001 From: themylogin Date: Mon, 26 Nov 2018 18:16:02 +0300 Subject: [PATCH] azureblob: allow building azureblob backend on *BSD FreeBSD support was added in Azure/azure-storage-blob-go@0562badec5489e409f1b18596e3f77a309420a84 OpenBSD and NetBSD support was added in Azure/azure-storage-blob-go@1d6dd77d7442fea5e32722ac0e05ee0e22059222 --- backend/azureblob/azureblob.go | 2 +- backend/azureblob/azureblob_internal_test.go | 2 +- backend/azureblob/azureblob_test.go | 2 +- backend/azureblob/azureblob_unsupported.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/azureblob/azureblob.go b/backend/azureblob/azureblob.go index 28d6d6ff1..9f71653fa 100644 --- a/backend/azureblob/azureblob.go +++ b/backend/azureblob/azureblob.go @@ -1,6 +1,6 @@ // Package azureblob provides an interface to the Microsoft Azure blob object storage system -// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8 +// +build !plan9,!solaris,go1.8 package azureblob diff --git a/backend/azureblob/azureblob_internal_test.go b/backend/azureblob/azureblob_internal_test.go index 017f27d12..849d08f08 100644 --- a/backend/azureblob/azureblob_internal_test.go +++ b/backend/azureblob/azureblob_internal_test.go @@ -1,4 +1,4 @@ -// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8 +// +build !plan9,!solaris,go1.8 package azureblob diff --git a/backend/azureblob/azureblob_test.go b/backend/azureblob/azureblob_test.go index dcfd898c7..d676f5384 100644 --- a/backend/azureblob/azureblob_test.go +++ b/backend/azureblob/azureblob_test.go @@ -1,6 +1,6 @@ // Test AzureBlob filesystem interface -// +build !freebsd,!netbsd,!openbsd,!plan9,!solaris,go1.8 +// +build !plan9,!solaris,go1.8 package azureblob diff --git a/backend/azureblob/azureblob_unsupported.go b/backend/azureblob/azureblob_unsupported.go index 54947980c..350bc2eaa 100644 --- a/backend/azureblob/azureblob_unsupported.go +++ b/backend/azureblob/azureblob_unsupported.go @@ -1,6 +1,6 @@ // Build for azureblob for unsupported platforms to stop go complaining // about "no buildable Go source files " -// +build freebsd netbsd openbsd plan9 solaris !go1.8 +// +build plan9 solaris !go1.8 package azureblob