Commit d8f18ad8 authored by Jeremy Hylton's avatar Jeremy Hylton

Must import ExtensionClass.h before standard include files because it

imports Python.h.
parent 798125ef
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE. DAMAGE.
$Id: cAccessControl.c,v 1.20 2003/06/10 15:39:04 shane Exp $ $Id: cAccessControl.c,v 1.21 2003/09/11 16:00:42 jeremy Exp $
If you have questions regarding this software, If you have questions regarding this software,
contact: contact:
...@@ -48,12 +48,12 @@ ...@@ -48,12 +48,12 @@
*/ */
#include <stdio.h>
#include <stdlib.h>
#include "ExtensionClass.h" #include "ExtensionClass.h"
#include "Acquisition.h" #include "Acquisition.h"
#include <stdio.h>
#include <stdlib.h>
static void static void
PyVar_Assign(PyObject **v, PyObject *e) PyVar_Assign(PyObject **v, PyObject *e)
...@@ -2078,7 +2078,7 @@ void initcAccessControl(void) { ...@@ -2078,7 +2078,7 @@ void initcAccessControl(void) {
module = Py_InitModule3("cAccessControl", module = Py_InitModule3("cAccessControl",
cAccessControl_methods, cAccessControl_methods,
"$Id: cAccessControl.c,v 1.20 2003/06/10 15:39:04 shane Exp $\n"); "$Id: cAccessControl.c,v 1.21 2003/09/11 16:00:42 jeremy Exp $\n");
aq_init(); /* For Python <= 2.1.1, aq_init() should be after aq_init(); /* For Python <= 2.1.1, aq_init() should be after
Py_InitModule(). */ Py_InitModule(). */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment