broken build!

FILE_MAX undefied in util.c
implicit method def Armature_CreatePyObject() in Armature.
This commit is contained in:
Stephen Swaney 2007-02-22 10:20:27 +00:00
parent fbd8a16933
commit 5cb958f305
2 changed files with 3 additions and 10 deletions

@ -50,6 +50,8 @@
#include "BLI_dynamiclist.h"
#include "BLI_util.h"
#include "BKE_utildefines.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
@ -75,16 +77,6 @@
#include <CoreFoundation/CoreFoundation.h>
#endif
// copies from BKE_utildefines
#ifndef FILE_MAXDIR
#define FILE_MAXDIR 160
#endif
#ifndef FILE_MAXFILE
#define FILE_MAXFILE 80
#endif
/* local */
static int add_win32_extension(char *name);

@ -67,5 +67,6 @@ PyObject *Armature_RebuildBones(PyObject *pyarmature);
int Armature_CheckPyObject( PyObject * pyobj );
struct bArmature *Armature_FromPyObject( PyObject * py_obj );
PyObject *Armature_CreatePyObject(struct bArmature *armature);
#endif