sblg is a utility for creating static blogs: it knits together articles and
templates, generating static HTML files and Atom feeds. It's built for use
with make(1), as blogs depend upon articles, etc. No markdown, no "CMS", no
CGI, no PHP. Just a simple tool for pulling data from articles and
populating templates. sblg(1) is an ISC licensed ISO C utility that depends
only on libexpat. (Where "simple" encompasses Atom feeds, multi-language
support, tag filtering, etc.)
ok jturner@
Guide your gold car through a mine, switching rails with a single button.
You can only go down, but thanks to an optic illusion in the levels, you can
always reach every point. Play this game alone or invite some friends and
play against each other. The game supports up to 6 people on one keyboard.
Everyone can enjoy this family friendly game, regardless of age or
experience.
ok landry@
1. it will disable the kernel logs about W^X violations.
2. the binary will not run at all unless the filesystem holding
/usr/local has the "wxallowed" flag set (in /etc/fstab), rather
than starting but having tabs crash all the time.
ok robert@
flashrom is a utility for identifying, reading, writing, verifying
and erasing flash chips. It is designed to flash BIOS, EFI, coreboot,
firmware and optionROM images on mainboards, network/graphics/storage
controller cards, and various programmer devices.
time.
We build boost itself with gcc-4.2.1 from base, which doesn't support
the integer scalar type __int128, and this results in a
/usr/local/include/boost/config/user.hpp lacking the "BOOST_HAS_INT128"
define.
When compiling something that depends on boost using a newer compiler
like gcc-4.9 or clang, a code snippet in
/usr/local/include/boost/config/compiler/{clang,gcc}.hpp reactivates
__int128 support, but the code containing typedef declarations
inside /usr/local/include/boost/config/suffix.hpp is never reached,
because /usr/local/include/boost/config/user.hpp lacks "BOOST_HAS_INT128".
Hence, the following errors occur:
/usr/local/include/boost/type_traits/is_integral.hpp:72:1: error: 'int128_type' is not a member of 'boost'
/usr/local/include/boost/type_traits/is_integral.hpp:73:1: error: 'uint128_type' is not a member of 'boost'
As a temporary band-aid, completely disable __int128 support on
OpenBSD.
OK jca@, sthen@