OSSP CVS Repository

ossp - History for /ossp-pkg/uuid/ChangeLog
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Directory]  [Omit Milestones

DateVersion Description
2008-Jul-05 14:58    1.161    Check-in [6010]: remove OSSP uuid from CVS -- it is now versioned controlled in a Monotone repository By rse. (diff)
2008-Jul-04 23:45    1.160    Check-in [6008]: upgrade to GNU libtool 2.2.4 and GNU autoconf 2.62 By rse. (diff)
2008-Jun-04 19:27    1.159    Check-in [6001]: Improve PRNG under Win32 By rse. (diff)
2008-Mar-07 14:52    1.158    Check-in [5997]: Consistently annotate "RFC-XXXX" with "IETF" to clearly indicate from which standards body this comes from. By rse. (diff)
2008-Mar-07 10:28    1.157    Check-in [5995]: Resolve namespace conflicts of recently introduced time_xxx() functions by using a propoer "uuid_" prefix. By rse. (diff)
2008-Mar-06 13:14    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)
2008-Mar-06 11:04    1.155    Check-in [5992]: Upgrade build environment to GNU libtool 2.2 By rse. (diff)
2008-Feb-21 16:36    1.154    Check-in [5990]: prepare release of OSSP uuid 1.6.1 By rse. (diff)
2008-Feb-21 09:58    1.153    Check-in [5988]: Port to Win32 API By rse. (diff)
2008-Jan-10 15:18    1.152    Check-in [5985]: adjust copyright messages for 2008 and bump version in advance By rse. (diff)
2008-Jan-10 15:16    1.151    Check-in [5984]: ops, fix ChangeLog By rse. (diff)
2007-Oct-12 22:57    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)

2007-Oct-12 22:34    1.149    Check-in [5976]: PostgreSQL bindings: use SET_VARSIZE() instead of assigning to bytea->v_len under PostgreSQL >= 8.3 By rse. (diff)
2007-Aug-28 14:26    1.148    Check-in [5967]: Upgrade build environment to GNU libtool 1.5.24 By rse. (diff)
2007-May-19 22:00    1.147    Check-in [5945]: bump before release By rse. (diff)
2007-May-19 21:59    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)
2007-May-19 21:56    1.145    Check-in [5943]: Upgrade build environment to GNU shtool 2.0.7 By rse. (diff)
2007-May-19 21:30    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)
2007-Jan-01 19:39    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)
2007-Jan-01 19:14    1.142    Check-in [5676]: Adjust copyright messages for new year 2007. By rse. (diff)
2006-Nov-20 21:11    1.141    Check-in [5671]: Upgrade build environment to GNU autoconf 2.61 By rse. (diff)
2006-Nov-20 21:10    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)

2006-Nov-20 21:00    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)
2006-Nov-20 20:58    1.138    Check-in [5668]: Silence PostgreSQL processing messages

Submitted by: David Wheeler <david@kineticode.com> By rse. (diff)

2006-Nov-20 20:29    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)
2006-Nov-20 20:27    1.136    Check-in [5664]: remember fix By rse. (diff)
2006-Nov-20 20:21    1.135    Check-in [5662]: Added PostgreSQL 8.2 PG_MODULE_MAGIC support.

Submitted by: David Wheeler <david@kineticode.com> By rse. (diff)

2006-Nov-20 19:17    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)

2006-Oct-06 10:32    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)

2006-Aug-02 15:11    1.132    Check-in [5630]: Optional DMALLOC based memory debugging support. By rse. (diff)
2006-Aug-02 13:59    1.131    Check-in [5629]: remember change By rse. (diff)
2006-Jul-31 14:43    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)

