From 812981d95d3d4a98a81c89167a26d5d69248787d Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 7 Dec 2016 16:16:30 -0500 Subject: [PATCH] vis: switch to the golang vis by default and have the C vis()/unvis() available as a 'cvis' build tag. Signed-off-by: Vincent Batts --- unvis_c.go | 2 +- unvis_go.go | 2 +- vis_c.go | 2 +- vis_go.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/unvis_c.go b/unvis_c.go index bffad64..ac421f1 100644 --- a/unvis_c.go +++ b/unvis_c.go @@ -1,4 +1,4 @@ -// +build cgo,!govis +// +build cgo,cvis package mtree diff --git a/unvis_go.go b/unvis_go.go index 5827241..e504f65 100644 --- a/unvis_go.go +++ b/unvis_go.go @@ -1,4 +1,4 @@ -// +build !cgo govis +// +build !cvis package mtree diff --git a/vis_c.go b/vis_c.go index a648cf4..5024356 100644 --- a/vis_c.go +++ b/vis_c.go @@ -1,4 +1,4 @@ -// +build cgo,!govis +// +build cgo,cvis package mtree diff --git a/vis_go.go b/vis_go.go index 9c1f28e..a914693 100644 --- a/vis_go.go +++ b/vis_go.go @@ -1,4 +1,4 @@ -// +build !cgo govis +// +build !cvis package mtree