OSSP CVS Repository |
|
Date | Version | Description |
---|---|---|
1.161 | Check-in [6010]: remove OSSP uuid from CVS -- it is now versioned controlled in a Monotone repository By rse. (diff) | |
1.160 | Check-in [6008]: upgrade to GNU libtool 2.2.4 and GNU autoconf 2.62 By rse. (diff) | |
1.159 | Check-in [6001]: Improve PRNG under Win32 By rse. (diff) | |
1.158 | Check-in [5997]: Consistently annotate "RFC-XXXX" with "IETF" to clearly indicate from which standards body this comes from. By rse. (diff) | |
1.157 | Check-in [5995]: Resolve namespace conflicts of recently introduced time_xxx() functions by using a propoer "uuid_" prefix. By rse. (diff) | |
1.156 | Check-in [5993]: 1. Remove unused "struct timezone" from time_gettimeofday() in order to simplify portability. 2. Add support for POSIX clock_gettime(3) in case the Unix/POSIX gettimeofday(3) is not available. By rse. (diff) | |
1.155 | Check-in [5992]: Upgrade build environment to GNU libtool 2.2 By rse. (diff) | |
1.154 | Check-in [5990]: prepare release of OSSP uuid 1.6.1 By rse. (diff) | |
1.153 | Check-in [5988]: Port to Win32 API By rse. (diff) | |
1.152 | Check-in [5985]: adjust copyright messages for 2008 and bump version in advance By rse. (diff) | |
1.151 | Check-in [5984]: ops, fix ChangeLog By rse. (diff) | |
1.150 | Check-in
[5977]:
Fix __VA_COPY_USE_{CSP,CPP} fallback macros for va_copy.
Submitted by: Mark A. Lindner <mark.a.lindner@gmail.com> By rse. (diff) | |
1.149 | Check-in [5976]: PostgreSQL bindings: use SET_VARSIZE() instead of assigning to bytea->v_len under PostgreSQL >= 8.3 By rse. (diff) | |
1.148 | Check-in [5967]: Upgrade build environment to GNU libtool 1.5.24 By rse. (diff) | |
1.147 | Check-in [5945]: bump before release By rse. (diff) | |
1.146 | Check-in [5944]: Expand unused "datarootdir" in Makefile.in and uuid-config.in to make newer GNU autoconf versions happy. By rse. (diff) | |
1.145 | Check-in [5943]: Upgrade build environment to GNU shtool 2.0.7 By rse. (diff) | |
1.144 | Check-in [5940]: Make GNU autoconf procedure of PHP binding more robust by using -Wl,-Bsymbolic only on platforms where uuid_create(3) actually exists and where -Wl,-Bsymbolic is really accepted by the tool chain. This especially unbreaks MacOS X. By rse. (diff) | |
1.143 | Check-in [5680]: Fix "uuid_export" function in PHP bindings under UUID_FMT_SIV, UUID_FMT_STR and UUID_FMT_TXT where the NUL-termination character should be not passed back to PHP. By rse. (diff) | |
1.142 | Check-in [5676]: Adjust copyright messages for new year 2007. By rse. (diff) | |
1.141 | Check-in [5671]: Upgrade build environment to GNU autoconf 2.61 By rse. (diff) | |
1.140 | Check-in
[5670]:
Disable PostgreSQL "(CSTRING AS uuid)" and "(uuid AS CSTRING)"
CASTS as PostgreSQL 8.2 and higher explicitly disallow this.
Submitted by: David Wheeler <david@kineticode.com> By rse. (diff) | |
1.139 | Check-in [5669]: Fix PostgreSQL bindings by mapping the correct DSO symbol to the functions "uuid_send" and "uuid_recv". By rse. (diff) | |
1.138 | Check-in
[5668]:
Silence PostgreSQL processing messages
Submitted by: David Wheeler <david@kineticode.com> By rse. (diff) | |
1.137 | Check-in [5665]: Support MacOS X (aka Darwin) in PostgreSQL bindings by passing a "-bundle_loader" option to the linker in order to resolve the "undefined symbols" problem. By rse. (diff) | |
1.136 | Check-in [5664]: remember fix By rse. (diff) | |
1.135 | Check-in
[5662]:
Added PostgreSQL 8.2 PG_MODULE_MAGIC support.
Submitted by: David Wheeler <david@kineticode.com> By rse. (diff) | |
1.134 | Check-in
[5661]:
Fix the Data::UUID::to_b64string() function of the Perl backward
compatibility API: an empty string was not supplied as the EOL
marker to MIME::Base64::encode_base64() and hence the returned
string ended with a newline character (which in turn breaks many
applications using Data::UUID).
Submitted by: Piotr Roszatycki <dexter@debian.org> By rse. (diff) | |
1.133 | Check-in
[5659]:
Change type of "data_ptr" argument in uuid_export() API signature
from "void **" to "void " as there is unfortunately no
"generic pointer to pointer type" in ISO C (see also
¤http://c-faq.com/ptrs/genericpp.html) and "void **" is just a
"pointer to a 'void *'".
The "void **" especially had the nasty side-effect that it breaks strict pointer aliasing rules of ISO C and hence would require fiddling with temporary variables on all uuid_export() calls if one would be 100% correct and avoid aliasing related compiler warnings. Instead, as uuid_export() internally has to cast the "data_ptr" to the particular expected type anyway, it is better to have "data_ptr" just be a really generic "void *" in the API signature. Keep in mind that although this is an API change, it doesn't cause any incompatibilities as the function still expects the same "pointer to a pointer of a particular type". This expected pointer is just now passed the more correct although less intuitive way. Submitted by: Hrvoje Niksic <hniksic@xemacs.org> By rse. (diff) | |
1.132 | Check-in [5630]: Optional DMALLOC based memory debugging support. By rse. (diff) | |
1.131 | Check-in [5629]: remember change By rse. (diff) | |
1.130 | Check-in
[5614]:
Use "MODULE_PATHNAME" instead of "@MODULE_PATHNAME@" in
uuid.sql.in to be more aligned to the PostgreSQL styles.
Submitted by: Simon "janus" Dassow <janus@errornet.de> By rse. (diff) | |
1.129 | Check-in [5613]: Use the available variables $(LIB_NAME), $(DCE_NAME) and $(CXX_NAME) more consistently in Makefile.in to allow packagers to override the library name with less patching. By rse. (diff) | |
1.128 | Check-in [5612]: Now especially use a MANIFEST file which explicitly lists all files which form the distribution tarball. We compare the tarball and the MANIFEST file for differences in the "devtool dist" now. By rse. (diff) | |
1.127 | Check-in [5611]: Fix the "make distclean" target of php/Makefile.local to make sure the ".deps" file is not left over. By rse. (diff) | |
1.126 | Check-in [5608]: Fix the tarball rolling procedure to make sure we do not distribute binary files again. By rse. (diff) | |
1.125 | Check-in [5532]: prepare for release By rse. (diff) | |
1.124 | Check-in [5529]: Fixed potential memory leak in uuid_create() as spotted by SPLINT. By rse. (diff) | |
1.123 | Check-in [5528]: Cleanup source code according to complains by SPLINT. By rse. (diff) | |
1.122 | Check-in [5527]: Cleanup internal uuid_mac.h header. By rse. (diff) | |
1.121 | Check-in [5426]: fix typo By rse. | |
1.120 | Check-in
[5605]:
Numerious fixed to the error handling in the PostgreSQL bindings.
Submitted by: Neil Conway <neilc@samurai.com> By rse. (diff) | |
1.119 | Check-in [5424]: upgrade to GNU autoconf 2.60 By rse. (diff) | |
1.118 | Check-in
[5399]:
- Add Hash indexing support UUID data type of PostgreSQL bindings.
- Add comparison operators and B-Tree indexing support UUID data
type of PostgreSQL bindings.
Submitted by: Roman Neuhauser <neuhauser@sigpipe.cz> By rse. (diff) | |
1.117 | Check-in
[5398]:
Fix PHP bindings: the wrong argument to uuid_create()
was forced to a reference
Submitted by: Roman Neuhauser <neuhauser@sigpipe.cz> By rse. (diff) | |
1.116 | Check-in [5396]: Add full support for Single Integer Value (SIV) UUID representation for both importing and exporting in C/C++/Perl/PHP APIs. By rse. (diff) | |
1.115 | Check-in [5395]: Upgrade build environment to GNU shtool 2.0.6 By rse. (diff) | |
1.114 | Check-in [5394]: Added an "OVERVIEW" file which tries to give the "big picture" about UUIDs and allows to survice during the nasty UUID bit fiddling. By rse. (diff) | |
1.113 | Check-in [5393]: Replaced "clock_seq_and_reserved" with "clock_seq_high_and_reserved" in uuid.pod to already reflect the description in the forthcoming RFC. By rse. (diff) | |
1.112 | Check-in [5384]: Speed up processing in uuid_str.c by reducing va_copy() calls from two to just one per formatting. By rse. (diff) | |
1.111 | Check-in [5382]: bump version before release By rse. | |
1.110 | Check-in [5381]: Fix uuid_export() function by fixing the internal uuid_s[ar]printf() functions which require the backup of va_list arguments between subsequent processing. By rse. (diff) | |
1.109 | Check-in [5380]: Fix Perl API's "export" function by not taking over NUL-termination character under UUID_FMT_TXT. By rse. (diff) | |
1.108 | Check-in [5378]: Declare "install", "uninstall" and "clean" make(1) targets ".PHONY". This especially workarounds problems on case insensitive filesystems (like MacOS X' filesystem) where the "INSTALL" document conflicts with the "install" target. By rse. (diff) | |
1.107 | Check-in [5376]: bump before release By rse. (diff) | |
1.106 | Check-in [5372]: Upgrade to GNU shtool 2.0.4 By rse. (diff) | |
1.105 | Check-in
[5371]:
Apply workaround to uuid.h to avoid conflicts with
vendor UUID implementations where uuid_t (Darwin / MacOS X)
or uuid_create/uuid_compare (POSIX) might exist.
Supported by: SpaceNet (MacOS X platform) By rse. (diff) | |
1.104 | Check-in [5364]: adjust for release By rse. (diff) | |
1.103 | Check-in [5362]: create a top-level Perl ExtUtils::MakeMaker wrapper script to make the CPAN people more happy By rse. (diff) | |
1.102 | Check-in [5356]: Adjust copyright messages for new year 2006. By rse. (diff) | |
1.101 | Check-in [5354]: bump up the version because of PostgreSQL bindings By rse. | |
1.100 | Check-in [5351]: Added experimental PostgreSQL bindings. By rse. (diff) | |
1.99 | Check-in [5350]: Fixed documentation of uuid_make() function. By rse. (diff) | |
1.98 | Check-in [5349]: Upgrade build environment to GNU libtool 1.5.22 By rse. (diff) | |
1.97 | Check-in [5347]: bump before release By rse. (diff) | |
1.96 | Check-in
[5346]:
Cleaned up and speed optimized perl/uuid_compat.pm
(the Data::UUID compatibility module for Perl)
Submitted by: David Wheeler <david@justatheory.com> By rse. (diff) | |
1.95 | Check-in [5285]: Upgrade to GNU shtool 2.0.3 By rse. (diff) | |
1.94 | Check-in [5183]: remember change By rse. (diff) | |
1.93 | Check-in [5179]: Fix two incorrect casts, detected by compiling the C code under C++ constraints. By rse. (diff) | |
1.92 | Check-in [5178]: bump version before release By rse. (diff) | |
1.91 | Check-in [5176]: Remove a compiler warning in the PHP bindings (undeclared function). Detected by Intel icc(1). By rse. | |
1.90 | Check-in [5175]: Plug memory leak in PRNG sub-library. Detected by valgrind(1). By rse. (diff) | |
1.89 | Check-in [5162]: Add VPATH/srcdir support for at the default build procedure plus at least C++ and DCE build options. By rse. (diff) | |
1.88 | Check-in [5161]: small cleanups to the source tree only By rse. (diff) | |
1.87 | Check-in [5156]: prepare for release By rse. (diff) | |
1.86 | Check-in [5151]: Add an experimental PHP 4/5 language API binding which can be enabled under build-time with opption --with-php. By rse. (diff) | |
1.85 | Check-in [5144]: remember commit By rse. (diff) | |
1.84 | Check-in [5140]: Add an experimental C++ API binding which can be enabled under build-time with option --with-cxx. By rse. (diff) | |
1.83 | Check-in [5139]: Cleanup the internals of the uuid_create() function and add a new corresponding uuid_clone() API function. By rse. (diff) | |
1.82 | Check-in [5138]: Cleanup some Makefile parts. By rse. (diff) | |
1.81 | Check-in [5137]: Added a pkg-config(1) specification uuid.pc which is also installed by default in addition to the old-style uuid-config tool. By rse. | |
1.80 | Check-in
[5132]:
Added optional Data::UUID backward compatibility Perl API which can
be enabled with the build-time option --with-perl-compat.
Submitted by: Piotr Roszatycki <dexter@debian.org> By rse. (diff) | |
1.79 | Check-in [5131]: Add a functionality-reduced TIE-style Perl API OSSP::uuid::tie, intended for very high-level convenience programming. By rse. (diff) | |
1.78 | Check-in [5125]: Reference the new officially published RFC 4122 By rse. (diff) | |
1.77 | Check-in [5118]: Add SEEALSO document which references all known UUID implementations. By rse. (diff) | |
1.76 | Check-in [5117]: Improve the PRNG in case no stronger system PRNG device is available by passing time and rand(3) based entropy into the MD5 one-way hash function to achieve at least some sort of weaker PRN data. By rse. (diff) | |
1.75 | Check-in [5116]: upgrade to newer build tools By rse. (diff) | |
1.74 | Check-in [5095]: Fix MAC address determination under Solaris by using the result of ioctl(...,SIOCGARP,...) only if arp_flags had ATF_COM set. By rse. (diff) | |
1.73 | Check-in [5056]: Upgrade to GNU libtool 1.5.16 By rse. (diff) | |
1.72 | Check-in [5039]: Cleanup the source code even more by following a large set of FlexeLint's suggestions. By rse. (diff) | |
1.71 | Check-in
[5038]:
Fixed generated "section" number in uuid-config(1).
Taken over from code by: Piotr Roszatycki <dexter@debian.org> By rse. | |
1.70 | Check-in [5582]: prepare for release By rse. (diff) | |
1.69 | Check-in [4969]: Remember what was done, too. By rse. (diff) | |
1.68 | Check-in [4968]: Added support for new version 5 UUIDs (name-based, SHA-1) according to latest draft-mealling-uuid-urn-05.txt. By rse. (diff) | |
1.67 | Check-in [4956]: bump version and date before release By rse. (diff) | |
1.66 | Check-in
[4955]:
Fix generation of v3 UUIDs by adding support for 64-bit platforms
to the underlying uuid_md5.c code (which internally is based on
the RFC reference code which in turn assumes a 32-bit environment).
64-bit platform problem discovered by maintainer of OSSP uuid Debian package: Piotr Roszatycki <Piotr_Roszatycki@netia.net.pl> By rse. (diff) | |
1.65 | Check-in [4954]: Optimize internal md5_store() function by directly finalizing MD5 calculation on buffer copy instead of finalizing original buffer and having to restore it from the buffer copy. By rse. (diff) | |
1.64 | Check-in [4943]: Adjust copyright messages for new year 2005. By rse. (diff) | |
1.63 | Check-in [4885]: Do not rebuild the Perl API if there were no actual changes. By rse. (diff) | |
1.62 | Check-in [4852]: Apply the FreeBSD libc uuid_create() related workaround in the Perl bindings also under FreeBSD 6.0-CURRENT. By rse. (diff) | |
1.61 | Check-in [4851]: Fix --with-perl configure option processing: Perl is only required if --with-perl is used although we search for Perl always in order to provide the PERL variable substitution. By rse. | |
1.60 | Check-in [5576]: fix before release By rse. (diff) | |
1.59 | Check-in [4815]: Add --with-perl configure option for optionally enabling the Perl language bindings. By rse. (diff) | |
1.58 | Check-in [4813]: Add Perl language binding providing both a C-style and OO-style API. By rse. (diff) | |
1.57 | Check-in [4796]: fix ChangeLog header By rse. (diff) | |
1.56 | Check-in [4747]: Fix version detection from uuid_vers.h By rse. (diff) | |
1.55 | Check-in [4745]: bump before release By rse. (diff) | |
1.54 | Check-in
[4744]:
Support configuring/building/installing from an arbitrary
directory via srcdir/top_srcdir/VPATH.
Submitted by: David Lee <t.d.lee@durham.ac.uk> By rse. (diff) | |
1.53 | Check-in [4742]: Upgrade build environment to GNU libtool 1.5.10 By rse. (diff) | |
1.52 | Check-in [4711]: Upgrade build environment to GNU libtool 1.5.8 and GNU shtool 2.0.1; use FreeBSD 6-CURRENT URL in manpage By rse. (diff) | |
1.51 | Check-in [4645]: switch to GNU shtool 2.0.0 By rse. | |
1.50 | Check-in [4644]: Made documentation of uuid_export() more clear. By rse. (diff) | |
1.49 | Check-in [4598]: Upgrade build environment to GNU libtool 1.5.6 By rse. (diff) | |
1.48 | Check-in [4596]: Remove some warnings occurring under GCC 3.5 By rse. (diff) | |
1.47 | Check-in [4438]: correct spelling: privileges, convenient; By thl. (diff) | |
1.46 | Check-in [4427]: Replace remaining (old) UUID_VERSIONX names with UUID_MAKE_VX in the documentation (uuid.pod). By rse. (diff) | |
1.45 | Check-in
[4426]:
- Resolve namespace conflicts with GCC 3.4 internal pow10() and round()
functions within uuid_str.c.
- Fix buffer handling in "uuid_export(..., UUID_FMT_TXT, vp, ...)" in
case "vp" is not NULL.
Partly submitted by: Fuyuki <fuyuki@nigredo.org> By rse. (diff) | |
1.44 | Check-in [4422]: remove trailing whitespaces By rse. (diff) | |
1.43 | Check-in [4420]: remove --with-rfc2518 option and functionality because even the IETF/IESG has finally approved our report about the broken random multicast MAC address generation in the standard (and will fix it in new versions of the draft-mealling-uuid-urn). So, finally get rid of this broken-by-design backward compatibility By rse. (diff) | |
1.42 | Check-in [4418]: Add support to uuid(1) CLI for decoding from stdin for both binary and string representations. By rse. (diff) | |
1.41 | Check-in
[4417]:
Add missing documentation entries for UUID_XXXX API constants and
uuid_version() function.
Submitted by: <fuyuki@nigredo.org> By rse. | |
1.40 | Check-in [4416]: Adjust references for new draft-mealling-uuid-urn-02.txt. By rse. (diff) | |
1.39 | Check-in
[4415]:
Replaced overlooked references to old
uuid_{unpack,pack,parse,format,dump}() functions with their
current uuid_{import,export}() replacements.
Submitted by: <fuyuki@nigredo.org> By rse. (diff) | |
1.38 | Check-in
[4414]:
Fixed "uuid -h" command.
Submitted by: fuyuki@nigredo.org By rse. (diff) | |
1.37 | Check-in [4411]: Ops, fix ChangeLog entries By rse. (diff) | |
1.36 | Check-in [4405]: Added an experimental additional DCE 1.1 API for backward compatibility with existing applications. By rse. (diff) | |
1.35 | Check-in [4400]: bump before release By rse. (diff) | |
1.34 | Check-in
[4399]:
Fixed filedescriptor leak in the PRNG sub-API.
Submitted by: Guerry Semones <guerry@tsunamiresearch.com> By rse. (diff) | |
1.33 | Check-in [4392]: Upgraded build environment to GNU libtool 1.5.2. By rse. (diff) | |
1.32 | Check-in [4388]: bump for release By rse. (diff) | |
1.31 | Check-in [4384]: flush more pending cleanups By rse. | |
1.30 | Check-in [4379]: strip trailing whitespaces By rse. (diff) | |
1.29 | Check-in
[4378]:
o Include <string.h> in uuid.h because of size_t usage.
o INCOMPATIBILITY: Refactor the API and rename uuid_generate() to uuid_make() and use a "uuid_t" pointer for the namespace on UUID_VERSION3 generation. To allow access to the internal pre-defined namespace UUIDs, provide a new uuid_load() function. Because uuid_load() now also allows the loading of the "nil" UUID, remove uuid_nil() from the API. After this second refactoring the API is now the one we originally wished for the forthcoming version 1.0 of OSSP uuid. By rse. (diff) | |
1.28 | Check-in [4373]: Add version support to API via UUID_VERSION (compile-time) and uuid_version() (link-time). By rse. (diff) | |
1.27 | Check-in [4371]: - Refactor the API by merging uuid_{unpack,pack,parse,format,dump}() functions into unified uuid_{import,export}() functions. This allows us to easily add support for other formats (e.g. XML) in the future without having the change the API in principle. - Document what DCE 1.1 UUID versions exist and what they are intended for. By rse. (diff) | |
1.26 | Check-in
[4368]:
- Cleanup the C code to also pass warning-free a C++ compiler.
- Support C++ by enclosing the C API declarations in
'extern "C" {...}' within uuid.h.
Submitted by: Guerry Semones <guerry@tsunamiresearch.com> By rse. (diff) | |
1.25 | Check-in [4364]: Improvide decoding in uuid_dump() by at least hex-dumping the binary representation in case of v3, v4 and Nil UUIDs. Also, annotate with better hints. By rse. (diff) | |
1.24 | Check-in [4363]: Recognize special "Nil UUID" on decoding in uuid_dump(). By rse. (diff) | |
1.23 | Check-in [4361]: bump before release By rse. (diff) | |
1.22 | Check-in [4357]: Tested OSSP uuid on 16 particular Unix platforms and list those in the new PORTING file. By rse. (diff) | |
1.21 | Check-in [4356]: remember change By rse. | |
1.20 | Check-in [4355]: Fix syntax error in uuid.ac By rse. (diff) | |
1.19 | Check-in [4349]: ops, one more 'sa' left over from copy & paste By rse. (diff) | |
1.18 | Check-in [4347]: bump version for release By rse. (diff) | |
1.17 | Check-in [4344]: Provide both incorrect RFC2518-based and correct IEEE 802 multicast address generation. The default now is the correct IEEE 802 multicast address generation but compile-time option --with-rfc2518 selects the broken variant. By rse. (diff) | |
1.16 | Check-in [4343]: remember what was done By rse. (diff) | |
1.15 | Check-in [4337]: Use BM_XXX() and str_xxx() APIs throughout internal implementation. By rse. (diff) | |
1.14 | Check-in [4332]: o Added missing manual page uuid-config(1). o Fixed output of "uuid-config --version" o Fixed typos in uuid.pod By rse. (diff) | |
1.13 | Check-in [4331]: Cleanup uuid.ac for unused elements. By rse. (diff) | |
1.12 | Check-in [4330]: Moved uuid_[u]int{8,16,32}_t auto-configuration into own internal header uuid_ac.h. By rse. (diff) | |
1.11 | Check-in
[4329]:
Fixed portability by replacing accidentally introduced
uint{8,16,32}_t with the portable uuid_uint{8,16,32}_t.
Prefix all variable symbols in uuid.h with underscores
to avoid namespace conflicts.
Submitted by: Guerry Semones <guerry@tsunamiresearch.com> By rse. | |
1.10 | Check-in [4328]: Add decoding examples to uuid(1) manual page. By rse. (diff) | |
1.9 | Check-in [4319]: Make "md5_init" and "mac_address" symbols namespace clean by adding correct embedding support via "uuid_" prefix. By rse. (diff) | |
1.8 | Check-in [4318]: Implement uuid_dump() and corresponding uuid CLI "-d" option for dumping a given UUID into clear text. For convinience reasons add uuid_bm.h (bit mask API) and uuid_str (string formatting API) sub-modules. By rse. (diff) | |
1.7 | Check-in [4317]: Disable the C++ and F77 checks in GNU libtool. By rse. (diff) | |
1.6 | Check-in
[4316]:
Print involved option character (instead of '?') on invalid
option for uuid(1) CLI.
Submitted by: Matthias Andree <matthias.andree@gmx.de> PR: 29 By rse. (diff) | |
1.5 | Check-in
[4315]:
Fixed "make install" and "make uninstall": the uuid(1) CLI
has to be [un]installed through GNU libtool, too.
Submitted by: Matthias Andree <matthias.andree@gmx.de> PR: 30 By rse. (diff) | |
1.4 | Check-in
[4314]:
Document in uuid(1) [uuid_cli.pod] that for version 3
UUIDs additional arguments are required and what pre-defined
namespace ids are known.
Submitted by: M.Daniel <mdaniel@scdi.com> PR: 31 By rse. (diff) | |
1.3 | Check-in [3748]: more documentation By rse. (diff) | |
1.2 | Check-in [3747]: use 'Universally Unique Identifier' with plural By rse. (diff) | |
1.1 | Check-in [3746]: add the usual amount of standard files, too By rse. |