Azure / azure-storage-cpplite

Lite version of C++ Client Library for Microsoft Azure Storage
MIT License
25 stars 43 forks source link

Add UUID implementation compatibility with OSSP uuid #98

Closed pablorcum closed 3 years ago

pablorcum commented 3 years ago

The current UUID calls rely on libuuid. Other UUID implementations or existing libraries are not compatible with this Azure utility.

The OSSP uuid is another well-known UUID library for embedded targets, which is currently not supported. Therefore, despite of having an UUID library available, I have to install another dependency (libuuid-dev) to build for my target, or modify the source code.

Would it be possible to add compatibility with OSSP uuid?

pablorcum commented 3 years ago

No longer required. Boost UUID library is a better alternative.