http://bugs.winehq.org/show_bug.cgi?id=19912
Summary: gyp fails its test suite, can't build hello, world
with Visual C++ 8's devenv.exe
Product: Wine
Version: 1.1.28
Platform: PC
URL: http://code.google.com/p/gyp/wiki/GypTesting
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
gyp is the makefile generator written for Chromium.
(It's kind of like cmake, but is pure python.)
It comes with a small test that makes sure it
can build a working trivial C program using Visual C++.
Sadly, this fails at the moment.
Here's what I tried:
$ cd ~/.wine/drive_c
$ svn checkout http://gyp.googlecode.com/svn/trunk/ gyp-read-only
$ wget http://winezeug.googlecode.com/svn/trunk/winetricks
$ sh winetricks vc2005trial
$ sh winetricks python
$ wine cmd
> cd \Program*
> cd Microsoft*8
> cd Common7\Tools
> vsvars32.bat
> cd c:\gyp-read-only
> c:\python26\python gyptest.py test\hello\gyptest-all.py
This failed at first with
File not found
because Python wasn't on the path; worked around this with
PATH C:\Python26;%PATH%
Rerunning
> c:\python26\python gyptest.py test\hello\gyptest-all.py
then failed with something more interesting:
File "C:\gyp-read-only\pylib\gyp\generator\msvs.py", line 538, in
_GenerateProject
vcuser_filename = '.'.join([vcproj_filename, domain, username, 'user'])
TypeError: sequence item 1: expected string, NoneType found
Looking at the code, here's what's failing:
domain = os.environ.get('USERDOMAIN')
username = os.environ.get('USERNAME')
if not domain or not username:
call = subprocess.Popen(['net', 'config', 'Workstation'],
stdout=subprocess.PIPE)
config = call.communicate()[0]
username_re = re.compile('^User name\s+(\S+)', re.MULTILINE)
username_match = username_re.search(config)
if username_match:
username = username_match.group(1)
domain_re = re.compile('^Logon domain\s+(\S+)', re.MULTILINE)
domain_match = domain_re.search(config)
if domain_match:
domain = domain_match.group(1)
So I guess our "net" implementation is lacking. Worked around this
with
SET USERNAME=dank
SET USERDOMAIN=kegel.com
That got a bit further:
> python.exe test\hello\gyptest-all.py
produced lines like this (duplicate-ish lines removed):
fixme:ole:CoInitializeSecurity (0x33f948,-1,(nil),(nil),0,0,(nil),8,(nil)) -
stub!
err:ole:TLB_ReadTypeLib Loading of typelib L"C:\\Programme\\Microsoft Visual
Studio 8\\Common7\\IDE\\dte80a.olb" failed with error
2
err:ole:CoGetClassObject class {48443b3b-c1e3-449f-9988-4bfb510951d5} not
registered
err:ole:CoGetClassObject no class object {5a673b91-a6dc-431d-8758-a53aa4189057}
could be created for context 0x17
err:ole:CoGetClassObject no class object {2a811bb2-303b-48b8-82c2-e029a22c3ef2}
could be created for context 0x17
fixme:shell:URL_ParseUrl failed to parse L"Microsoft.VisualStudio.CommonIDE"
...
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
apartment threaded to multi-threaded
fixme:ole:CoGetCallerTID stub!
fixme:advapi:LookupAccountNameW (null) L"lappy\\dank" 0xa0adb58 0xa0adac4
0x8e5bf8 0xa0adabc 0xa0adcf8 - stub
fixme:ntdll:NtCreateJobObject stub: 0xa0ae408 1f001f <null>
fixme:ntdll:NtIsProcessInJob stub: (nil) 0xffffffff
fixme:ntdll:NtAssignProcessToJobObject stub: 0xdead 0x378
and then just sat there.
(Kinda reminds me of http://bugs.winehq.org/show_bug.cgi?id=17096#c2 )
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8025
--- Comment #36 from djw <winehq(a)djw.org.uk> 2010-01-11 15:04:34 ---
(In reply to comment #35)
>
> I tired running my system with one CPU, which the problem still occurred. Then
> still with one CPU I reniced the steam.exe and hf2.exe processes to -10, this
> still would freeze. A renice to -15 appeared to be stable and ran for several
> hours without a problem. I'm about to test with two CPUs and renice -15.
2 CPUs is okay, although I forgot to add that I run with -dxlevel=80 and with
the renice.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20475
Summary: Photoshop CS2: Can't switch from fixed ratio to free
size in image size dialog
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Linux571(a)gmail.com
When I click the image with the chain to set my own size nothing change.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=8232
Dmitry Timoshkov <dmitry(a)codeweavers.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #31 from Dmitry Timoshkov <dmitry(a)codeweavers.com> 2010-01-11 13:37:47 ---
Reported fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17942
Summary: The 7-zip filemanger shows always dotted files
Product: Wine
Version: 1.1.18
Platform: PC-x86-64
URL: http://www.7-zip.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: newsletter(a)Schiermeier-Software.de
Created an attachment (id=20281)
--> (http://bugs.winehq.org/attachment.cgi?id=20281)
Screenshot of 7-zip and beside winecfg
Hello!
The 7-zip file archiver shows in his internal filemanager always the dotted
files. (Files which beginns with a dot - normaly not visible in *ix).
In the winecfg I switch the view to never 'Show dot files', but in 7zig is
always visible.
I don't know if this is a bug or a feature - either of wine or of 7z. I use the
version 4.59 beta of 7-zip.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=5436
--- Comment #21 from Georg Wolff <boeser.wolff(a)web.de> 2010-01-11 11:50:48 ---
In reply to "six month reminder":
Yes, still get the "Unexpected Error... please reinstall".
Wine version 1.1.36.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21305
Summary: World of Warcraft (Wow) crashes in d3d mode
Product: Wine
Version: 1.1.36
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dmbohdan(a)gmail.com
Created an attachment (id=25639)
--> (http://bugs.winehq.org/attachment.cgi?id=25639)
console output
I try to start Wow in d3d mode and it crashes.
I didn't use winetricks for d3d libs.
In opengl mode it works.
Video ATI Mobility X2300, fglrx 9.3
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=3844
Dmitry Timoshkov <dmitry(a)codeweavers.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
Resolution|WORKSFORME |FIXED
--- Comment #3 from Dmitry Timoshkov <dmitry(a)codeweavers.com> 2010-01-11 10:38:03 ---
Fixed then. Closing.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21026
Summary: Office 2000 (Word) won't working with wine 1.1.33
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alankoon(a)gmail.com
Office 2000 will not run correctly in new version. All components had affected
I tried to put a word in MS word , programme freezes and cannot working.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=881
scyt4l3(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |scyt4l3(a)gmail.com
--- Comment #64 from scyt4l3(a)gmail.com 2010-01-11 08:47:55 ---
Maybe you are not referring to this as a cursor not blanked. My problem is that
the cursor "blinks". I only see the cursor of the game but it's not steady,
it's blinking.
I'm using Icewind Dale 2 (2.01, unofficial patch) with Wine 1.1.31 (I checked
the what's new of the 1.1.36 and there's nothing related to this) and with
Gnome 2.28.1
Am I confused or this bug isn't really closed?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.