check for python2.3

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1000 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2003-08-11 12:03:36 +00:00
parent 3fb419154a
commit d464c8ba15

View file

@ -3,13 +3,13 @@
#include "Python.h"
/* require Python >= 2.0 */
/* require Python >= 2.3 */
#ifndef PY_VERSION_HEX
#error please install Python >= 2.0
#error please install Python >= 2.3
#endif
#if PY_VERSION_HEX < 0x02000000
#error please install Python >= 2.0
#if PY_VERSION_HEX < 0x02030000
#error please install Python >= 2.3
#endif
/* user_data type for SAX calls */