Re: Next big app(s) to try?

2008-02-17 Thread Jaap Stolk
On Feb 17, 2008 11:57 AM, Pau Garcia i Quiles [EMAIL PROTECTED] wrote: AutoCAD, please I spend a lot of time trying to get autocad (2004) to run on Wine. There where some small problems like registry things and with Internet Explorer dependencies, but those where easy to solve. The big problem

Re: Debugging solidworks 2006

2006-11-15 Thread Jaap Stolk
On 11/15/06, Kartik Thakore [EMAIL PROTECTED] wrote: After doing the suggested tactis it still failed but with fewer errors: Did you already setup a bug number for this? what number? It would be best to attach log outputs to the bug report. Doesn't Solidworks use the (Macromedia) Safecast

Re: advertising on winehq

2006-10-24 Thread Jaap Stolk
On 10/24/06, Tom Wickline [EMAIL PROTECTED] wrote: Hmm, I wonder how many people mistakenly visit our front page looking for Wine ? winehq is the second result for wine in google. We can even increase this if we would be a bit more creative when thinking up new variable names in the code :-)

Re: Half-Life 2 Episode 1

2006-10-22 Thread Jaap Stolk
developers use gmail, I'd like to mention that in my case this mail ended up in my spam box. (but was correctly labeled as wine related...) Hopefully this replay does go through :-) Jaap Stolk.

Re: Wine and Photoshop in news

2006-08-01 Thread Jaap Stolk
On 8/1/06, Vijay Kiran Kamuju [EMAIL PROTECTED] wrote: business05_aug01_2006 with the latest beta version being 0.9.8 is this a re-print or something?

Re: [Tools/Wine.inf] Set Internet Explorer version

2006-06-29 Thread Jaap Stolk
Does this also update the version of the (fake) shdocvw.dll in wine ? At least AutoCad 2004 checks the version info of the file.

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-24 Thread Jaap Stolk
On 6/24/06, Vitaliy Margolen [EMAIL PROTECTED] wrote: You can ignore tag altogether. It's only enabled with a special registry key (on windows). And drivers have no way nor need to verify the tag. So I think you can just remove that trace. I will need to think something to stop of from crashing.

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-24 Thread Jaap Stolk
On 6/24/06, Jaap Stolk [EMAIL PROTECTED] wrote: here is the log after remofing the tag altogether: (I had to ctrl-c wine, autocad did not shutdown by itself, so I think things are improving.) $ grep -i ':ntoskrnl:' all_log_no_tag.txt 000f:trace:ntoskrnl:ExAllocatePoolWithTag (1 16 tag), semi

Re: indented relay traces

