- Add note that building with --disable-shared at the moment doesn't work
git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@393 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
parent
8eeeaae3f5
commit
075e12d14d
|
@ -273,7 +273,8 @@ _sgpem_la_CPPFLAGS = \
|
|||
-I@top_srcdir@/src/backend \
|
||||
$(SWIG_PYTHON_CPPFLAGS) \
|
||||
$(GLIBMM_CFLAGS)
|
||||
_sgpem_la_LDFLAGS = -module $(GLIBMM_LDFLAGS)
|
||||
_sgpem_la_LDFLAGS = -module -export-dynamic \
|
||||
$(GLIBMM_LDFLAGS)
|
||||
_sgpem_la_LIBADD = src/backend/libbackend.la \
|
||||
$(GLIBMM_LIBS)
|
||||
_sgpem_la_SOURCES = $(wrappers)
|
||||
|
|
|
@ -210,6 +210,10 @@ For example, on my machine, I would use:
|
|||
@end example
|
||||
@sp 2
|
||||
|
||||
@strong{Warning}: at the moment, we are aware that passing
|
||||
@option{--disable-shared} to configure doesn't work. We'll look into it
|
||||
sooner or later, but in the meantime just build shared libraries.
|
||||
|
||||
@noindent Once succesfully configured SGPEMv2, just type:
|
||||
@example
|
||||
@command{make}
|
||||
|
|
|
@ -103,7 +103,8 @@ PythonPolicy::sort_queue(Scheduler::event event) const
|
|||
PyObject* pEvent = PyInt_FromLong(event);
|
||||
PyObject* pMethodName = PyString_FromString("async_sort_queue");
|
||||
PyObject* retval = PyObject_CallMethodObjArgs(_adapter, pMethodName, pEvent, NULL);
|
||||
Py_DECREF(retval);
|
||||
// Why we haven't to decref this?
|
||||
// Py_DECREF(retval);
|
||||
Py_DECREF(pMethodName);
|
||||
Py_DECREF(pEvent);
|
||||
|
||||
|
|
Loading…
Reference in New Issue