Avoid using a utility header for Python replacements included in Samba,
[ira/wip.git] / source4 / lib / com / pycom.c
index 753b7f8f9dabee4bd288eb3f6aa5f1659f38b641..d5a07580ea1dbf405b78372197368d474c585d61 100644 (file)
 */
 
 #include "includes.h"
-#include "../lib/util/python_util.h"
+#include <Python.h>
 #include "lib/com/com.h"
 #include "librpc/ndr/libndr.h"
 #include "libcli/util/pyerrors.h"
 
+#ifndef Py_RETURN_NONE
+#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
+#endif
+
 static struct com_context *py_com_ctx = NULL; /* FIXME: evil global */
 
 static PyObject *py_get_class_object(PyObject *self, PyObject *args)