]> go.fuhry.dev Git - fsnotify.git/commitdiff
Don't build on Plan 9 or Solaris (thanks @4ad)
authorNathan Youngman <git@nathany.com>
Sun, 29 Jun 2014 00:54:10 +0000 (18:54 -0600)
committerNathan Youngman <git@nathany.com>
Sun, 29 Jun 2014 00:54:10 +0000 (18:54 -0600)
https://codereview.appspot.com/108110046

example_test.go
fsnotify.go
fsnotify_test.go

index c04911376c8e06e1e5d09fa97ce0d263453d8efa..5b420ccb3209856b9ec41bf1964349027aed6113 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build !plan9,!solaris
+
 package fsnotify_test
 
 import (
index b097521ada57bc98c5d01ac5384b566a6b3f3852..b1bc573097954ff4dc4b97cbd1c970d55f1facb6 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build !plan9,!solaris
+
 // Package fsnotify implements file system notification.
 package fsnotify
 
index 6436561b4f9e35f643b413b7869ffc78108c8c2a..1361071d16c69ac9f864fcbbe06f373ccd0d666a 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build !plan9,!solaris
+
 package fsnotify
 
 import (