~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/gameengine/Expressions/KX_Python.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: KX_Python.h,v 1.5 2004/03/22 22:01:29 jesterking Exp $
 
2
 * $Id: KX_Python.h,v 1.6 2007/02/18 21:03:23 h_xnan Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
35
35
//#define USE_DL_EXPORT
36
36
#include "Python.h"
37
37
 
 
38
#ifdef __FreeBSD__
 
39
#include <osreldate.h>
 
40
#if __FreeBSD_version > 500039
 
41
#undef isalnum
 
42
#undef isalpha
 
43
#undef iscntrl
 
44
#undef isdigit
 
45
#undef isgraph
 
46
#undef islower
 
47
#undef isprint
 
48
#undef ispunct
 
49
#undef isspace
 
50
#undef isupper
 
51
#undef isxdigit
 
52
#undef tolower
 
53
#undef toupper
 
54
#endif
 
55
#endif
 
56
 
38
57
#endif // KX_PYTHON_H
39
58