editors/emacs:
- Update to 24.5
- Remove dependency on GCC for i386 platform, if the bug is fixed
in the version in use
- Remove upstreamed diff
editors/emacs-devel:
- Update to git snapshot def0df01
- Remove git revision from PORTVERSION, rather encode it in
DISTNAME
- Remove dependency on GCC for i386 platform, if the bug is fixed
in the version in use
- Fix portlint warnings
Mk/bsd.emacs.mk:
- Update version number for editors/emacs
- Remove deprecated block for emacs23
PR: 199553
Upstream gcc 4.8 doesn't have support for this - it'll create threads,
but it won't do any of the thread affinity stuff for FreeBSD.
This allows for OMP_PROC_BIND=true to bind threads to their initial
CPUs, leading to some pretty drastic improvements in performance
for certain NUMA workloads.
Approved by: gerald
Sponsored by: Norse Corp, Inc.
Upstream gcc 4.8 doesn't have support for this - it'll create threads,
but it won't do any of the thread affinity stuff for FreeBSD.
This allows for OMP_PROC_BIND=true to bind threads to their initial
CPUs, leading to some pretty drastic improvements in performance
for certain NUMA workloads.
Approved by: gerald
PLEASE NOTE: there is an important change here:
- Removed support for user/group switching, because it never worked
correctly, which means that this security feature has become an attack
vector itself. If you depend on this functionality, you can now use the
(www/p5-Mojolicious-Plugin-SetUserGroup) instead.
Changes: https://metacpan.org/changes/release/SRI/Mojolicious-6.10
Also, while here, re-order two lines because it looks better this way and
it was killing my OCD before.
- Remove OPTIONS for the features unsupported upstream: SQLITE, MYSQL,
LDAP, PGSQL, and REDIS
- Add workaround to prevent unnecessary dependency on autotools, due
to problem with tarball
- Add note to UPDATING about the removal of OPTIONS
ZSH was misbuilt on gcc-5 due to an intentional change in behavior of
gcc5's cpp. This patch to execute cpp with the -P switch comes from
upstream. No revbump necessary as GCC5 isn't used by default on FreeBSD.
Reported by: DragonFly ZSH users
Approved by: maintainer (bapt, IRC)
constant::defer creates a subroutine which on the first call runs given code to
calculate its value, and on any subsequent calls just returns that value, like a
constant. The value code is discarded once run, allowing it to be garbage
collected.
Deferring a calculation is good if it might take a lot of work or produce a big
result but is only needed sometimes or only well into a program run. If it's
never needed then the value code never runs.
A deferred constant is generally not inlined or folded (see "Constant Folding"
in perlop) since it's not a single scalar value. In the current implementation a
deferred constant becomes a plain constant after the first use, so may inline
etc in code compiled after that (see "IMPLEMENTATION" below).
WWW: http://search.cpan.org/dist/constant-defer/
- Remove dependency on textproc/intltool because it's implied by
USE_GNOME=gtk20
PR: 199664 [1]
Approved by: Kevin Zheng <kevinz5000@gmail.com> (maintainer) [1]