http://bugs.winehq.org/show_bug.cgi?id=10638
Summary: winegcc: gcc failed
Product: Wine
Version: 0.9.49.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: manish.iitm(a)yahoo.co.in
Created an attachment (id=9448)
--> (http://bugs.winehq.org/attachment.cgi?id=9448)
The attachment is the config.log file generated by wine while configuring.
While compiling the wine-0.9.49 I am getting these error.
Please help me to resolve these error's.
-------------------------------------------
winegcc: gcc failed
make[2]: *** [winex11.drv.so] Error 2
make[2]: Leaving directory
`/home/manish/Desktop/Download/wine-0.9.49/dlls/winex11.drv'
make[1]: *** [winex11.drv] Error 2
make[1]: Leaving directory
`/home/manish/Desktop/Download/wine-0.9.49/dlls'
make: *** [dlls] Error 2
--------------------------------------------------
But, by the way my gcc version is gcc-3.4.4.
And my operating system is "Red Hat Enterprise Linux WS release 4 (Nahant
Update 2)".
Also I have attach the config.log file.
Thanking in anticipation.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13648
Summary: Dogfood: Microsoft Office 97 Professional Installler
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mandriva-andreas(a)web.de
Created an attachment (id=13630)
--> (http://bugs.winehq.org/attachment.cgi?id=13630)
The console output of the installer
The installer starts quite normal but at the end it says:
"Accwiz.dll war nicht in der Lage, sich bei der Systemregistrierung zu
registrieren."
That means Accwiz.dll was not able to register itself at the registry.
After that the installation stops with the message that Office 97 Installer was
not able to install Office 97 Proffesional correctly.
In the Microsoft Office folder are some files, some of tham executable and
working but the installer did not Install Front Page for which he was requested
to install it.
--
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=12058
Summary: No car engine sounds in TrackMania United
Product: Wine
Version: 0.9.57.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: artur.szymiec(a)gmail.com
The TrackMania United however works great suffer
from missing car engine sounds.
--
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=11751
Summary: Intellicad - endless loop when editing rich text (user32
SendMessageA)
Product: Wine
Version: 0.9.56.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikesg(a)abv.bg
Created an attachment (id=11008)
--> (http://bugs.winehq.org/attachment.cgi?id=11008)
Relay log
When trying to enter rich text in a drawing in 4m - Ingellicad an endless loop
is encountered (CPU stays 98%). See details below. The console output is
attached.
Wine version: wine-0.9.56
OS: OpenSUSE 10.3
Windows: No windows, just a clean wine install
Program: 4M - Intellicad 6 classic. Download demo:
http://www.4msa.com/downloads/SetupICADClassic64_E.exe
Install: wine SetupICADClassic64_E.exe
How to run: I had to copy mfc71.dll,msvcr71.dll and msvcp71.dll from a Win XP
SP2 install into drive_c/ICAD6CLASSIC folder
Command line: wine "C:\ICAD6CLASSIC\icad.exe"
How to reproduce:
Run the program, in welcome dialog click 'Start Evaluation', in program
command line type 'mtext' in command line, drag a rectangle on screen and in
box
that appears type whatever you want (don't worry about black letters on black
background) and click 'OK'. All freezes.
When started with +relay, the following lines appear endlessly:
0009:Call user32.SendMessageA(00000000,00000150,fffffffe,00000000) ret=00585ec5
0009:Ret user32.SendMessageA() retval=00000000 ret=00585ec5
Only difference is that the third parameter decreases with 1 every time it is
displayed.
--
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=10919
Summary: GetLargestConsoleWindowSize() should not return hard
coded constants
Product: Wine
Version: 0.9.51.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: reijo.sund(a)helsinki.fi
Created an attachment (id=9840)
--> (http://bugs.winehq.org/attachment.cgi?id=9840)
sizepro.c - A source demonstrating the problem and a solution in terms of APIs
----------------------------------------------------------------------
MSDN library includes sample code for console applications
(http://msdn2.microsoft.com/en-us/library/aa263818.aspx). The source is
available at: http://www.helsinki.fi/~sund/console_vs6.zip . The source
compiles easily with winelib after --cuiexe transformations with winemaker.
The examples 14 and 32 deal with the GetLargestConsoleWindowSize() function.
The problem is that the current implementation in Wine returns hard coded
constants (X=80, Y=24) for the maximum size. This causes problems for
applications that have followed the conventions of sample code, because
it "prevents" the resizing of console window to bigger than "maximum".
In principle, the window size could be changed manually by using properties
dialog, but that is an "ugly" solution. Another "ugly" solution would be to
change the hard coded constants to bigger values in Wine implementation.
A better solution would be to actually implement the required functionality.
I have attached a source (sizepro.c, compiles with 'winegcc -o sizepro.exe
sizepro.c') that demonstrates the problem and infers the maximum console
window size in relation to current resolution and font.
I also tried to implement the corresponding functionality to Wine, and
attached the source for the improved function (kernel32_console_
getlargestconsolewindowssize.c). That works fine for me, but I'm not sure
whether it follows the conventions of Wine (or how to deal with strange
__i386__ definitions without duplicating the code). So, I wonder if
someone else more familiar with Wine development could check it out
and derive an adequate patch.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14449
Summary: "North American Birds" fails to launch
Product: Wine
Version: 1.1.1
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=12906
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: munchkinguy(a)hotmail.com
Created an attachment (id=14768)
--> (http://bugs.winehq.org/attachment.cgi?id=14768)
Stack dump, register dump, etc
Program CD in inserted. After setting pib.exe to "Windows 3.1" in Wine's
Application settings (the System Requirements say 'Windows 3.1 or higher'), I
type "wine pib.exe" into the Terminal. The program fails to launch and an error
log is given. Please see attached.
--
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=9635
Summary: Dragon Naturally Speaking 8 fails on "spell that"
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://scansoft.com
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
winetricks vcrun6
else ereg fails with 'need mfc42' (but that's ok)
install word viewer 97
else app start fails with "incomplete, need docobj.dll"
winetricks fakeie6
else app start fails with 'ie required'
cd "$HOME/.wine/drive_c/Program Files/ScanSoft/NaturallySpeaking8/Program"
else app complains repeatedly err:module:import_dll Library MSVCR71.dll
(which is needed by L"...\\dd10HOOK.dll") not found, and doesn't work
After all that, it starts up remarkably quickly compared to DNS 7.
It still has one error dialog box on startup that you have to ignore.
Recognition works pretty well, but "spell that" doesn't work;
when you try it, the app puts up a dialog saying "interface not found",
and wine spits out lines like
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{d5f569d0-593b-101a-b569-08002b2dbf7a}
err:ole:CoGetClassObject no class object {b9bd3860-44db-101b-90a8-00aa003e4b50}
could be created for context 0x1
err:ole:proxy_manager_create_ifproxy Could not get IPSFactoryBuffer for
interface {05eb6c68-dbab-11cd-b3ca-00aa0047ba4f}, error 0x80040155
err:ole:CoMarshalInterface Failed to marshal the interface
{d5f569d0-593b-101a-b569-08002b2dbf7a}, 80040155
err:ole:CoGetClassObject no class object {dd108005-6205-11cf-ae61-0000e8a28647}
could be created for context 0x1
(Trying to use native dcom98 quickly fails with
wine: Call from 0x7ee1ef40 to unimplemented function oleacc.dll.GetRoleTextA,
aborting)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9909
Summary: VB6 - CoRegisterMessageFilter
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: stanwell(a)gmx.de
A simple VB6.exe is not working at all, Wine just gives this error message:
"fixme:ole:CoRegisterMessageFilter stub"
Source code:
------------
Module:
-------
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
-------
Private Sub Form_Load()
Clipboard.SetText "test"
Sleep (8000)
End Sub
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9949
Summary: PDF Export does not work in PITy
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: oponek(a)gmail.com
Export to PDF and metafile (EMF) does not work in PITy.
message box (error):
Access violation at address 7E7F6510 in module 'shell32.dll'. Read address
00000000
in console:
err:ole:CoGetClassObject class {00bb2765-6a77-11d0-a535-00c04fd7d062} not
registered
err:ole:CoGetClassObject no class object {00bb2765-6a77-11d0-a535-00c04fd7d062}
could be created for context 0x1
Download link for PITy 2006:
http://pit.dobry.pl/index.php?down=p1
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.