Hello bradfitz (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
LGTM if you say so. :-) On Fri, Apr 29, 2011 at 9:50 AM, <iant@golang.org> wrote: > Reviewers: bradfitz, > > Message: > Hello bradfitz (cc: golang-dev@googlegroups.com), > > I'd like you to review this change to > https://go.googlecode.com/hg/ > > > Description: > http/cgi: pass down environment variables for irix and solaris > > Used by gccgo. > > Please review this at http://codereview.appspot.com/4435080/ > > Affected files: > M src/pkg/http/cgi/host.go > > > Index: src/pkg/http/cgi/host.go > =================================================================== > --- a/src/pkg/http/cgi/host.go > +++ b/src/pkg/http/cgi/host.go > @@ -36,7 +36,9 @@ > "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"}, > } > > > >
*** Submitted as http://code.google.com/p/go/source/detail?r=d50e3bcf20e4 *** http/cgi: pass down environment variables for irix and solaris Used by gccgo. R=bradfitz CC=golang-dev http://codereview.appspot.com/4435080