http://bugs.winehq.org/show_bug.cgi?id=16744
Summary: ole32/stg_prop.c: passing argument discards qualifiers
from pointer target type
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_OLE32_
-DCOM_NO_WINDOWS_H -DENTRY_PREFIX=OLE32_ -DPROXY_CLSID=CLSID_PSFactoryBuffer
-DREGISTER_PROXY_DLL -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g
-O2 -o stg_prop.o stg_prop.c
stg_prop.c: In function ‘PropertyStorage_DictionaryWriter’:
stg_prop.c:1514: warning: passing argument 1 of
‘PropertyStorage_ByteSwapString’ discards qualifiers from pointer target
type
stg_prop.c:1516: warning: passing argument 1 of
‘PropertyStorage_ByteSwapString’ discards qualifiers from pointer target
type
--
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=16743
Summary: ntoskrnl.exe: warning: initialization from incompatible
pointer type
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT
-fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement
-Wwrite-strings -Wtype-limits -Wpointer-arith -g -O2 -o ntoskrnl.o ntoskrnl.c
ntoskrnl.c: In function ‘vectored_handler’:
ntoskrnl.c:123: warning: initialization from incompatible pointer type
--
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=16741
Summary: msvcrt/except.c: compiler errors
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: patch, source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
austin@ubuntu-ppc:~/wine-git/dlls/msvcrt$ make
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_MT
-D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g
-O2 -o except.o except.c
except.c: In function ‘_except_handler3’:
except.c:254: warning: format ‘%lx’ expects type ‘long unsigned int’,
but argument 5 has type ‘DWORD’
except.c:254: warning: format ‘%lx’ expects type ‘long unsigned int’,
but argument 6 has type ‘DWORD’
except.c: At top level:
except.c:103: warning: ‘MSVCRT_nested_handler’ defined but not used
MSVCRT_nested_handler probably just needs an ifdef. The format errors are
wrong, but fixing them may break it on other compilers. I'll take a look at
this one later. Filing a bug so I don't forget it, and in case anyone else
wants to fix it instead :-).
--
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=16739
Summary: kernel32/instr.c: initialization from incompatible
pointer type
Product: Wine
Version: 1.1.12
Platform: Macintosh
OS/Version: Linux
Status: NEW
Keywords: patch, source
Severity: minor
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
austin@ubuntu-ppc:~/wine-git/dlls/kernel32$ make
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_KERNEL32_
-D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g
-O2 -o instr.o instr.c
instr.c: In function ‘INSTR_vectored_handler’:
instr.c:882: warning: initialization from incompatible pointer type
Looking at the code, looks x86 specific. Patch below fixes the compiler error,
but this is pretty low level stuff, so I'll wait on comments before sending in.
diff --git a/dlls/kernel32/instr.c b/dlls/kernel32/instr.c
index 73edf7b..398f3ea 100644
--- a/dlls/kernel32/instr.c
+++ b/dlls/kernel32/instr.c
@@ -876,6 +876,7 @@ DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec,
CONTEXT86 *context )
* Vectored exception handler used to emulate protected instructions
* from 32-bit code.
*/
+#ifdef __i386__
LONG CALLBACK INSTR_vectored_handler( EXCEPTION_POINTERS *ptrs )
{
EXCEPTION_RECORD *record = ptrs->ExceptionRecord;
@@ -890,7 +891,7 @@ LONG CALLBACK INSTR_vectored_handler( EXCEPTION_POINTERS
*ptrs )
}
return EXCEPTION_CONTINUE_SEARCH;
}
-
+#endif
/***********************************************************************
* INSTR_CallBuiltinHandler
--
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=15737
Summary: EVE Online only starts with cpu-load after applying
Empryan Age 1.1.2 patch
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ThePsyjo(a)googlemail.com
EVE shows up the splash-screen which disappears after a few seconds when there
is no cpu-load. With load it starts and runs very well.
I configured a separate WINEPREFIX like described in the AppDB.
--
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=12733
Summary: Unrecognized WINED3DFORMAT AL16 and R16
Product: Wine
Version: 0.9.59.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
The adventure game for children "Luka und das geheimnisvolle Silberpferd" hangs
while loading (see appdb), displaying - among others - the following errors.
Unrecognized 909200449 (as fourcc: AL16) WINED3DFORMAT
Unrecognized 909201952 (as fourcc: R16) WINED3DFORMAT
err:d3d:CheckTextureCapability Unhandled format=unrecognized
I don't know whether it is this error which causes the application to hang.
--
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=17768
Summary: 7Zip rebar crash
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabmoa(a)yahoo.it
With 7-Zip if you try to grab and move to right the first toolbar on rebar the
application crash
7-Zip v 4.65
--
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=17911
Summary: Gothic 3: Stripe on the right part of the screen is not
updated in high resolutions
Product: Wine
Version: 1.1.18
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: c_korn(a)gmx.de
Created an attachment (id=20231)
--> (http://bugs.winehq.org/attachment.cgi?id=20231)
wine output (1.1.18)
Hello,
when I set the resolution of Gothic III to 1280x800 (my monitors maximum
resolution) there is a stripe at the right part of the screen that is not
updated. This does not occur in 1024x786 resolution.
Attached is the output of wine.
Note: Gothic 3 requires two helper dlls to start: d3dx9_36.dll and
D3DX9_40.dll.
Also note that the menus like inventory are drawn fine in the right stripe. But
just the background is not updated (also when a menu is opened). I will attach
some screenshots.
About my system:
Ubuntu 8.10 amd64
NVIDIA Quadro NVS 140M
180.44 drivers
--
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=17666
Summary: WinARM make crashes
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mlg7(a)yandex.ru
Due to some mysterious problem with ARM GCC, mismatch in the FP settings that
nobody never specified, I cannot use Linux native arm-elf-gcc.
I found that the WinARM version works under Windows, and therefore,
as almost the last resort (the last one is to use Windows),
tried to compile under Wine. It failed.
The error message looks as:
make: Interrupt/Exception caught (code = 0xc0000005, addr = 0xf7d3f54a)
Importance: Wine was the last workaround I could think out;
I will switch to Windows for development.
Steps to reproduce:
1. Get WinARM-20060606. It is available in a number of places, google gives:
http://winarm.alexthegeek.com/WinARM-20060606.ziphttp://www.siwawi.arubi.uni-kl.de/avr_projects/arm_projects/WinARM-20060606…
Unpack it as C:\WinARM.
2. Get the project: go to olimex.com and find the STR-H711 board page,
get the OpenOCD-projects100.zip archive with the projects.
http://www.olimex.com/dev/str-h711.htmlhttp://www.olimex.com/dev/soft/arm/OpenOCD-projects100.zip
It includes a number of projects, we need str_711 from it.
Unpack it as C:\workarm\str_711.
3. Run the tools.
3a)
wineconsole cmd
3b)
Z:\home\mg>set path=C:\WinARM\bin;C:\WinARM\utils\bin;%path%
Z:\home\mg>path
PATH=C:\WinARM\bin;C:\WinARM\utils\bin;C:\windows\system32;C:\windows
3c)
Z:\home\mg>c:
C:\>cd workarm/str_711
C:\workarm\str_711>
Now you can run `make clean` or manually clean it and run `make`
3d)
C:\workarm\str_711>make clean
-------- begin (mode: ROM_RUN) --------
Cleaning project:
rm -f main.out
make: Interrupt/Exception caught (code = 0xc0000005, addr = 0xf7d3f54a)
C:\workarm\str_711>
--end of report--
--
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.