Explicit int in English
Previously when explaining integer declarations, int was implicit:
cdecl> explain unsigned x
declare x as unsigned
Now int is explicit:
cdecl> explain unsigned x
declare x as unsigned int
Added explicit-int option
Both a command-line --explicit-int/-I and explicit-int set option have been added that set which integer types have int explicitly included in declarations.
This port has the same problem as all GCC ports on powerpc64 elfv2 - namespace collision with vec_step variable.
PR: 243141
Approved by: yuri (maintainer)
Nvidia drivers are not available on other architectures.
PR: 242832
Approved by: freebsd-ports@dan.me.uk (maintainer timeout)
MFH: 2020Q1 (fix build blanket)
Architectures that don't have libunwind available should disable stack trace.
Otherwise, the following linking error is encountered:
/usr/local/bin/ld: src/common/libcommon.a(stack_trace.cpp.o): in function `tools::log_stack_trace(char const*)':
stack_trace.cpp:(.text+0x71c): undefined reference to `el::base::debug::StackTrace::generateNew()'
/usr/local/bin/ld: stack_trace.cpp:(.text+0x72c): undefined reference to `el::base::debug::operator<<(std::ostream&, el::base::debug::StackTrace const&)'
collect2: error: ld returned 1 exit status
PR: 242846
Approved by: vd (maintainer timeout)
MFH: 2020Q1 (fix build blanket)
Use new GCC to fix build after last update:
../include/cln/number.h: In function 'const type& cln::the(const cln::cl_number&)':
../include/cln/number.h:261: error: there are no arguments to 'static_assert' that depend on a template parameter, so a declaration of 'static_assert' must be available
../include/cln/number.h:261: error: (if you use '-fpermissive', G++ will accept your code, but allowing the use of an undeclared name is deprecated)
lightningd does execute bitcoin-cli internally during runtime.
Fix two problems with that:
* The bitcoin-cli executable is usually located in
/usr/local/bin/bitcoin-cli but service(8) would remove /usr/local/bin
from PATH before executing our rc script /usr/local/etc/rc.d/lightningd
and so the lightningd daemon would inherit a PATH that does not contain
bitcoin-cli. To fix this give the full path to bitcoin-cli to lightningd.
* bitcoin-cli(1) tries to create its datadir when it starts if it does not
exist. By default that is ${HOME}/.bitcoin. service(8) would set HOME=/
and if / is mounted read-only, then this creation would fail. Because we
don't want this directory created (it is not necessary and remains empty)
tell lightningd to execute
bitcoin-cli --datadir=/some/directory/that/already/exists.
Also, append ${lightningd_extra_args} to the lightingd arguments. This was
forgotten in the initial commit and setting lightningd_extra_args would have
had no effect.
Reported by: https://github.com/bitcoin-software
This update includes an Emacs major version change from 27.0.50 to 28.0.50.
Ports that may depend on editors/emacs-devel must chase this update
with a PORTREVISION bump.
Submitted by: ashish (maintainer)
Differential Revision: https://reviews.freebsd.org/D23012
re: https://metacpan.org/source/DLO/Proc-BackOff-0.02/Build.PL#L11
Encountered this error:
Base class package "Class::Accessor" is empty.
(Perhaps you need to 'use' the module which defines that package first,
or make that module available in @INC (@INC contains: /usr/local/sbin/../lib /usr/local/lib/perl5/site_perl/mach/5.30 /usr/local/lib/perl5/site_perl /usr/local/lib/perl5/5.30/mach /usr/local/lib/perl5/5.30).
at /usr/local/lib/perl5/site_perl/Proc/BackOff.pm line 4.
Only decoder and encoder are installed. Other features are not
maintained by the port. Besides, ffmpeg provides alternative decoder
while svt-vp9 provides alternative encoder.
None of the consumers were tested with non-default options. As
there're no additional dependencies users are better off with
Makefile.local which provides access to more e.g.
--enable-better-hw-compatibility
--enable-onthefly-bitpacking
--enable-error-concealment
--enable-coefficient-range-checking
--enable-postproc-visualizer
Similar to multimedia/aom this reduces maintenance.
- Same as Chromium, VLC, Arch, Fedora, Gentoo, Homebrew
- Option named after 10-bit to match multimedia/x265
Requested by: Dima D <dima_bsd@inbox.lv>
MFH: 2020Q1