diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-04-29 17:53:53 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-04-29 17:53:53 +0000 |
commit | 99e5f0cee127e4feeb4b6dbeea08725e4a94a39a (patch) | |
tree | 429ae53fa6653379bcdef68fd2b723ccb70fcaf8 /libgo | |
parent | a88fdc2ac3e9fb02fc1efd68dd8d40123b7ce4e3 (diff) | |
download | gcc-99e5f0cee127e4feeb4b6dbeea08725e4a94a39a.tar.gz |
libgo http/cgi: Pass down environment variables for irix and solaris.
From-SVN: r173181
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/http/cgi/host.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgo/go/http/cgi/host.go b/libgo/go/http/cgi/host.go index af082e1a7ec..862acb6000e 100644 --- a/libgo/go/http/cgi/host.go +++ b/libgo/go/http/cgi/host.go @@ -36,7 +36,9 @@ var osDefaultInheritEnv = map[string][]string{ "darwin": []string{"DYLD_LIBRARY_PATH"}, "freebsd": []string{"LD_LIBRARY_PATH"}, "hpux": []string{"LD_LIBRARY_PATH", "SHLIB_PATH"}, + "irix": []string{"LD_LIBRARY_PATH", "LD_LIBRARYN32_PATH", "LD_LIBRARY64_PATH"}, "linux": []string{"LD_LIBRARY_PATH"}, + "solaris": []string{"LD_LIBRARY_PATH", "LD_LIBRARY_PATH_32", "LD_LIBRARY_PATH_64"}, "windows": []string{"SystemRoot", "COMSPEC", "PATHEXT", "WINDIR"}, } |