aboutsummaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2011-04-29 17:53:53 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2011-04-29 17:53:53 +0000
commit99e5f0cee127e4feeb4b6dbeea08725e4a94a39a (patch)
tree429ae53fa6653379bcdef68fd2b723ccb70fcaf8 /libgo
parenta88fdc2ac3e9fb02fc1efd68dd8d40123b7ce4e3 (diff)
downloadgcc-99e5f0cee127e4feeb4b6dbeea08725e4a94a39a.zip
gcc-99e5f0cee127e4feeb4b6dbeea08725e4a94a39a.tar.gz
gcc-99e5f0cee127e4feeb4b6dbeea08725e4a94a39a.tar.bz2
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.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libgo/go/http/cgi/host.go b/libgo/go/http/cgi/host.go
index af082e1..862acb6 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"},
}