From 411f75aadf4462d30259c410028b9ecaab10a3d5 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 26 Nov 2018 08:32:58 +0000 Subject: [PATCH] azureblob: enable on freebsd, netbsd, openbsd At some point the SDK was fixed on these architectures, so re-enable building the azure blob backend for them. --- 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