https://bugs.winehq.org/show_bug.cgi?id=41342
Bug ID: 41342
Summary: Build with winegcc is not reproducible
Product: Wine
Version: 1.9.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: javier--fqu3sqxsVIm7PkQvPySPMwTV4r0Nxk(a)jasp.net
Distribution: ---
Building with winegcc is not reproducible because the name of a temporary file
is included.[1] The function that creates this file should try
char* tmp = strmake("%s%s", prefix, suffix);
fd = open(tmp, O_CREAT | O_EXCL, 0600);
before mkstemps().[2]
About reproducible builds: https://reproducible-builds.org/
[1]
https://tests.reproducible-builds.org/debian/dbd/unstable/i386/lmms_1.1.3-5…
,
look for "spec.".
[2]
http://source.winehq.org/git/wine.git/blob/HEAD:/tools/winegcc/winegcc.c#l2…
--
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=39733
Bug ID: 39733
Summary: OpenGL Extensions Viewer 4.1 is not started
Product: Wine
Version: 1.8-rc2
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: isakov-sl(a)bk.ru
Infinite loop. If stop last messages are
~~~
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"configSections"
in state 2
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"sectionGroup" in
state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"section" in
state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"userSettings" in
state 2
fixme:mscoree:ConfigFileHandler_startElement Unknown element
L"openglex.Properties.Settings" in state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in
state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state
6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in
state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state
6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in
state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state
6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in
state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state
6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in
state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state
6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"appSettings" in
state 2
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 6
fixme:mscoree:ConfigFileHandler_startElement Unknown element L"add" in state 6
fixme:gdiplus:GdipGetLineSpacing ignoring style
fixme:gdiplus:GdipGetLineSpacing ignoring style
fixme:gdiplus:GdipGetLineSpacing ignoring style
fixme:gdiplus:GdipGetLineSpacing ignoring style
--
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=55155
Bug ID: 55155
Summary: Telegram can not be run in latest version wine, but ok
in wine6.0.4
Product: Wine
Version: 8.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 398063392(a)qq.com
Distribution: ---
the Telegram which I used is unpacked from
https://updates.tdesktop.com/tx64/tportable-x64.4.8.3.zip
--
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=27245
Summary: Internet Settings security zones not i18n-ed
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Created an attachment (id=34829)
--> (http://bugs.winehq.org/attachment.cgi?id=34829)
Internet Settings screenshot (French)
In the control panel (wine control), tab "Security", the security zones and
their associates descriptions aren't translatable.
They seem to be hardcoded in dll/urlmon/urlmon.inf
--
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.
https://bugs.winehq.org/show_bug.cgi?id=53644
Bug ID: 53644
Summary: vbscript can not compile classes with lists of private
/ public / dim declarations
Product: Wine
Version: 7.16
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: jsm174(a)gmail.com
I am working on porting Visual Pinball to MacOS. I am using the vbscript engine
from Wine and just found out that it is having issues compiling classes that
have lists of private / public declarations.
For example:
Class FlipperPolarity
Public DebugOn, Enabled
private Flipper, FlipperStart,FlipperEnd, FlipperEndY, LR,
PartialFlipCoef
Private Balls(20), balldata(20)
dim PolarityIn, PolarityOut
dim VelocityIn, VelocityOut
dim YcoefIn, YcoefOut
.
.
.
End Class
To get this to compile, I had to split everything to a separate line. I also
had to switch the arrays to dim
Class FlipperPolarity
Public DebugOn
Public Enabled
private Flipper
private FlipperStart
private FlipperEnd
private FlipperEndY
private LR
private PartialFlipCoef
dim Balls(20)
dim balldata(20)
dim PolarityIn
dim PolarityOut
dim VelocityIn
dim VelocityOut
dim YcoefIn
dim YcoefOut
.
.
.
End Class
I think an update is required in parser.y, but I'm not sure yet:
ClassBody
: /* empty */ { $$ = new_class_decl(ctx); }
| FunctionDecl { $$ =
add_class_function(ctx, new_class_decl(ctx), $1); CHECK_ERROR; }
| FunctionDecl StSep ClassBody { $$ =
add_class_function(ctx, $3, $1); CHECK_ERROR; }
/* FIXME: We should use DimDecl here to support arrays, but that conflicts
with PropertyDecl. */
| Storage tIdentifier { dim_decl_t *dim_decl =
new_dim_decl(ctx, $2, FALSE, NULL); CHECK_ERROR;
$$ = add_dim_prop(ctx,
new_class_decl(ctx), dim_decl, $1); CHECK_ERROR; }
| Storage tIdentifier StSep ClassBody { dim_decl_t *dim_decl =
new_dim_decl(ctx, $2, FALSE, NULL); CHECK_ERROR;
$$ = add_dim_prop(ctx, $4,
dim_decl, $1); CHECK_ERROR; }
| tDIM DimDecl { $$ = add_dim_prop(ctx,
new_class_decl(ctx), $2, 0); CHECK_ERROR; }
| tDIM DimDecl StSep ClassBody { $$ = add_dim_prop(ctx, $4,
$2, 0); CHECK_ERROR; }
| PropertyDecl { $$ =
add_class_function(ctx, new_class_decl(ctx), $1); CHECK_ERROR; }
| PropertyDecl StSep ClassBody { $$ =
add_class_function(ctx, $3, $1); CHECK_ERROR; }
--
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=47647
Bug ID: 47647
Summary: Laragon hangs while "Initializing data"
Product: Wine
Version: 4.14
Hardware: x86-64
URL: https://github.com/leokhoa/laragon/releases/download/4
.0.15/laragon-full.exe
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
$ openssl sha256 laragon-full.exe
SHA256(laragon-full.exe)=
55f1c421a6631755da5de30dcdc72c361b8dbf688fc8b773bdd5a10f36dd2f73
When trying to start the server in Laragon, it yields the following error
message:
Steps to reproduce:
1. Download and install Laragon from the provided URL.
2. Start the program from the default location (mine was C:/laragon)
3. Click the "Start all" button in the bottom left hand corner.
Laragon hangs while "Initializing data"... C:\laragon\data\mysql
--
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=52917
Bug ID: 52917
Summary: d3d11:d3d11 - test_ps_cs_uav_binding() fails in Wine
on cw-rx460
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
d3d11:d3d11's test_ps_cs_uav_binding() fails in Wine on the cw-rx460 machine:
d3d11.c:22459: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22465: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22470: Test failed: Got 1.00000000e+000, expected 2.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22478: Test failed: Got 1.00000000e+000, expected 2.00000000e+000 at
(0, 0), sub-resource 0.
d3d11.c:22481: Test failed: Got 2.00000000e+000, expected 4.00000000e+000 at
(0, 0), sub-resource 0.
https://test.winehq.org/data/patterns.html#d3d11:d3d11
d3d11:d3d11 already had a cw-rx460-specific failure in Wine (see bug 52563) but
a bisect shows that this group of failures started with this commit:
commit 444a513de0a0b704c210d41cc7c185588d899db9
Author: Zebediah Figura <zfigura(a)codeweavers.com>
Date: Fri Apr 22 15:42:54 2022 -0500
wined3d: Clear the texture BO when loading textures into
WINED3D_LOCATION_BUFFER.
Signed-off-by: Zebediah Figura <zfigura(a)codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
I disabled CSMT with WINE_D3D_CONFIG=csmt=0 just in case but I still got this
new set of failures.
--
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=22849
Summary: Printing coupons from online sites results in a blank
coupon
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tribes2player2003(a)yahoo.com
Many stores / sites use a product called "coupon activator" to support online
coupon distribution (Target on-line is my test case), but a quick net search
reveals that many sites use this service.
When printing should take place, the following messages are printed to console:
fixme:psdrv:PSDRV_GetDeviceCaps (0x1f5c): unsupported capability 1, will return
0
fixme:psdrv:PSDRV_GetDeviceCaps (0x1f5c): unsupported capability 3, will return
0
...
(capability numbers go from 1 to 31).
The coupon boarders, expiration date, and scissors icon print, but the
internals of the coupon are blank (bar codes, images, etc).
Steps to reproduce (using Default Fedora 12 wine install):
- Install firefox on wine
- Visit target.com, goto "get coupons"
- Allow install of coupon activator
- Select a coupon to print
- Print
If there's any additional steps I can take to help with this, please let me
know.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=52056
Bug ID: 52056
Summary: TrackMania 2020: Crash on or soon after launch
Product: Wine
Version: 6.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jonwsb(a)gmail.com
Distribution: ---
Created attachment 71066
--> https://bugs.winehq.org/attachment.cgi?id=71066
wine-staging 6.21 trackmania 2020 terminal output
It seems any version of wine-staging newer than 5.22 now causes TrackMania 2020
to crash at the main menu or earlier.
wine-staging 5.22 allows the game to work normally as far as I tested.
The game is available freely from "https://ubisoftconnect.com/" but an account
is needed.
--
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.