2006-06-24 Thread Jaap Stolk
On 6/24/06, James Hawkins [EMAIL PROTECTED] wrote: Ah, didn't know about that tool. You learn something new every day. didn't know about that tool too. sounds interesting. usually I do something like: // reduce log size: egrep -v

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-24 Thread Jaap Stolk
found another one :-) I reconstructed the debug output mixed with the wine log: Unhandled exception: page fault on read access to 0x in 32-bit code (0x4062de4e). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:003b GS:0033 EIP:4062de4e

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-24 Thread Jaap Stolk
On 6/24/06, Jaap Stolk [EMAIL PROTECTED] wrote: So the problem is somewhere in load_driver( ). Is there a way to narrow it down a bit more? using objdump I got a bit closer. (note that the exact error address my not be consistent, because I added some more trace functions to the code while

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-24 Thread Jaap Stolk
On 6/25/06, Vitaliy Margolen [EMAIL PROTECTED] wrote: It's pretty hard to see what you doing from this pastes. Do you have time to join one of the Wine's IRC channels? never used that before. I seem to have x-chat. where do i find the correct channel ?

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-24 Thread Jaap Stolk
On 6/25/06, Ivan Leo Puoti [EMAIL PROTECTED] wrote: Jaap Stolk wrote: from what I could google, code=c096 means that a privileged instruction was found. This is to be expected. DispatchDeviceControl is the function in the driver which handles the IO for the kernel (in this case our fake

Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Jaap Stolk
I'm trying to run Autocad 2004. (installation from cd works) current status: (/blog) http://wiki.jswindle.com/index.php/AutoCad#Forum_Comments It starts a long way, and wine seems to handle the usual CreateFileA(.\\NTICE) and IsDebuggerPresent() properly, and it generates and runs some

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Jaap Stolk
I think i found the cause further up in the log. 178591:000f:Starting process Lc:\\windows\\system32\\ntoskrnl.exe ... 178596:wine_dbg_vprintf: debugstr buffer overflow (contents: '000f:trace:ntoskrnl:ExAllocatePoolWithTag (0 20 ') 178597:000f:trace:seh:raise_exception code=8101 flags=1

Re: Autocad 2004 STATUS_INVALID_LDT_OFFSET

2006-06-23 Thread Jaap Stolk
ExAllocatePoolWithTag( ) function in the file ntoskrnl_api.c : I changed: WINE_TRACE((%d %ld %.4s), semi-stub\n, PoolType, NumberOfBytes, (char*)Tag); to: WINE_TRACE((%d %ld %4s), semi-stub\n, PoolType, NumberOfBytes, (char*)Tag); Don't know how decimals are supposed to work with a string, but

Re: ntoskrnl status

2006-06-20 Thread Jaap Stolk
Thanks for the tutorial Saulius. (I'm new to git) It's all compiled now. Just to summarize: (with your enhancements) # (after completing: http://wiki.winehq.org/GitWine ) # rename/extract patch: $ cd wine-git $ mv origin_sd1.diff-0001.obj origin_sd1.diff.bz2 $ bunzip2 --keep origin_sd1.diff.bz2

Re: ntoskrnl status

2006-06-20 Thread Jaap Stolk
On 6/20/06, Jaap Stolk [EMAIL PROTECTED] wrote: snip I noticed that the typical make install is missing. I ran ./wine-git/programs/winecfg/winecfg and it seems to work ok. Found some more info about this in an old Wine newsletter: http://www.winehq.com/?issue=269#Speeding%20Up%20Builds

Re: ntoskrnl status

2006-06-19 Thread Jaap Stolk
I also would like to try the ntoskrnl.exe patch. I uninstalled and deleted my cvs wine, updated python and installed git, and completed Cloning the Wine GIT repository. I had a little peek at the patch by renaming it to .bz2, but how do I add this patch to to my local wine copy, using git ?

Re: acad 2004 license file bug

2006-06-18 Thread Jaap Stolk
update: I'm trying to install autoCad 2004. Without winetools I got an error message about IE6 not being found. adding the Software\\Microsoft\\Internet Explorer\Version=6.0.2900.2180 registry key (suggested by Dan Kegel) resulted in a similar error further on in the installation process. I'm

Re: acad 2004 license file bug

2006-06-18 Thread Jaap Stolk
On 6/18/06, Vitaliy Margolen [EMAIL PROTECTED] wrote: Sunday, June 18, 2006, 5:36:42 AM, Jaap Stolk wrote: Now, my question is: how can i set the version of the buildin SHDOCVW.DLL ? And would MSI actually return the version of the buildin dll ? You need to use latest Wine version that creates

Re: acad 2004 license file bug

2006-06-18 Thread Jaap Stolk
autocad 2004 update: (install sort-of completed) Internet Explorer 6: (resolved) -add registry key -change version of fake SHDOCVW.DLL to 6.0 or replace with native 6.0. EULA not found error: (bug 3226) (workaround) -the path to the file is not constructed correctly (not a full path) -copy eula

Re: awwww

2006-06-10 Thread Jaap Stolk
On 6/10/06, Vitaliy Margolen [EMAIL PROTECTED] wrote: How about some newer copy protection systems that Wine could support I was wondering about that. I'm trying to run autocad 2004. (It's more an example to debug wine, I don't really need it) When run, it generates a temporary DLL, which in

Re: acad 2004 license file bug

2006-06-06 Thread Jaap Stolk
On 6/6/06, Mike Hearn [EMAIL PROTECTED] wrote: Mike doesn't have AutoCad so it may not be fixed. The problem must lie elsewhere. Native MSI can be installed if you use Win98 mode, or you could try debugging Wines own MSI implementation. I don't think autocad 2004 runs in win98, and I would

Re: acad 2004 license file bug

2006-06-05 Thread Jaap Stolk
On 6/5/06, Dan Kegel [EMAIL PROTECTED] wrote: Don't use winetools, please. As you noticed, it does bad things to your ~/.wine. Ok. removed winetools and build a new ~/.wine/ (can wine fake internet explorer, so i don't need to install the real thing?) Yes. Here's what I do: # Fake IE per

acad 2004 license file bug

2006-06-04 Thread Jaap Stolk
Hi, I'm new to wine, but I have used the wine source in the past as unofficial windows api documentation, to write decompilers etc. I would like to thank all the developers, I'm very impressed! I'm trying to install/run autocad 2004, or at least see where possible problems are. I first