mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-07 00:00:58 +00:00
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:
parent
3fb419154a
commit
d464c8ba15
1 changed files with 4 additions and 4 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue