diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-02-13 07:47:16 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-02-13 07:47:16 (GMT) |
commit | 8fef47be5f42c6b8b479e929cd57198a2572a9df (patch) | |
tree | 8fe4aade4419bebee61d0fc7821a476c7557de55 /Modules/expat | |
parent | 9ad4b688eca7b80ba00c408089593bba553ed73e (diff) | |
download | cpython-8fef47be5f42c6b8b479e929cd57198a2572a9df.zip cpython-8fef47be5f42c6b8b479e929cd57198a2572a9df.tar.gz cpython-8fef47be5f42c6b8b479e929cd57198a2572a9df.tar.bz2 |
Define VERSION in expat.h.
Diffstat (limited to 'Modules/expat')
-rw-r--r-- | Modules/expat/expat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/expat/expat.h b/Modules/expat/expat.h index 7642512..9259a45 100644 --- a/Modules/expat/expat.h +++ b/Modules/expat/expat.h @@ -724,6 +724,10 @@ typedef struct { XMLPARSEAPI(XML_Expat_Version) XML_ExpatVersionInfo(void); +/* VERSION is not defined in expat.h.in, but it really belongs here, + and defining it on the command line gives difficulties with MSVC. */ +#define VERSION "1.95.2" + #define XML_MAJOR_VERSION 1 #define XML_MINOR_VERSION 95 #define XML_MICRO_VERSION 2 |