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=6979
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Macintosh |x86
--
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=6494
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Macintosh |ppc32
--
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=6410
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Macintosh |ppc32
--
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=6390
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Macintosh |ppc32
--
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.