diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-02-01 21:57:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2019-02-01 21:57:36 +0000 |
commit | 27d6b510718292a5852f4d4f0d449723a369edfb (patch) | |
tree | 70524ac9f75088c6909f9f6dd40957c9361101e3 /libgo/go/time | |
parent | b52a3881f04799d410f7ec70d022179c8d734459 (diff) | |
download | gcc-27d6b510718292a5852f4d4f0d449723a369edfb.zip gcc-27d6b510718292a5852f4d4f0d449723a369edfb.tar.gz gcc-27d6b510718292a5852f4d4f0d449723a369edfb.tar.bz2 |
libgo: add hurd build tags
Patch by Svante Signell.
Reviewed-on: https://go-review.googlesource.com/c/160822
From-SVN: r268459
Diffstat (limited to 'libgo/go/time')
-rw-r--r-- | libgo/go/time/sys_unix.go | 2 | ||||
-rw-r--r-- | libgo/go/time/zoneinfo_unix.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/time/sys_unix.go b/libgo/go/time/sys_unix.go index f4756b1..3af2288 100644 --- a/libgo/go/time/sys_unix.go +++ b/libgo/go/time/sys_unix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build aix darwin dragonfly freebsd js,wasm linux nacl netbsd openbsd solaris +// +build aix darwin dragonfly freebsd hurd js,wasm linux nacl netbsd openbsd solaris package time diff --git a/libgo/go/time/zoneinfo_unix.go b/libgo/go/time/zoneinfo_unix.go index fca8e54..495a7e6 100644 --- a/libgo/go/time/zoneinfo_unix.go +++ b/libgo/go/time/zoneinfo_unix.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build aix darwin,386 darwin,amd64 dragonfly freebsd js,wasm linux,!android nacl netbsd openbsd solaris +// +build aix darwin,386 darwin,amd64 dragonfly freebsd hurd js,wasm linux,!android nacl netbsd openbsd solaris // Parse "zoneinfo" time zone file. // This is a fairly standard file format used on OS X, Linux, BSD, Sun, and others. |