2006-Jul-31 14:22    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)
2006-Jul-31 14:02    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)
2006-Jul-31 13:42    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)
2006-Jul-31 13:32    1.126    Check-in [5608]: Fix the tarball rolling procedure to make sure we do not distribute binary files again. By rse. (diff)
2006-Jul-28 21:17    1.125    Check-in [5532]: prepare for release By rse. (diff)
2006-Jul-28 20:22    1.124    Check-in [5529]: Fixed potential memory leak in uuid_create() as spotted by SPLINT. By rse. (diff)
2006-Jul-28 20:18    1.123    Check-in [5528]: Cleanup source code according to complains by SPLINT. By rse. (diff)
2006-Jul-28 20:04    1.122    Check-in [5527]: Cleanup internal uuid_mac.h header. By rse. (diff)
2006-Jul-20 19:46    1.121    Check-in [5426]: fix typo By rse.
2006-Jul-20 19:21    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)

2006-Jul-20 19:04    1.119    Check-in [5424]: upgrade to GNU autoconf 2.60 By rse. (diff)
2006-May-11 20:32    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)

2006-May-11 19:44    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)

2006-May-11 11:37    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)
2006-May-10 11:16    1.115    Check-in [5395]: Upgrade build environment to GNU shtool 2.0.6 By rse. (diff)
2006-May-10 11:07    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)
2006-May-10 10:53    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)
2006-Mar-17 08:10    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)
2006-Mar-13 10:42    1.111    Check-in [5382]: bump version before release By rse.
2006-Mar-13 10:39    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)
2006-Mar-13 10:14    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)
2006-Feb-23 14:32    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)
2006-Feb-07 09:42    1.107    Check-in [5376]: bump before release By rse. (diff)
2006-Feb-07 09:22    1.106    Check-in [5372]: Upgrade to GNU shtool 2.0.4 By rse. (diff)
2006-Feb-07 09:19    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)

2006-Jan-15 19:40    1.104    Check-in [5364]: adjust for release By rse. (diff)
2006-Jan-15 19:37    1.103    Check-in [5362]: create a top-level Perl ExtUtils::MakeMaker wrapper script to make the CPAN people more happy By rse. (diff)
2006-Jan-13 07:44    1.102    Check-in [5356]: Adjust copyright messages for new year 2006. By rse. (diff)
2006-Jan-12 21:32    1.101    Check-in [5354]: bump up the version because of PostgreSQL bindings By rse.
2006-Jan-12 21:00    1.100    Check-in [5351]: Added experimental PostgreSQL bindings. By rse. (diff)
2006-Jan-12 20:59    1.99    Check-in [5350]: Fixed documentation of uuid_make() function. By rse. (diff)
2006-Jan-07 09:11    1.98    Check-in [5349]: Upgrade build environment to GNU libtool 1.5.22 By rse. (diff)
2005-Dec-06 12:52    1.97    Check-in [5347]: bump before release By rse. (diff)
2005-Dec-06 08:38    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)

2005-Oct-30 10:38    1.95    Check-in [5285]: Upgrade to GNU shtool 2.0.3 By rse. (diff)
2005-Sep-25 13:09    1.94    Check-in [5183]: remember change By rse. (diff)
2005-Sep-24 12:28    1.93    Check-in [5179]: Fix two incorrect casts, detected by compiling the C code under C++ constraints. By rse. (diff)
2005-Sep-24 12:20    1.92    Check-in [5178]: bump version before release By rse. (diff)
2005-Sep-20 22:30    1.91    Check-in [5176]: Remove a compiler warning in the PHP bindings (undeclared function). Detected by Intel icc(1). By rse.
2005-Sep-20 22:29    1.90    Check-in [5175]: Plug memory leak in PRNG sub-library. Detected by valgrind(1). By rse. (diff)
2005-Sep-02 20:16    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)
2005-Sep-02 19:22    1.88    Check-in [5161]: small cleanups to the source tree only By rse. (diff)
2005-Sep-02 16:23    1.87    Check-in [5156]: prepare for release By rse. (diff)
2005-Sep-02 00:24    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)
2005-Aug-31 21:22    1.85    Check-in [5144]: remember commit By rse. (diff)
2005-Aug-31 16:29    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)
2005-Aug-31 16:28    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)
2005-Aug-31 14:59    1.82    Check-in [5138]: Cleanup some Makefile parts. By rse. (diff)
2005-Aug-31 13:16    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.
2005-Aug-31 11:59    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)

