From: Fred Drake Date: Thu, 28 Sep 2000 02:54:51 +0000 (+0000) Subject: Fix includes; not including Python.h caused the module not to compile on X-Git-Tag: v2.0c1~234 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6debecce5ddf1251f2430c159c7dc644748a30e;p=thirdparty%2FPython%2Fcpython.git Fix includes; not including Python.h caused the module not to compile on some platforms. This *should* close SourceForge patch #115506. --- diff --git a/Modules/md5c.c b/Modules/md5c.c index e6e7898eba74..a2b8aecd7b58 100644 --- a/Modules/md5c.c +++ b/Modules/md5c.c @@ -23,7 +23,7 @@ These notices must be retained in any copies of any part of this documentation and/or software. */ -#include "config.h" +#include "Python.h" #include "md5.h" /* Constants for MD5Transform routine. */