Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 663208
Collapse All | Expand All

(-)a/Modules/_uuidmodule.c (-4 / +2 lines)
Lines 1-10 Link Here
1
#define PY_SSIZE_T_CLEAN
1
#define PY_SSIZE_T_CLEAN
2
2
3
#include "Python.h"
3
#include "Python.h"
4
#ifdef HAVE_UUID_UUID_H
4
#if defined(HAVE_UUID_UUID_H)
5
#include <uuid/uuid.h>
5
#include <uuid/uuid.h>
6
#endif
6
#elif defined(HAVE_UUID_H)
7
#ifdef HAVE_UUID_H
8
#include <uuid.h>
7
#include <uuid.h>
9
#endif
8
#endif
10
9
11
- 

Return to bug 663208