Release notes can be found here:
http://www.xtrkcad.org/Wikka/XTrackCAD421
The .a bugfix release fixes an issue with the new reworked printing
from the 4.2.3 release.
noto-fonts now, and it takes 70+ seconds on a 2.8GHz i7 to run fc-cache
with this installed, this is run at the end of pkg_add automatically,
and if you kill it X is broken until you clean the cache and repair
manually.
OK robert@
NetAddr::MAC module provides an interface to deal with Media Access
Control addresses. These are the addresses that uniquely identify a
device on various layer 2 networks. Although the most common case is
hardware addresses on Ethernet network cards, there are a variety of
devices that use this system of addressing.
This module supports both EUI-48 and EUI-64 addresses and implements
an object-oriented and a functional interface.
The heavy lifting and final touches were done by Frederic Cambus; this
version includes earlier patches, ideas and tweaks from daniel@ and me.
ok daniel@, patch and notes from Frederic Cambus (MAINTAINER)
Notes :
-------
The idea is to avoid using otherwise required 'getpw', 'proc', 'exec'
promises entirely. We achieve this by disabling a couple of features,
mostly removing obsolete stuff. While we are at it, we attempt to pave
the way to be able to remove even more promises in the future, and
reduce potential attack vectors.
We disable them either at compile time :
--disable-bibp-urls
--disable-dired
--disable-finger
Or by hardcoding boolean values to disable the features just before
calling pledge and entering main program loop :
no_exec = TRUE;
no_mail = TRUE;
no_shell = TRUE;
rlogin_ok = FALSE;
telnet_ok = FALSE;
Manpage has been updated to mention those restrictions.
Also, CFLAGS="-DNOUSERS" was added in the Makefile to disable getpwnam
and getpwuid.