https://bugs.winehq.org/show_bug.cgi?id=37927
Bug ID: 37927
Summary: Camtasia fails to open in wine 1.6.2
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: techbin1(a)gmail.com
Distribution: ---
Created attachment 50516
--> https://bugs.winehq.org/attachment.cgi?id=50516
Camtasia crash backtrace
Camtasia appeared to install correctly. When I try to open, I get an error
message about an unregistered dll "C:\windows\SysWOW64\quartz.dll". This
message repeats three times after which it crashes. Attached find backtrace.
--
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=53930
Bug ID: 53930
Summary: Build broken with Clang in MSVC mode due to OpenLDAP
import using getopt.h
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wldap32
Assignee: wine-bugs(a)winehq.org
Reporter: martin(a)martin.st
CC: hans(a)meelstraat.net, jacek(a)codeweavers.com,
julliard(a)winehq.org
Distribution: ---
Building with Clang in MSVC mode fails since the OpenLDAP code import. Building
fails with this error:
clang -c -o libs/ldap/aarch64-windows/liblber/io.o
../src/libs/ldap/liblber/io.c -Ilibs/ldap -I../src/libs/ldap -Iinclude \
-I../src/include -I../src/include/msvcrt -I../src/libs/ldap/include
-D_TIMEVAL_DEFINED -D_UCRT \
-D__WINE_PE_BUILD -target aarch64-windows -fno-strict-aliasing
-Wno-pragma-pack -Wno-format \
-gdwarf-4 -g -O2
In file included from ../src/libs/ldap/liblber/io.c:41:
../src/libs/ldap/include/ac/unistd.h:44:11: fatal error: 'getopt.h' file not
found
# include <getopt.h>
^~~~~~~~~~
1 error generated.
make: *** [Makefile:197943: libs/ldap/aarch64-windows/liblber/io.o] Error 1
The bundled libs/ldap/include/portable.h contains "#define HAVE_GETOPT_H 1".
For mingw-based PE builds, this succeeds by including getopt.h from the mingw
toolchain (which probably isn't intended?), while if building with Clang in
MSVC mode, no such header is available.
(Side note: When building with a mingw compiler like this, it would probably be
good to avoid having the mingw sysroot includes available, to avoid
accidentally using headers from there. But one can't just use -nostdinc, since
that also excludes paths like the compiler's own headers, like stdarg.h.
Something like --sysroot=dummy might work.)
--
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=53870
Bug ID: 53870
Summary: vkGetPhysicalDeviceSurfaceCapabilities2KHR passes
invalid VkSurfaceKHR handle to driver
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winevulkan
Assignee: wine-bugs(a)winehq.org
Reporter: alexandros.frantzis(a)collabora.com
Distribution: ---
Created attachment 73397
--> https://bugs.winehq.org/attachment.cgi?id=73397
Relevant log entries of Chrome failing to initialize Vulkan
Hi!
With:
commit 000a7bbb5a10ca9144b7ab7a23c4716edf1a83b0
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Fri Sep 23 21:37:45 2022 +0200
winevulkan: Use host Vulkan structures for private thunks arguments.
calling vkGetPhysicalDeviceSurfaceCapabilities2KHR (on 32-bit builds at least)
ends up passing the wrong VkSurfaceKHR handle to the driver. This can be
reproduced with "chrome.exe --use-angle=vulkan --in-process-gpu". I have
attached the relevant parts from a debug trace of a broken run, annotated with
few comments (and some extra trace points for clarity).
The issue seems to be in this generated thunk:
static NTSTATUS thunk32_vkGetPhysicalDeviceSurfaceCapabilities2KHR(void *args)
{
...
convert_VkPhysicalDeviceSurfaceInfo2KHR_win32_to_host(params->pSurfaceInfo,
&pSurfaceInfo_host);
params->result =
wine_vkGetPhysicalDeviceSurfaceCapabilities2KHR(params->physicalDevice,
&pSurfaceInfo_host, params->pSurfaceCapabilities);
...
}
The conversion function populates pSurfaceInfo_host.surface with the
driver_surface handle, which is not what
wine_vkGetPhysicalDeviceSurfaceCapabilities2KHR expects.
Note that the conversion works fine when we have a direct call to the driver
function, for example in the vkGetPhysicalDeviceSurfaceFormats2KHR thunk:
static NTSTATUS thunk32_vkGetPhysicalDeviceSurfaceFormats2KHR(void *args)
{
...
convert_VkPhysicalDeviceSurfaceInfo2KHR_win32_to_host(params->pSurfaceInfo,
&pSurfaceInfo_host);
params->result =
wine_phys_dev_from_handle(params->physicalDevice)->instance->funcs.p_vkGetPhysicalDeviceSurfaceFormats2KHR(wine_phys_dev_from_handle(params->physicalDevice)->phys_dev,
&pSurfaceInfo_host, params->pSurfaceFormatCount, params->pSurfaceFormats);
...
}
For verification I hacked thunk32_vkGetPhysicalDeviceSurfaceCapabilities2KHR to
to use the original surface in pSurfaceInfo_host and this fixed the issue for
me.
Thanks!
--
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=49297
Bug ID: 49297
Summary: Spark AR studio installer fails to start:Spark AR
Studio is not supported in this version of Windows.
Please upgrade to Windows 10
Product: Wine
Version: 5.9
Hardware: x86
URL: https://sparkar.facebook.com/ar-studio/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Created attachment 67302
--> https://bugs.winehq.org/attachment.cgi?id=67302
bump kernel32 version to win10
Reported by someone on reddit.com,
The installer fails, even if you set windows to win10
Attached patch makes the installer work, but i don`t think it`s wise to
advertise high version resources like win10 in version resources atm (right?)
so opened this bugreport just to track these kind of apps
--
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=48053
Bug ID: 48053
Summary: kernel32:change fails randomly (and rarely) in Wine
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
kernel32:change gets the following failure from time to time in test_ffcn():
change.c:320: Test failed: should be ready
See https://test.winehq.org/data/tests/kernel32:change.html
This impacts all three Wine builds.
Because only the first WaitForSingleObject() fails this indicates a likely race
between it and the previous DeleteFile(). That race may be specific to deletion
since this failure does not seem to happen in the CreateFile(),
CreateDirectory() and RemoveDirectory() cases.
--
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=53429
Bug ID: 53429
Summary: opengl32:opengl fails on Debian 11 + Intel GPU
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
opengl32:opengl fails on Debian 11 + Intel GPU:
opengl.c:386: Test failed: Got unexpected cStencilBits 8.
https://test.winehq.org/data/patterns.html#opengl32:opengl
The failure started with the commit that introduced the test:
commit 83cbcdefa3f55afc449b6be51e215c4f646869f4
Author: Paul Gofman <pgofman(a)codeweavers.com>
AuthorDate: Tue Jun 21 10:29:18 2022 -0500
opengl32/tests: Add more tests for ChoosePixelFormat().
Test extended by Matteo Bruni.
--
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=53131
Bug ID: 53131
Summary: ntdll:threadpool - test_tp_multi_wait() fails (rarely)
in Wine
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
ntdll:threadpool - test_tp_multi_wait() fails (rarely) in Wine:
threadpool.c:1960: Test failed: WaitForSingleObject returned 258
https://test.winehq.org/data/patterns.html#ntdll:threadpool
The failure is pretty rare, about 3.2%, so it can easily be missing from a test
configuration's WineTest runs which results in false positives.
--
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=53909
Bug ID: 53909
Summary: opengl32.dll can't be loaded if win32u.so is not
initialized first
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: jacek(a)codeweavers.com
CC: rbernon(a)codeweavers.com
Regression SHA1: 60eeb92ae0342a13e6e407a44d116b657b7e9ee5
Distribution: ---
Created attachment 73457
--> https://bugs.winehq.org/attachment.cgi?id=73457
test
We load unixlibs when corresponding PE file is mapped (and before its imports
are mapped). For unixlibs that link to win32u.so, we need win32u.so to be
loaded first, because system loader doesn't know where to find it. It's usually
good enough, we needed some workarounds for Vulkan [1], but it doesn't work for
opengl32.so. We may need to change ntdll's unixlib loading strategy or find a
workaround for opengl32. I attached a simple test.
[1] https://gitlab.winehq.org/wine/wine/-/merge_requests/547
--
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.