> What is your windows OS? I may be able to Vbox/VM it to test.

WinXP 64 bit.

The following altered function from 
indra\lib\python\indra\util\test_win32_manifest.py
fixes the issues for me.

def find_vc_dir():
    supported_versions = (r'8.0', r'9.0')
    supported_products = (r'VisualStudio', r'VCExpress')
    value_str = (r'ProductDir')

    for product in supported_products:
        for version in supported_versions:
            key_str = (r'SOFTWARE\Microsoft\%s\%s\Setup\VC' %
                      (product, version))
            try:
                return get_HKLM_registry_value(key_str, value_str)
            except WindowsError, err:
                if product == "VisualStudio":
                    reg_key = "VS"
                elif product == "VCExpress":
                    reg_key = "VC"
                else:
                    raise Exception("Unknown package!")

                x64_key_str = (r'SOFTWARE\Wow6432Node\Microsoft\%s\%s\Setup\%s' 
%
                    (product, version, reg_key))

                try:
                    return get_HKLM_registry_value(x64_key_str, value_str)
                except:
                    print >> sys.stderr, "Didn't find MS %s version %s " % 
(product,version)

    raise


> ________________________________
> From: Ima Mechanique <ima.mechani...@blueyonder.co.uk>
> To: opensource-dev@lists.secondlife.com
> Sent: Sun, February 6, 2011 1:15:31 PM
> Subject: Re: [opensource-dev] Review Request: Make viewer-autobuild work 
> under 
> Visual Studio 2005 Express Edition.
> 
> > I'm getting dozens of these errors
> > 
> > fatal error C1083: Cannot open include file: 'winsock2.h': No such file or 
> >directory
> > 
> > and
> > 
> > fatal error C1083: Cannot open include file: 'windows.h': No such file or 
> >directory
> > 
> > Seems that it is not using the Include directories list.
> 
> Just to clarify. These errors are only generated when using "autobuild
> build -c VCexpressRelWithDebInfo" If using the MSVC Express gui it
> builds with only the usual niggles (like failing on x64 because it can't
> find a directory)
> 
> 
> --
> Ima Mechanique
> ima.mechanique(at)blueyonder.co.uk
> 
> 
> _______________________________________________
> Policies and (un)subscribe information available here:
> http://wiki.secondlife.com/wiki/OpenSource-Dev
> Please read the policies before posting to keep unmoderated posting privileges
> 
> 
> 
>       

--
Ima Mechanique
ima.mechanique(at)blueyonder.co.uk


_______________________________________________
Policies and (un)subscribe information available here:
http://wiki.secondlife.com/wiki/OpenSource-Dev
Please read the policies before posting to keep unmoderated posting privileges

Reply via email to