Python API: when OCIO is disabled use the same version format.

This commit is contained in:
Campbell Barton 2013-12-10 01:11:02 +11:00
parent 11eb238b82
commit ab6f60aad2
1 changed files with 4 additions and 1 deletions

View File

@ -63,8 +63,11 @@ static PyObject *make_ocio_info(void)
return NULL;
}
#ifndef WITH_OCIO
#define SetStrItem(str) \
PyStructSequence_SET_ITEM(ocio_info, pos++, PyUnicode_FromString(str))
#endif
#define SetObjItem(obj) \
PyStructSequence_SET_ITEM(ocio_info, pos++, obj)
@ -77,7 +80,7 @@ static PyObject *make_ocio_info(void)
curversion >> 24, (curversion >> 16) % 256, (curversion >> 8) % 256));
#else
SetObjItem(PyBool_FromLong(0));
SetStrItem("Unknown");
SetObjItem(Py_BuildValue("(iii)", 0, 0, 0));
SetStrItem("Unknown");
#endif