This is a discussion on UUID patch broke win32 within the pgsql Hackers forums, part of the PostgreSQL category; --> Seems the UUID patch broke Windows builds. http://www.pgbuildfarm.org/cgi-bin/s...-28%2018:30:01 uuid_t is defined to UUID in the win32 platform SDK header ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Seems the UUID patch broke Windows builds. http://www.pgbuildfarm.org/cgi-bin/s...-28%2018:30:01 uuid_t is defined to UUID in the win32 platform SDK header files. I would suggest we use pguuid_t or something like that instead. //Magnus ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster |
| ||||
| On Sun, 2007-01-28 at 20:47 +0100, Magnus Hagander wrote: > uuid_t is defined to UUID in the win32 platform SDK header files. I > would suggest we use pguuid_t or something like that instead. We could possibly try to workaround it by #undef'ing any existing uuid_t definitions before we supply our own, but per out-of-band discussion with Magnus, it seems safer to just use a different type name altogether. Attached is a patch that renames uuid_t to pg_uuid_t (and makes some other minor cleanup of uuid.c), which I'll apply shortly. -Neil ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq |