| Summary: | dev-libs/xplc-0.3.11 needs to be marked stable on 64-bit arches | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Alin Năstac (RETIRED) <mrness> |
| Component: | [OLD] Library | Assignee: | Alin Năstac (RETIRED) <mrness> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | 2005.0 | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
done Olivier told me that alpha and hppa are or could be 64-bit arches. Please mark it stable on those arches. Alpha tasty Cheers, Ferdy Guy (gmsoft) told me hppa's userspace is 32-bit problem closed |
Due to a solved portability issue, this lib must be marked as stable ASAP. This is modification I'm talking about: diff -Nru xplc-0.3.10/work/xplc-0.3.10/xplc-cxx/uuidtostr.cpp xplc-0.3.11/work/xplc-0.3.11/xplc-cxx/uuidtostr.cpp --- xplc-0.3.10/work/xplc-0.3.10/xplc-cxx/uuidtostr.cpp 2004-06-25 21:23:30.000000000 +0300 +++ xplc-0.3.11/work/xplc-0.3.11/xplc-cxx/uuidtostr.cpp 2005-01-27 21:05:36.000000000 +0200 @@ -36,7 +36,7 @@ char* UuidToString(const UUID& uuid, char* str) { assert(str); - sprintf(str, "{%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}", + sprintf(str, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}", uuid.Data1, uuid.Data2, uuid.Data3, uuid.Data4[0], uuid.Data4[1], uuid.Data4[2], uuid.Data4[3], uuid.Data4[4], uuid.Data4[5], uuid.Data4[6], uuid.Data4[7]);