VVD
VVD
Use games/lwjgl3 from ports.
If you change ABI then change (increase) major version number too: `0.16.0` => `1.0.0` instead of `0.17.0` and `SONAME` `libopenjph.0` => `libopenjph.1`.
> At last check this PR did not build successfully on Linux, and I do not see any changes to this PR to address those errors. Just one extra `;`...
This bug is still here on 24.08.
``` -- Skipping Python program usdstitch, Python modules required -- Skipping Python program usdstitchclips, Python modules required -- Skipping Python program usdzip, Python modules required -- Skipping garch because X11...
We are on FreeBSD and X11 is installed. (I am writing this message now on FreeBSD+KDE5+xorg+Firefox.)
Thanks. This work! Maybe better something like this: ``` if (NOT (CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "Windows")) find_package(X11) endif() ``` For support other BSDs.
My current set of patches (hacks!) for support FreeBSD (Updated 2024-08-20): ```diff --- cmake/defaults/Packages.cmake.orig 2024-07-24 22:34:34 UTC +++ cmake/defaults/Packages.cmake @@ -273,7 +273,8 @@ if (PXR_BUILD_IMAGING) add_definitions(-DPXR_OPENVDB_SUPPORT_ENABLED) endif() # --X11 -...
@meshula, you can submitting if you can and want, but for now it's set of "hacks". Correct way is define `ARCH_OS_POSIX` (or `ARCH_OS_UNIX` or `ARCH_OS_UNIX_NOT_DARWIN`) for both Linux and FreeBSD...
> Thanks for putting together this set of hacks and patches, it should unblock others experiencing this issue for now! https://github.com/PixarAnimationStudios/OpenUSD/pull/1961 but for old version…