diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-11 21:25:42 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-11 21:25:42 +0000 |
commit | 7ec6ec03e2dc34882d54168b08a50b482d640540 (patch) | |
tree | a470cdd04f64276bd47a99e4dd2a6f25afeee4ae /libgo/Makefile.am | |
parent | af06d5b48b40d093cc5771b2f2edaa82ba3b7fd7 (diff) | |
download | gcc-7ec6ec03e2dc34882d54168b08a50b482d640540.tar.gz |
net: Fix TCP keepalive handling for Solaris.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204688 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/Makefile.am')
-rw-r--r-- | libgo/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libgo/Makefile.am b/libgo/Makefile.am index 9a8a1b45530..5a0c9d78bf3 100644 --- a/libgo/Makefile.am +++ b/libgo/Makefile.am @@ -770,9 +770,13 @@ else if LIBGO_IS_DARWIN go_net_tcpsockopt_file = go/net/tcpsockopt_darwin.go else +if LIBGO_IS_SOLARIS +go_net_tcpsockopt_file = go/net/tcpsockopt_solaris.go +else go_net_tcpsockopt_file = go/net/tcpsockopt_unix.go endif endif +endif go_net_files = \ go/net/cgo_unix.go \ |