https://bugs.winehq.org/show_bug.cgi?id=53417
Bug ID: 53417
Summary: Msys2 mkdir returns different error codes on Wine
breaking pacman.exe
Product: Wine
Version: 7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: joel(a)airwebreathe.org.uk
Distribution: ---
The following Msys2 program returns different error codes on Wine versus
Windows:
-----------------------
#include <stdio.h>
#include <errno.h>
#include <sys/stat.h>
int main() {
int ret = mkdir("/z", 0755);
printf("ret = %d, errno = %d\n", ret, errno);
return 0;
}
-----------------------
Compile with Msys2 gcc:
$ gcc -o test.exe test.c
On Windows Msys2:
$ ./root_mkdir_test.exe
ret = -1, errno = 2
On Wine v7.13:
wine64 root_mkdir_test.exe
0024:fixme:ntdll:NtSetInformationToken unimplemented class 4
0024:fixme:security:GetWindowsAccountDomainSid (00000000FFFFC190
000000000033DB88 00000000FFFFC18C): semi-stub
0024:fixme:netapi32:DsEnumerateDomainTrustsW ((null), 0x0023, 00000000FFFFC368,
00000000FFFFC354): stub
0114:fixme:wldap32:ldap_set_optionA Unsupported option: 0x95
0114:fixme:wldap32:ldap_set_optionA Unsupported option: 0x96
0024:fixme:netapi32:NetUserGetInfo Only implemented for local computer, but
remote serverL"\\\\@" was requested.
Cygwin WARNING:
Couldn't compute FAST_CWD pointer. This typically occurs if you're using
an older Cygwin version on a newer Windows. Please update to the latest
available Cygwin version from https://cygwin.com/. If the problem persists,
please see https://cygwin.com/problems.html
0024:fixme:netapi32:NetLocalGroupGetInfo ((null) L"Administrators" 1
00000000FFFFC3E0) semi-stub!
0024:fixme:netapi32:NetLocalGroupGetInfo ((null) L"Users" 1 00000000FFFFC3E0)
semi-stub!
ret = 0, errno = 0
--
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=53396
Bug ID: 53396
Summary: Error while compiling Wine 7.13 -
dlls/winebus.sys/bus_sdl.o:
SDL_JOYSTICK_TYPE_ARCADE_PAD and others definitions
are undeclared
Product: Wine
Version: 7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: a.valuev(a)gmail.com
Distribution: ---
There is a log:
gcc -m64 -c -o dlls/winebus.sys/bus_sdl.o
../wine-source/dlls/winebus.sys/bus_sdl.c -Idlls/winebus.sys \
-I../wine-source/dlls/winebus.sys -Iinclude -I../wine-source/include
-D__WINESRC__ -D_UCRT \
-DWINE_UNIX_LIB -D_REENTRANT -I/usr/include/SDL2 -Wall -pipe
-fno-stack-protector \
-fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body
-Wignored-qualifiers -Winit-self \
-Wshift-overflow=2 -Wstrict-prototypes -Wtype-limits
-Wunused-but-set-parameter -Wvla \
-Wwrite-strings -Wpointer-arith -Wlogical-op -gdwarf-4 -fPIC
-fasynchronous-unwind-tables \
-g -O2
../wine-source/dlls/winebus.sys/bus_sdl.c:122:26: error: expected declaration
specifiers or ‘...’ before ‘*’ token
static SDL_JoystickType (*pSDL_JoystickGetType)(SDL_Joystick * joystick);
^
../wine-source/dlls/winebus.sys/bus_sdl.c: In function
‘build_joystick_report_descriptor’:
../wine-source/dlls/winebus.sys/bus_sdl.c:306:10: error: ‘pSDL_JoystickGetType’
undeclared (first use in this function)
if (!pSDL_JoystickGetType) physical_usage = device_usage;
^~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:306:10: note: each undeclared
identifier is reported only once for each function it appears in
../wine-source/dlls/winebus.sys/bus_sdl.c:307:18: warning: implicit declaration
of function ‘pSDL_JoystickGetType’ [-Wimplicit-function-declaration]
else switch (pSDL_JoystickGetType(impl->sdl_joystick))
^~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:309:10: error:
‘SDL_JOYSTICK_TYPE_ARCADE_PAD’ undeclared (first use in this function)
case SDL_JOYSTICK_TYPE_ARCADE_PAD:
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:310:10: error:
‘SDL_JOYSTICK_TYPE_ARCADE_STICK’ undeclared (first use in this function)
case SDL_JOYSTICK_TYPE_ARCADE_STICK:
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:311:10: error:
‘SDL_JOYSTICK_TYPE_DANCE_PAD’ undeclared (first use in this function)
case SDL_JOYSTICK_TYPE_DANCE_PAD:
^~~~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:312:10: error:
‘SDL_JOYSTICK_TYPE_DRUM_KIT’ undeclared (first use in this function
case SDL_JOYSTICK_TYPE_DRUM_KIT:
^~~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:313:10: error:
‘SDL_JOYSTICK_TYPE_GUITAR’ undeclared (first use in this function)
case SDL_JOYSTICK_TYPE_GUITAR:
^~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:314:10: error:
‘SDL_JOYSTICK_TYPE_UNKNOWN’ undeclared (first use in this function)
case SDL_JOYSTICK_TYPE_UNKNOWN:
^~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:318:10: error:
‘SDL_JOYSTICK_TYPE_GAMECONTROLLER’ undeclared (first use in this fu
case SDL_JOYSTICK_TYPE_GAMECONTROLLER:
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:322:10: error:
‘SDL_JOYSTICK_TYPE_WHEEL’ undeclared (first use in this function)
case SDL_JOYSTICK_TYPE_WHEEL:
^~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:326:10: error:
‘SDL_JOYSTICK_TYPE_FLIGHT_STICK’ undeclared (first use in this func
case SDL_JOYSTICK_TYPE_FLIGHT_STICK:
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c:327:10: error:
‘SDL_JOYSTICK_TYPE_THROTTLE’ undeclared (first use in this function
case SDL_JOYSTICK_TYPE_THROTTLE:
^~~~~~~~~~~~~~~~~~~~~~~~~~
../wine-source/dlls/winebus.sys/bus_sdl.c: In function ‘sdl_bus_init’:
../wine-source/dlls/winebus.sys/bus_sdl.c:1117:5: error: ‘pSDL_JoystickGetType’
undeclared (first use in this function)
pSDL_JoystickGetType = dlsym(sdl_handle, "SDL_JoystickGetType");
^~~~~~~~~~~~~~~~~~~~
--
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=53363
Bug ID: 53363
Summary: DwmSetWindowAttribute stub
Product: Wine
Version: 7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dwmapi
Assignee: wine-bugs(a)winehq.org
Reporter: raphael.thevenin(a)free.fr
Distribution: ---
Created attachment 72751
--> https://bugs.winehq.org/attachment.cgi?id=72751
fixme:dwmapi line
fixme lines in console when launching "Condor Soaring v2"
--
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=53360
Bug ID: 53360
Summary: ImeSetActiveContext and ImmReleaseContext : stub
Product: Wine
Version: 7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: imm32
Assignee: wine-bugs(a)winehq.org
Reporter: raphael.thevenin(a)free.fr
Distribution: ---
Created attachment 72748
--> https://bugs.winehq.org/attachment.cgi?id=72748
imm specific lines in console output
fixme:imm line in console output when launching "Condor Soaring v2"
--
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=53161
Bug ID: 53161
Summary: winemenubuilder not found/unable to execute on 64-bit
bottles
Product: Wine
Version: 7.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: melroy(a)melroy.org
Distribution: ---
When I try to run the shipped Wine application called 'winemenubuilder' using a
64-bit wine bottle.
I execute: wine winemenubuilder
The result is:
Application could not be started, or no application associated with the
specifie
d file.
ShellExecuteEx failed: File not found.
However, when I try to execute the exact command on a 32-bit bottle (meaning
I'm using the WINEARCH=win32 environment variable during the bottle creation).
I'm actually able to execute the winemenubuilder command without error message.
Other programs like winecfg do just work fine with the 64-bit bottle. As far as
I know it's only happening now with winemenubuilder.
--
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=40104
Bug ID: 40104
Summary: ReplayGain by Foobar
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adl-88(a)posteo.de
Distribution: ---
ReplayGain by Foobar gains only with standardoptions and it ignores every
change.
So if I want to write with "+0.0db" to get "89db" on a track he will do this.
But if I want to write with "+6,00" to get "95db" on a track he also writes
with "0,0db". It seems that its a debian versions problem. Ubuntu versions
works fine. But I dont use ubuntu anymore.
--
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=52977
Bug ID: 52977
Summary: Build fails when passing --disable-vkd3d
Product: Wine
Version: 7.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: sarnex(a)gentoo.org
Distribution: ---
Hi all,
This is reproducible with Wine 7.8 but probably earlier versions too.
If you run ./configure with --disable-vkd3d, the build fails with the below
error:
Error with --with-mingw:
/usr/libexec/gcc/i686-w64-mingw32/ld: cannot find -lvkd3d
collect2: error: ld returned 1 exit status
winegcc: /usr/bin/i686-w64-mingw32-gcc failed
make: *** [Makefile:130204: dlls/wined3d/wined3d.dll] Error 2
Error with --without-mingw:
dlls/wined3d/wined3d.spec:319: function 'vkd3d_create_instance' not defined
dlls/wined3d/wined3d.spec:320: function 'vkd3d_instance_decref' not defined
... (other similar errors)
winegcc: ./tools/winebuild/winebuild failed
make: *** [Makefile:134505: dlls/wined3d/wined3d.dll.so] Error 2
If the configure log or build log will help let me know and I can attach it.
Thanks,
Sarnex
--
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=52760
Bug ID: 52760
Summary: asking cd while cdrom was mounted
Product: Wine
Version: 7.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: elias_0000_0000(a)yahoo.com
Distribution: ---
>From internet archive, i downloaded puzz3d games. (3d puzzles).
I run
mkdir /home/user/cdrom
fuseiso /puzz3d.bin /home/user/cdrom/
then winecfg to set e: or d: as cdrom drive with the above path
"/home/user/cdrom/"
then, i run wine setup.exe from the cdrom path.
The game is asking for cdrom path.
I dont know if this is a fault or of the game or of wine.
What i must do?
kubuntu with bullseye 11 kernel.
--
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=52702
Bug ID: 52702
Summary: Old DLLs left in system32 and syswow
Product: Wine
Version: 7.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikes(a)kuentos.guam.net
Distribution: ---
Noticed a difference with running wine under my regular user versus a new setup
with root user for testing?
Found my user had a number of dll files in directories were older recent
install under the root user??
Moved old dll to dll.org and then copied the newer one from root?
Fixed my problem, but not sure why the dlls hadn't been updated like most
others? Some just a few months, but one was from 1998?
623771 Feb 22, 2022 ./system32/concrt140.dll
309136 Dec 3, 2021 ./system32/concrt140.dll.org
124624 Feb 22, 2022 ./system32/msvcp140_1.dll
23928 Dec 3, 2021 ./system32/msvcp140_1.dll.org
114163 Feb 22, 2022 ./system32/msvcp140_atomic_wait.dll
41360 Dec 3, 2021 ./system32/msvcp140_atomic_wait.dll.org
4228026 Feb 22, 2022 ./system32/msvcp140.dll
564088 Dec 3, 2021 ./system32/msvcp140.dll.org
217458 Feb 22, 2022 ./system32/vcruntime140_1.dll
36728 Dec 3, 2021 ./system32/vcruntime140_1.dll.org
111872 Feb 22, 2022 ./system32/vcruntime140.dll
96144 Dec 3, 2021 ./system32/vcruntime140.dll.org
721621 Feb 22, 2022 ./syswow64/atl.dll
73785 Feb 11, 2000 ./syswow64/atl.dll.org
82113 Feb 22, 2022 ./syswow64/comcat.dll
22288 Feb 11, 2000 ./syswow64/comcat.dll.org
498588 Feb 22, 2022 ./syswow64/concrt140.dll
243600 Dec 3, 2021 ./syswow64/concrt140.dll.org
586315 Feb 22, 2022 ./syswow64/msvcirt.dll
77878 Jun 16, 1998 ./syswow64/msvcirt.dll.org
95914 Feb 22, 2022 ./syswow64/msvcp140_1.dll
21368 Dec 3, 2021 ./syswow64/msvcp140_1.dll.org
101627 Feb 22, 2022 ./syswow64/msvcp140_atomic_wait.dll
39288 Dec 3, 2021 ./syswow64/msvcp140_atomic_wait.dll.org
3310918 Feb 22, 2022 ./syswow64/msvcp140.dll
436600 Dec 3, 2021 ./syswow64/msvcp140.dll.org
2807249 Feb 22, 2022 ./syswow64/msvcp60.dll
401462 Jun 16, 1998 ./syswow64/msvcp60.dll.org
4404513 Feb 22, 2022 ./syswow64/oleaut32.dll
598288 Feb 11, 2000 ./syswow64/oleaut32.dll.org
121449 Feb 22, 2022 ./syswow64/olepro32.dll
164112 Feb 11, 2000 ./syswow64/olepro32.dll.org
95194 Feb 22, 2022 ./syswow64/vcruntime140.dll
76152 Dec 3, 2021 ./syswow64/vcruntime140.dll.org
--
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.