From cce638a8adf4e045ca5505afea4bda57753c31dd Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Mon, 11 Aug 2014 16:33:29 -0400 Subject: initial import of debian package --- buildutils/initlibsodium.c | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 buildutils/initlibsodium.c (limited to 'buildutils/initlibsodium.c') diff --git a/buildutils/initlibsodium.c b/buildutils/initlibsodium.c new file mode 100644 index 0000000..f0de774 --- /dev/null +++ b/buildutils/initlibsodium.c @@ -0,0 +1,45 @@ +/* +This file is from pyzmq-static by Brandon Craig-Rhodes, +and used under the BSD license + +py3compat from http://wiki.python.org/moin/PortingExtensionModulesToPy3k + +Provide the init function that Python expects +when we compile libzmq by pretending it is a Python extension. +*/ +#include "Python.h" + +static PyMethodDef Methods[] = { + {NULL, NULL, 0, NULL} +}; + +#if PY_MAJOR_VERSION >= 3 + +static struct PyModuleDef moduledef = { + PyModuleDef_HEAD_INIT, + "libsodium", + NULL, + -1, + Methods, + NULL, + NULL, + NULL, + NULL +}; + +PyMODINIT_FUNC +PyInit_libzmq(void) +{ + PyObject *module = PyModule_Create(&moduledef); + return module; +} + +#else // py2 + +PyMODINIT_FUNC +initlibzmq(void) +{ + (void) Py_InitModule("libsodium", Methods); +} + +#endif -- cgit v1.2.3