From e4ab5f5531d63023ccd2f99ac5e16945e1d51950 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 8 Jan 2006 01:08:09 +0000 Subject: [PATCH] Fix icc warnings: HASH_OBJ_CONSTRUCTOR was not defined and using #if HASH_OBJ_CONSTRUCTOR --- Modules/_hashopenssl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c index a3fb0527a8..9bdd274e43 100644 --- a/Modules/_hashopenssl.c +++ b/Modules/_hashopenssl.c @@ -18,6 +18,10 @@ #include +#ifndef HASH_OBJ_CONSTRUCTOR +#define HASH_OBJ_CONSTRUCTOR 0 +#endif + typedef struct { PyObject_HEAD PyObject *name; /* name of this hash algorithm */ -- 2.40.0