http://bugs.winehq.org/show_bug.cgi?id=16748
Summary: rpcrt4/ndr_marshall.c: value computed is not used
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_RPCRT4_
-DCOM_NO_WINDOWS_H -DMSWMSG -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing
-Wdeclaration-after-statement -Wwrite-strings -Wtype-limits -Wpointer-arith -g
-O2 -o ndr_marshall.o ndr_marshall.c
ndr_marshall.c: In function ‘WriteConformance’:
ndr_marshall.c:461: warning: value computed is not used
ndr_marshall.c: In function ‘WriteVariance’:
ndr_marshall.c:471: warning: value computed is not used
ndr_marshall.c:473: warning: value computed is not used
--
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=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.