|
Revision 99fab9089e9e1709d9c3a4bc5ced0c137ac59134, 203 bytes
(checked in by Rémi Denis-Courmont <rem@videolan.org>, 10 months ago)
|
Don't include config.h from the headers - refs #297.
Missing some cases that I could not test.
Also ffmpeg/chroma.c is locked, so I can but leave it broken.
Fix is for the remaining modules is obvious and the issue is easy to detect.
|
- Property mode set to
100644
|
| Line | |
|---|
| 1 |
#include "../pyunit.h" |
|---|
| 2 |
#ifdef HAVE_CONFIG_H |
|---|
| 3 |
# include "config.h" |
|---|
| 4 |
#endif |
|---|
| 5 |
|
|---|
| 6 |
#include <vlc/vlc.h> |
|---|
| 7 |
|
|---|
| 8 |
PyObject *timers_test( PyObject *self, PyObject *args ) |
|---|
| 9 |
{ |
|---|
| 10 |
Py_INCREF( Py_None ); |
|---|
| 11 |
return Py_None; |
|---|
| 12 |
} |
|---|