arch works by converting the .so to .a (which covers the case where a
shared arch builds an .so with no associated .a). As gettext has a couple
of shared libraries with no associated static library this scheme doesn't
work, so split it back out to PFRAG.shared to disable the magic. Fixes vax.
ok espie@ naddy@
It works flawlessly on alpha, crashes right away on hppa, but it's not
worse than sparc64 in that regard, so maybe that'll allow more stuff to
build on those archs.
ok sthen@ ajacoutot@
gconf_ping() will try to shutdown gconfd, but since installing pkg is
done as root, there is not gconfd nor dbus that can be started when
DISPLAY isn't set and an annoying warning is issued.
discussed with espie@
overhead! The SparseHash library contains several hash map
implementations, including implementations that optimize for space
or speed.
These hashtable implementations are similar in API to SGI's hash_map
class and the tr1 unordered_map class, but with different performance
characteristics. It's easy to replace hash_map or unordered_map by
sparse_hash_map or dense_hash_map in C++ code.
They also contain code to serialize and unserialize from disk.
This is a prerequisite of upcoming Clementine.
okay@ landry
JSON arrays will be mapped to QVariantList instances, while JSON's
objects will be mapped to QVariantMap.
This is prerequisite of Clementine and many KDE4 ports.
okay landry@
This is a implementation of the JSON specification according to RFC 4627. You
can think of it as a low fat alternative to XML, if you want to store data to
disk or transmit it over a network rather than use a verbose markup language.
ok jeremy@
to select(2) for MacOSX support. The select based implementation
was causing crashes under load for at least FreeBSD.
- Fix MulticastSocket.setInterface(). Report and fix from Oliver
Lehmann on bsd-port list.