2005-Aug-31 10:55    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)
2005-Aug-30 22:34    1.78    Check-in [5125]: Reference the new officially published RFC 4122 By rse. (diff)
2005-Aug-30 20:36    1.77    Check-in [5118]: Add SEEALSO document which references all known UUID implementations. By rse. (diff)
2005-Aug-30 17:26    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)
2005-Aug-29 22:25    1.75    Check-in [5116]: upgrade to newer build tools By rse. (diff)
2005-Jun-15 20:34    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)
2005-May-16 11:59    1.73    Check-in [5056]: Upgrade to GNU libtool 1.5.16 By rse. (diff)
2005-Mar-29 21:01    1.72    Check-in [5039]: Cleanup the source code even more by following a large set of FlexeLint's suggestions. By rse. (diff)
2005-Mar-06 12:29    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.

2005-Jan-23 14:13    1.70    Check-in [5582]: prepare for release By rse. (diff)
2005-Jan-23 13:19    1.69    Check-in [4969]: Remember what was done, too. By rse. (diff)
2005-Jan-23 12:28    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)
2005-Jan-13 11:37    1.67    Check-in [4956]: bump version and date before release By rse. (diff)
2005-Jan-13 11:30    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)

2005-Jan-13 10:58    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)
2004-Dec-31 20:20    1.64    Check-in [4943]: Adjust copyright messages for new year 2005. By rse. (diff)
2004-Nov-29 08:37    1.63    Check-in [4885]: Do not rebuild the Perl API if there were no actual changes. By rse. (diff)
2004-Nov-18 16:58    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)
2004-Nov-18 16:57    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.
2004-Nov-03 19:48    1.60    Check-in [5576]: fix before release By rse. (diff)
2004-Nov-03 18:07    1.59    Check-in [4815]: Add --with-perl configure option for optionally enabling the Perl language bindings. By rse. (diff)
2004-Nov-03 15:52    1.58    Check-in [4813]: Add Perl language binding providing both a C-style and OO-style API. By rse. (diff)
2004-Oct-31 12:58    1.57    Check-in [4796]: fix ChangeLog header By rse. (diff)
2004-Oct-16 20:20    1.56    Check-in [4747]: Fix version detection from uuid_vers.h By rse. (diff)
2004-Oct-15 20:27    1.55    Check-in [4745]: bump before release By rse. (diff)
2004-Oct-15 20:22    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)

2004-Oct-15 20:16    1.53    Check-in [4742]: Upgrade build environment to GNU libtool 1.5.10 By rse. (diff)
2004-Sep-12 16:21    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)
2004-Jul-16 23:05    1.51    Check-in [4645]: switch to GNU shtool 2.0.0 By rse.
2004-Jul-16 23:04    1.50    Check-in [4644]: Made documentation of uuid_export() more clear. By rse. (diff)
2004-Jun-09 21:19    1.49    Check-in [4598]: Upgrade build environment to GNU libtool 1.5.6 By rse. (diff)
2004-Jun-09 21:17    1.48    Check-in [4596]: Remove some warnings occurring under GCC 3.5 By rse. (diff)
2004-Feb-17 10:23    1.47    Check-in [4438]: correct spelling: privileges, convenient; By thl. (diff)
2004-Feb-16 10:41    1.46    Check-in [4427]: Replace remaining (old) UUID_VERSIONX names with UUID_MAKE_VX in the documentation (uuid.pod). By rse. (diff)
2004-Feb-16 10:13    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)

2004-Feb-13 22:08    1.44    Check-in [4422]: remove trailing whitespaces By rse. (diff)
2004-Feb-13 22:01    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)
2004-Feb-13 17:17    1.42    Check-in [4418]: Add support to uuid(1) CLI for decoding from stdin for both binary and string representations. By rse. (diff)
2004-Feb-13 17:01    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.

