A fix has been submitted to https://github.com/FreeRDP/Remmina/pull/428.
While a proper decision is not made there, just patch the code to stop
calling INSTALL(DIRECTORY ...) with a path that does not exist. Until CMake
3.1.0, this would end up creating an empty directory (hence the @dir entry
in the plist). The behavior has changed in 3.1.0, and we were getting build
errors because we were referring to a directory that did not exist in the
plist.
appear. This in turn triggers an #ifdef branch that tries to include
<cpuid.h>, but gcc on 9.x doesn't have that header. Make
query_cpu_support() skip cpuid and always return 0 as it is only
used for a sanity check that we don't need.
PR: 195881
- Add LICENSE
- Add a FreeBSD patch to provide a relevant message when running
perl built-in tests from within a poudriere jail, which does not
have connection to the Internet.
PR: 194873
Submitted by: svysh.fbsd@gmail.com
Dependencies have changed based on the new upstream Makefile.PL. TEST_DEPENDS has been
removed as those mentioned is now build-requires, according to Makefile.PL. Hence
*_DEPENDS in Makefile has been updated according to new requirements.
Differential Revision: https://reviews.freebsd.org/D1403
Approved by: bapt(mentor)
from the user and prints the selection's coordinates to stdout.
WWW: http://www.github.com/naelstrof/slop
PR: 195199
Submitted by: Neel Chauhan <neel@neelc.org>
quietly stopped working over the years. It would not come up on 64-bit
at all, and, even where it worked, the copy/pasting was broken due to,
apparently, some unwarranted assumptions about X11, that were no longer
true with modern Xorg.
This change makes use of a major patch, that provides for reasonably
warning-free compile -- which, by itself, fixes the crashes. Also
included in the patch are fixes for copy/pasting as well for parallel
building. (Awareness raised upstream.)
Because BR_Parser.y is among the patched files, bison is now needed at
build-time (found by KATO Tsuguru).
Bump PORTREVISION and take maintainership for the time being.
Reviewed by: KATO Tsuguru
Sponsored by: Fatherly Love
once it builds again on 8 and 9:
QEMU is a FAST! processor emulator using dynamic translation to achieve
good emulation speed.
QEMU has two operating modes:
* Full system emulation. In this mode, QEMU emulates a full system
(for example a PC), including a processor and various peripherials.
It can be used to launch different Operating Systems without rebooting
the PC or to debug system code.
* User mode emulation. In this mode, QEMU can launch
Linux processes compiled for one CPU on another CPU. It can be used to
launch the Wine Windows API emulator or to ease cross-compilation and
cross-debugging.
As QEMU requires no host kernel patches to run, it is very safe and easy to use.
http://wiki.qemu.org/Main_Page
This is building sbruno's bsd-user github branch:
WWW: https://github.com/seanbruno/qemu-bsd-user/commits/bsd-user
Disable SIMD option, the --with-gcc-arch only takes recent cpus into account.
And doesn't propperly check the host cpu for the flags. [1]
PR: 196188 [1]
Submitted by: mi@ALDAN.algebra.com