Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.45' '-r1.46' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2004/02/16 09:13:58 1.45 +++ ChangeLog 2004/02/16 09:41:51 1.46 @@ -13,6 +13,10 @@ Changes between 0.9.7 and 1.0.0 (13-Feb-2004 to 16-Feb-2004) + o Replace remaining (old) UUID_VERSIONX names with UUID_MAKE_VX + in the documentation (uuid.pod). + [Ralf S. Engelschall] + o Resolve namespace conflicts with GCC 3.4 internal pow10() and round() functions within uuid_str.c. [Ralf S. Engelschall] Index: ossp-pkg/uuid/uuid.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.pod,v rcsdiff -q -kk '-r1.15' '-r1.16' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.pod,v' 2>/dev/null --- uuid.pod 2004/02/13 16:01:23 1.15 +++ uuid.pod 2004/02/16 09:41:51 1.16 @@ -302,13 +302,13 @@ Generates a new UUID in I according to I and optional arguments (dependent on I). -If I contains the C bit, a DCE 1.1 variant UUID of -version 1 is generated. Then optionally the bit C forces +If I contains the C bit, a DCE 1.1 variant UUID of +version 1 is generated. Then optionally the bit C forces the use of random multi-cast MAC address instead of the real physical MAC address (the default). The UUID is generated out of the 60-bit current system time, a 12-bit clock sequence and the 48-bit MAC address. -If I contains the C bit, a DCE 1.1 variant UUID +If I contains the C bit, a DCE 1.1 variant UUID of version 3 is generated and two additional C-terminated string arguments of type "C" are expected: first a namespace, given as an internally pre-defined id (currently known are ids "C", @@ -317,7 +317,7 @@ the 128-bit MD5 from the concatenated octet stream of namespace UUID and name string. -If I contains the C bit, a DCE 1.1 variant UUID +If I contains the C bit, a DCE 1.1 variant UUID of version 4 is generated. The UUID is generated out of 128-bit random data. @@ -347,7 +347,7 @@ char *str = NULL; uuid_create(&uuid); - uuid_make(uuid, UUID_VERSION1); + uuid_make(uuid, UUID_MAKE_V1); uuid_export(uuid, UUID_FMT_STR, (void **)&str, NULL); uuid_destroy(uuid); return str; @@ -363,7 +363,7 @@ uuid_create(&uuid); uuid_create(&uuid_ns); uuid_load(uuid_ns, "ns:URL"); - uuid_make(uuid, UUID_VERSION3, uuid_ns, url); + uuid_make(uuid, UUID_MAKE_V3, uuid_ns, url); uuid_export(uuid, UUID_FMT_STR, (void **)&str, NULL); uuid_destroy(uuid_ns); uuid_destroy(uuid);