2004-Feb-13 16:13    1.40    Check-in [4416]: Adjust references for new draft-mealling-uuid-urn-02.txt. By rse. (diff)
2004-Feb-13 15:32    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)

2004-Feb-13 15:29    1.38    Check-in [4414]: Fixed "uuid -h" command.

Submitted by: fuyuki@nigredo.org By rse. (diff)

2004-Feb-11 15:53    1.37    Check-in [4411]: Ops, fix ChangeLog entries By rse. (diff)
2004-Feb-11 15:38    1.36    Check-in [4405]: Added an experimental additional DCE 1.1 API for backward compatibility with existing applications. By rse. (diff)
2004-Feb-06 09:51    1.35    Check-in [4400]: bump before release By rse. (diff)
2004-Feb-04 07:24    1.34    Check-in [4399]: Fixed filedescriptor leak in the PRNG sub-API.

Submitted by: Guerry Semones <guerry@tsunamiresearch.com> By rse. (diff)

2004-Jan-27 20:14    1.33    Check-in [4392]: Upgraded build environment to GNU libtool 1.5.2. By rse. (diff)
2004-Jan-19 15:59    1.32    Check-in [4388]: bump for release By rse. (diff)
2004-Jan-19 15:11    1.31    Check-in [4384]: flush more pending cleanups By rse.
2004-Jan-19 13:15    1.30    Check-in [4379]: strip trailing whitespaces By rse. (diff)
2004-Jan-19 13:15    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)

2004-Jan-18 21:19    1.28    Check-in [4373]: Add version support to API via UUID_VERSION (compile-time) and uuid_version() (link-time). By rse. (diff)
2004-Jan-18 20:59    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)
2004-Jan-18 20:22    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)

2004-Jan-18 12:31    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)
2004-Jan-17 15:21    1.24    Check-in [4363]: Recognize special "Nil UUID" on decoding in uuid_dump(). By rse. (diff)
2004-Jan-16 16:55    1.23    Check-in [4361]: bump before release By rse. (diff)
2004-Jan-16 16:50    1.22    Check-in [4357]: Tested OSSP uuid on 16 particular Unix platforms and list those in the new PORTING file. By rse. (diff)
2004-Jan-16 16:42    1.21    Check-in [4356]: remember change By rse.
2004-Jan-16 16:35    1.20    Check-in [4355]: Fix syntax error in uuid.ac By rse. (diff)
2004-Jan-15 21:26    1.19    Check-in [4349]: ops, one more 'sa' left over from copy & paste By rse. (diff)
2004-Jan-15 20:23    1.18    Check-in [4347]: bump version for release By rse. (diff)
2004-Jan-15 17:22    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)
2004-Jan-15 16:38    1.16    Check-in [4343]: remember what was done By rse. (diff)
2004-Jan-15 14:45    1.15    Check-in [4337]: Use BM_XXX() and str_xxx() APIs throughout internal implementation. By rse. (diff)
2004-Jan-15 13:55    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)
2004-Jan-15 13:43    1.13    Check-in [4331]: Cleanup uuid.ac for unused elements. By rse. (diff)
2004-Jan-15 13:38    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)
2004-Jan-15 13:32    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.

2004-Jan-14 17:00    1.10    Check-in [4328]: Add decoding examples to uuid(1) manual page. By rse. (diff)
2004-Jan-13 20:48    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)
2004-Jan-13 20:43    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)
2004-Jan-13 11:02    1.7    Check-in [4317]: Disable the C++ and F77 checks in GNU libtool. By rse. (diff)
2004-Jan-13 10:29    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)

2004-Jan-13 10:26    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)

2004-Jan-13 10:20    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)

2004-Jan-11 13:14    1.3    Check-in [3748]: more documentation By rse. (diff)
2004-Jan-11 09:54    1.2    Check-in [3747]: use 'Universally Unique Identifier' with plural By rse. (diff)
2004-Jan-11 09:48    1.1    Check-in [3746]: add the usual amount of standard files, too By rse.

CVSTrac 2.0.1