http://bugs.winehq.org/show_bug.cgi?id=22067
Summary: paleoreconstruction software c2
Product: Wine
Version: unspecified
Platform: All
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincentberthon(a)gmail.com
I don't know exactly what I have to say there...
I work on mac os 10.5 and I use winebottler and wine. I want to use the windows
xp software "c2"
When I run "c2", all seems ok : the software appears on the screen but when I
just clic on a command a message appear from wine saying that "c2" got a
serious problem... i don't how to translate it from french...
could you help me ?
you can find the software on :
http://www.staff.ncl.ac.uk/staff/stephen.juggins/software.htm
it's the first one.
"c2" is free and very light
many thanks
regards
vincent
--
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=36876
Bug ID: 36876
Summary: Incorrect check for bad points in draw_poly()
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: maksqwe1(a)ukr.net
graphics.c 1751
if((i + 2 >= count)
|| !(types[i + 1] & PathPointTypeBezier)
|| !(types[i + 1] & PathPointTypeBezier)) {
I think should be:
if((i + 2 >= count)
|| !(types[i + 1] & PathPointTypeBezier)
|| !(types[i + 2] & PathPointTypeBezier)) {
--
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.
https://bugs.winehq.org/show_bug.cgi?id=36422
Bug ID: 36422
Summary: valgrind shows several possible leaks in
qcap/tests/qcap.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==25903== 28 bytes in 1 blocks are possibly lost in loss record 174 of 618
==25903== at 0x7BC50A9B: RtlAllocateHeap (heap.c:255)
==25903== by 0x52FCBB8: apartment_getclassobject (compobj.c:526)
==25903== by 0x52FFFC6: get_inproc_class_object (compobj.c:2894)
==25903== by 0x5302D2F: CoGetClassObject (compobj.c:3032)
==25903== by 0x53034B7: CoCreateInstance (compobj.c:3197)
==25903== by 0x4D577C2: test_smart_tee_filter (qcap.c:108)
==25903== by 0x4D5BF82: func_qcap (qcap.c:2088)
==25903== by 0x4D5D4AC: run_test (test.h:584)
==25903== by 0x4D5D89A: main (test.h:654)
==25903==
--
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=34750
Bug #: 34750
Summary: Eleusis Demo some landscape parts are black rendered
Product: Wine
Version: 1.7.4
Platform: x86
URL: http://www.gamershell.com/download_99777.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 46329
--> http://bugs.winehq.org/attachment.cgi?id=46329
screenshot
See attached screenshot.
--
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=36032
Bug ID: 36032
Summary: Colin McRea Rally 2005 - graphic glitches on second
run/carrier mode
Product: Wine
Version: 1.7.6
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: f.platte(a)platte-web.de
Created attachment 48184
--> http://bugs.winehq.org/attachment.cgi?id=48184
Screenshots to show the issue (jpg)
Colin McRea Rally 2005 nearly works perfectly with wine.
Still there is a wired issue: May be related to, but still distinguishes from
bug 14988 (http://bugs.winehq.org/show_bug.cgi?id=14988)
After launching it works "normally" (like it's supposed to do), and if you
enter a time trial race everything runs smooth and graphics is rendered nicely.
After the race is finished and you get back to the main menu/you directly enter
carrier mode after launch glitches appear and the frame-rate drops
significantly (like one, up to two thirds). The menus background animation now
draws big triangular figures and when entering a race/the car-park non-static
elements (shadows, moving banners/plants (in the wind) and similar object are
rendered in a white tint. Reflection does not work anymore, either.
This is related to ANY wine version colin mcrea works with.
Only exception so far is a custom compiled CrossOver 12.1.2 engine, while it's
broken again with CrossOver 12.5/13.X. I couldn't build 12.2.X.
--
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=32234
Bug #: 32234
Summary: Missing dependencies on static / import libraries
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
strmbase is a static library which is used by amstream, qcap, quartz and
others. This means functions defined in strmbase end up being included
in amstream.dll.so and other places.
However modifying the strmbase code does not result in a relink of the
dlls that depend on it. Note that this is true even if running make from
the top-level directory. That makes it very painful to work with it.
The same issue could happen with other static libraries like
dxguid, uuid, etc, though those don't contain code and have little
reason to change so that that's probably why the problem did not surface
until now. This could also happen with import libraries though again the impact
tends to be minimal (or at least manifest itself with a build error).
See also the discussion on wine-devel:
http://www.winehq.org/pipermail/wine-devel/2012-November/097792.html
--
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=37018
Bug ID: 37018
Summary: Viber : Crash when trying to make a video call. New
Wine installation only with new Viber
Product: Wine
Version: 1.4.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hsh.manbw(a)gmail.com
Created attachment 49186
--> http://bugs.winehq.org/attachment.cgi?id=49186
Crash log
I have just installed Wine from the Program administration menu.
After this I installed Viber for Windows as I have only a 32 bit system.
My PC is an ACER ONE model KAV60
Writing Viber message is working fine.
/ Henning
--
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=35716
Bug ID: 35716
Summary: File not found although file-select window shows file.
Product: Wine
Version: 1.7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: bgoodwin91006(a)yahoo.com
Application 'Oblivion Mod Manager' cannot find the archive manager provided
(installed) along with the app. It posts the following message in it's
crashlog;
Error message: ApplicationName='obmm\7za.exe', CommandLine='x
"C:\users\bob\Desktop\Animated-Lighting\Animated Window Lighting System
v5-5-4-19628.7z" * -o"C:\users\bob\Temp\obmm\0\" -aos -y -r',
CurrentDirectory='', Native error= File not found.
The 'file not found' refers to the file obmm/7za.exe
With a bash shell in the same directory as Oblivion Mod Manager, I issued the
same command and got the same result;
COMMAND LINE ENTRY
wine obmm\7za.exe 'x "C:\users\bob\Desktop\Animated-Lighting\Animated Window
Lighting System v5-5-4-19628.7z" * -o"C:\users\bob\Temp\obmm\0\" -aos -y -r',
CurrentDirectory=''
RESULT
wine: cannot find L"C:\\windows\\system32\\obmm7za.exe"
The directory structures involved are;
Oblivion Mod Manager;
/home/bob/.wine/drive_c/Program Files (x86)/Bethesda
Softworks/Oblivion/OblivionModManager.exe
7za.exe;
/home/bob/.wine/drive_c/Program Files (x86)/Bethesda
Softworks/Oblivion/obmm/7za.exe
This application has worked correctly in the past.
--
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=34607
Bug #: 34607
Summary: When quitting the first area in Oddworld Munch's
Oddysee CD, the game crashes
Product: Wine
Version: 1.7.2
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-dmusic
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
Created attachment 46109
--> http://bugs.winehq.org/attachment.cgi?id=46109
OMO log+error
When quitting the first area, through the large gate, the game crashes.
Installing directmusic fixes the problem. No demo for this game. This
is Oddboxx CD version not Steam.
Tested with:
Windows Vista (without Wine), GeForce 9600M GS--the program works fine here
Ubuntu 13.04, GeForce 9600M GS (NVIDIA driver 313)
Mac OS X 10.7.5, ATI HD 2600 Pro, Mac Driver/X11
--
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.