While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight
- libspectrum 1.4.3 -> 1.4.4
- fuse-utils 1.4.2 -> 1.4.3
- fuse 1.5.4 -> 1.5.5
Changes for fuse:
- Improve sound accuracy on Unix 64 bit systems
- Allow the use of real joystick hats/dpads in the SDL joystick code
- Rename compat_get_home_path() to compat_get_config_path()
- Various minor bugfixes
Reported by: portscout
From now on, ports that depend on Qt4 will have to set
USES= qt:4
USE_QT= foo bar
ports depending on Qt5 will use
USES= qt:5
USE_QT= foo bar
PR: 229225
Exp-run by: antoine
Reviewed by: mat
Approved by: portmgr (antoine)
Differential Revision: →https://reviews.freebsd.org/D15540
- More debugger support for Wow64 processes.
- Support for sha256/sha384 hashes in ECDSA signatures.
- Better reporting of hyper-threaded CPUs.
- Improvements to the standard Task Dialog.
- Various bug fixes.
Replace explicit settings of CFLAGS and LDFLAGS in favor of USES=localbase
(the former predating the latter by at least a decade alas with variation).
PR: 226396
Submitted by: John Hein <z7dr6ut7gs@snkmail.com>
- Swapchain support in Direct 3D 12.
- Vulkan support updated to the latest spec.
- Debugger support for Wow64 processes.
- Still more support for the Task Scheduler.
- Various bug fixes.
qemu-user-static hangs on armv6 and crashes on aarch64.
$ make test
[0/1] cd /wrkdirs/usr/ports/emulators/citra/work/.build && /usr/local/bin/ctest --force-new-ctest-process
Test project /wrkdirs/usr/ports/emulators/citra/work/.build
Start 1: tests
FAILED: CMakeFiles/test.util
cd /wrkdirs/usr/ports/emulators/citra/work/.build && /usr/local/bin/ctest --force-new-ctest-process
ninja: build stopped: subcommand failed.
*** Error code 1
$ /wrkdirs/usr/ports/emulators/citra/work/.build/src/tests/tests
===============================================================================
All tests passed (244 assertions in 14 test cases)