Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 567672 Details for
Bug 663208
dev-lang/python-3.7.0: fails to build on amd64-fbsd; error: conflicting types for 'uuid_t' [...]
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
patch
0001-uuid-avoid-including-both-uuid-uuid.h-and-uuid.h.patch (text/plain), 737 bytes, created by
Mike Gilbert
on 2019-03-03 17:27:56 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Mike Gilbert
Created:
2019-03-03 17:27:56 UTC
Size:
737 bytes
patch
obsolete
>From d690f466291d662e9584f6b4339487de1a88b481 Mon Sep 17 00:00:00 2001 >From: Mike Gilbert <floppym@gentoo.org> >Date: Sun, 3 Mar 2019 12:24:39 -0500 >Subject: [PATCH] uuid: avoid including both <uuid/uuid.h> and <uuid.h> > >Bug: https://bugs.gentoo.org/663208 >--- > Modules/_uuidmodule.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > >diff --git a/Modules/_uuidmodule.c b/Modules/_uuidmodule.c >index 0b7f2a2545..a28d4d4d96 100644 >--- a/Modules/_uuidmodule.c >+++ b/Modules/_uuidmodule.c >@@ -1,10 +1,9 @@ > #define PY_SSIZE_T_CLEAN > > #include "Python.h" >-#ifdef HAVE_UUID_UUID_H >+#if defined(HAVE_UUID_UUID_H) > #include <uuid/uuid.h> >-#endif >-#ifdef HAVE_UUID_H >+#elif defined(HAVE_UUID_H) > #include <uuid.h> > #endif > >-- >2.21.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 663208
:
542828
| 567672