http://bugs.winehq.org/show_bug.cgi?id=16661
Summary: build broken in dlls/iphlpapi/ipstats.c on OpenBSD 4.4
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: major
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=18289)
--> (http://bugs.winehq.org/attachment.cgi?id=18289)
openbsd patch
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT
-fPIC -Wall -pipe -fno-strict-aliasing -Wwrite-strings -Wpointer-arith
-I/usr/local/include -g -O2 -o ipstats.o ipstats.c
ipstats.c: In function `getIPStats':
ipstats.c:484: warning: implicit declaration of function `sysctlbyname'
ipstats.c: In function `getTCPStats':
ipstats.c:640: error: `TCPCTL_STATS' undeclared (first use in this function)
ipstats.c:640: error: (Each undeclared identifier is reported only once
ipstats.c:640: error: for each function it appears in.)
ipstats.c:643: error: storage size of `tcp_stat' isn't known
ipstats.c:657: error: `PR_SLOWHZ' undeclared (first use in this function)
ipstats.c:643: warning: unused variable `tcp_stat'
ipstats.c: In function `getNumRoutes':
ipstats.c:1014: error: `RTF_MULTICAST' undeclared (first use in this function)
ipstats.c: In function `getRouteTable':
ipstats.c:1091: error: `RTF_MULTICAST' undeclared (first use in this function)
ipstats.c: In function `getNumArpEntries':
ipstats.c:1284: error: dereferencing pointer to incomplete type
ipstats.c:1284: error: dereferencing pointer to incomplete type
ipstats.c: In function `getArpTable':
ipstats.c:1344: error: dereferencing pointer to incomplete type
ipstats.c:1344: error: dereferencing pointer to incomplete type
ipstats.c:1349: error: dereferencing pointer to incomplete type
ipstats.c:1358: error: dereferencing pointer to incomplete type
ipstats.c:1358: error: `SIN_PROXY' undeclared (first use in this function)
*** Error code 1
Attached patch fixes it, but is not correct. If anyone would like to implement
properly, I'll buy you a beer :-).
--
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=16660
Summary: build broken in dlls/inetcomm/internettransport.c on
OpenBSD
Product: Wine
Version: 1.1.11
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: patch, source
Severity: major
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 -Wwrite-strings -Wpointer-arith
-I/usr/local/include -g -O2 -o internettransport.o internettransport.c
In file included from internettransport.c:31:
../../include/ws2tcpip.h:60: error: conflicting types for `socklen_t'
/usr/include/sys/types.h:163: error: previous declaration of `socklen_t'
internettransport.c: In function `InternetTransport_WndProc':
internettransport.c:348: error: syntax error before "infd"
internettransport.c:379: warning: implicit declaration of function
`Include_winsock_h_before_stdlib_h_or_use_the_MSVCRT_library'
internettransport.c:379: error: `infd' undeclared (first use in this function)
internettransport.c:379: error: (Each undeclared identifier is reported only
once
internettransport.c:379: error: for each function it appears in.)
*** Error code 1
Below patch fixes it. Haven't submitted to wine-patches yet, I got it from the
OpenBSD wine port, but I'm not familiar enough with the networking code to know
it's right. Would someone mind taking a look? Feel free to submit it yourself
if it's right ;-).
diff --git a/include/ws2tcpip.h b/include/ws2tcpip.h
index a38ccda..dd7a60c 100644
--- a/include/ws2tcpip.h
+++ b/include/ws2tcpip.h
@@ -57,7 +57,9 @@ typedef struct WS(addrinfoW)
struct WS(addrinfoW)* ai_next;
} ADDRINFOW, *PADDRINFOW;
+#ifdef USE_WS_PREFIX
typedef int WS(socklen_t);
+#undef
typedef ADDRINFOA ADDRINFO, *LPADDRINFO;
--
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=16597
Summary: Wrong detection of SelAttributes in RichEdit
Product: Wine
Version: 1.1.11
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: teach2000(a)basement.nl
Created an attachment (id=18124)
--> (http://bugs.winehq.org/attachment.cgi?id=18124)
Application to show behavior of RichEdit
Open the attached Project10.exe. This is an test executable to demonstrate the
RTF problem.
Three text boxes are visible:
Text box 1: Plain text where you can enter BBCode.
Text box 2: RichEdit that converts the BBCode to display it WYSIWYG.
Text box 3: The opposite, this plain text memo displays the BBCode from 2. This
BBCode should be the same as the BBCode from 1.
Steps:
Clear the first text box.
Enter the text 'test'.
Exp: The third text box displays 'test'.
Act: The third text box displays '[i][/red]t[/red]e[/red]s[/red]t[/red]'.
This is a big problem for the application Teach2000 under Wine.
Wine version: 1.1.11
WineTricks:
wget http://kegel.com/wine/winetricks && sh winetricks allfonts gecko riched20
msxml3
Suse Linux 10.2
Project10.exe is built with Delphi 2007
--
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=16242
Summary: list apps installed with msi
Product: Wine
Version: 1.1.9
Platform: PC
URL: http://home.scarlet.be/linux/compteco/testmsi.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Created an attachment (id=17503)
--> (http://bugs.winehq.org/attachment.cgi?id=17503)
with native msi.dll
See delphi test program and screenshots
With native msi.dll, it works but not with builtin msi.dll
--
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=15778
Summary: Counter Strike Source: bullet holes and knife mark don't
appear on walls
Product: Wine
Version: 1.1.7
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kcjones1(a)gmail.com
When you shoot a wall, or slash it with a knife, bullet holes or knife marks
won't show up in DirectX9 using Wine 1.1.7, and the proprietary Nvidia driver.
Reproducible: Always
--
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=15644
Summary: Morrowind: Waterplane/sprite flickering with ORM=fbo
Product: Wine
Version: 1.1.4
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquid.acid(a)gmx.net
Hi there,
this is a regression introduces between wine-1.1.3 and wine-1.1.4
It affects Morrowind version 1.2.0722, when OffscreenRenderingMode is set to
fbo. GLSL settings don't seem to have any effect on the issue.
Console output doesn't seem to be related to the problem. I get a lot of those
though on my Nvidia NV35:
fixme:d3d_shader:shader_glsl_deselect_depth_blt >>>>>>>>>>>>>>>>>
GL_INVALID_OPERATION (0x502) from glUseProgramObjectARB @ glsl_shader.c / 3450
I'm currently bisecting and these msgs also appear when the state is good, so
they're probably not really related.
How does the issue look like:
The Waterplane (pixel shader water is on) and the sprites flicker a lot when
moving through the terrain. Sprites also does include parts of the trees and
e.g. lillies in the various pools outside of Seyda Neen.
Interesting observation:
When pressing ESC, which does bring up the ingame menu (Save, Load, Exit - you
get the idea) the graphics are perfect. Always.
Posting bisect info later.
Greets,
Tobias
--
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=15358
Summary: In Civilization I for Win, if a city located in lower
1/3 of the screen, its name displayed in incorrect place
Product: Wine
Version: 1.1.4
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
Created an attachment (id=16198)
--> (http://bugs.winehq.org/attachment.cgi?id=16198)
Screenshot
In Civilization I for Windows, if a city located in lower part of the screen
(about 1/3), its name displayed in incorrect place by vertical axis. See the
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=15351
Summary: Lexware: Message "Fehler beim Erzeugen der FairUse
Komponente." during installation
Product: Wine
Version: 1.1.5
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: koesterreich(a)gmx.net
Created an attachment (id=16183)
--> (http://bugs.winehq.org/attachment.cgi?id=16183)
wine output
During the installation of "Lexware financial office pro", version "2008
Juli"[1] the message "Fehler beim Erzeugen der FairUse Komponente" ("Error
during Creation of FairUse component")[2] sometimes shows up.
This is not fully reproducable and sometimes happens _before_ the installer
comes up and once it appeared after entering the serial-key.
The error does not seem to change anything in the installation-process, the
installer runs normally after it.
What the hack is FairUse? Is it a copy-protection?
Appended output of wine using WINEDEBUG=+relay,+msgbox.
[1] AppDB entry:
http://appdb.winehq.org/objectManager.php?sClass=application&iId=5505
[2] Screenshot of error:
http://appdb.winehq.org/appimage.php?iId=20154
--
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=15339
Summary: Black & White crashes, giving "fixme:d3d:state_zfunc"
Product: Wine
Version: 1.1.5
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: normandy(a)web.de
3D-Apps crash after this:
fixme:d3d:state_zfunc D3DCMP_NOTEQUAL and D3DCMP_EQUAL do not work correctly
--
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=15231
Summary: Pro Pinball fails to change resolutions
Product: Wine
Version: 1.1.3
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cweiske(a)cweiske.de
Created an attachment (id=16000)
--> (http://bugs.winehq.org/attachment.cgi?id=16000)
crashlog
When trying to change resolution in "Pro Pinball: Timeshock" and "Pro Pinball:
Big Race USA" it crashes wine. See attached log.
--
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.