mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
s3/s4 build: Fix Py_RETURN_NONE to work with python versions < 2.4
This commit is contained in:
@ -24,7 +24,7 @@
|
|||||||
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#ifdef HAVE_FSTAT
|
#ifdef HAVE_FSTAT
|
||||||
#undef HAVE_FSTAT
|
#undef HAVE_FSTAT
|
||||||
#endif
|
#endif
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#include <tevent.h>
|
#include <tevent.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <tevent_util.h>
|
#include <tevent_util.h>
|
||||||
|
31
lib/util/python_util.h
Normal file
31
lib/util/python_util.h
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
/*
|
||||||
|
Unix SMB/CIFS implementation.
|
||||||
|
Samba Python utility functions
|
||||||
|
Copyright (C) Tim Prouty <tprouty@samba.org> 2009
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _PYTHON_UTIL_H_
|
||||||
|
#define _PYTHON_UTIL_H_
|
||||||
|
|
||||||
|
#include <Python.h>
|
||||||
|
|
||||||
|
#if PY_VERSION_HEX < 0x02040000
|
||||||
|
#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
|
||||||
|
#define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True
|
||||||
|
#define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _PYTHON_UTIL_H_ */
|
@ -18,7 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#include "libcli/util/pyerrors.h"
|
#include "libcli/util/pyerrors.h"
|
||||||
#include "scripting/python/modules.h"
|
#include "scripting/python/modules.h"
|
||||||
#include "../libcli/nbt/libnbt.h"
|
#include "../libcli/nbt/libnbt.h"
|
||||||
|
@ -1121,7 +1121,7 @@ sub Parse($$$$$)
|
|||||||
$self->pidl_hdr("
|
$self->pidl_hdr("
|
||||||
/* Python wrapper functions auto-generated by pidl */
|
/* Python wrapper functions auto-generated by pidl */
|
||||||
#include \"includes.h\"
|
#include \"includes.h\"
|
||||||
#include <Python.h>
|
#include \"../lib/util/python_util.h\"
|
||||||
#include \"librpc/rpc/dcerpc.h\"
|
#include \"librpc/rpc/dcerpc.h\"
|
||||||
#include \"lib/talloc/pytalloc.h\"
|
#include \"lib/talloc/pytalloc.h\"
|
||||||
#include \"librpc/rpc/pyrpc.h\"
|
#include \"librpc/rpc/pyrpc.h\"
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
#include "../lib/util/python_util.h"
|
||||||
#include "pycredentials.h"
|
#include "pycredentials.h"
|
||||||
#include "param/param.h"
|
#include "param/param.h"
|
||||||
#include "lib/cmdline/credentials.h"
|
#include "lib/cmdline/credentials.h"
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#include "lib/com/com.h"
|
#include "lib/com/com.h"
|
||||||
#include "librpc/ndr/libndr.h"
|
#include "librpc/ndr/libndr.h"
|
||||||
#include "libcli/util/pyerrors.h"
|
#include "libcli/util/pyerrors.h"
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ldb_includes.h"
|
#include "ldb_includes.h"
|
||||||
|
#include "../lib/util/python_util.h"
|
||||||
#include "pyldb.h"
|
#include "pyldb.h"
|
||||||
|
|
||||||
/* There's no Py_ssize_t in 2.4, apparently */
|
/* There's no Py_ssize_t in 2.4, apparently */
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#include "scripting/python/modules.h"
|
#include "scripting/python/modules.h"
|
||||||
#include "libcli/util/pyerrors.h"
|
#include "libcli/util/pyerrors.h"
|
||||||
#include "librpc/rpc/pyrpc.h"
|
#include "librpc/rpc/pyrpc.h"
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#include "libcli/util/pyerrors.h"
|
#include "libcli/util/pyerrors.h"
|
||||||
#include "lib/registry/registry.h"
|
#include "lib/registry/registry.h"
|
||||||
#include "scripting/python/modules.h" /* for py_iconv_convenience() */
|
#include "scripting/python/modules.h" /* for py_iconv_convenience() */
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
#include "../lib/util/python_util.h"
|
||||||
#include "libcli/security/security.h"
|
#include "libcli/security/security.h"
|
||||||
|
|
||||||
static void PyType_AddMethods(PyTypeObject *type, PyMethodDef *methods)
|
static void PyType_AddMethods(PyTypeObject *type, PyMethodDef *methods)
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#include <structmember.h>
|
#include <structmember.h>
|
||||||
#include "librpc/rpc/pyrpc.h"
|
#include "librpc/rpc/pyrpc.h"
|
||||||
#include "librpc/rpc/dcerpc.h"
|
#include "librpc/rpc/dcerpc.h"
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
#include "param/param.h"
|
#include "param/param.h"
|
||||||
#include "param/loadparm.h"
|
#include "param/loadparm.h"
|
||||||
|
#include "../lib/util/python_util.h"
|
||||||
#include "pytalloc.h"
|
#include "pytalloc.h"
|
||||||
|
|
||||||
/* There's no Py_ssize_t in 2.4, apparently */
|
/* There's no Py_ssize_t in 2.4, apparently */
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include "lib/ldb-samba/ldif_handlers.h"
|
#include "lib/ldb-samba/ldif_handlers.h"
|
||||||
#include "librpc/ndr/libndr.h"
|
#include "librpc/ndr/libndr.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
#include "lib/ldb/pyldb.h"
|
#include "lib/ldb/pyldb.h"
|
||||||
#include "libcli/util/pyerrors.h"
|
#include "libcli/util/pyerrors.h"
|
||||||
#include "libcli/security/security.h"
|
#include "libcli/security/security.h"
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include "../lib/util/dlinklist.h"
|
#include "../lib/util/dlinklist.h"
|
||||||
#include "../lib/util/data_blob.h"
|
#include "../lib/util/data_blob.h"
|
||||||
#include "lib/tls/tls.h"
|
#include "lib/tls/tls.h"
|
||||||
#include <Python.h>
|
#include "../lib/util/python_util.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
PyObject_HEAD
|
PyObject_HEAD
|
||||||
|
Reference in New Issue
Block a user