From f5c49b2f76e3cdd86e34893dc393d4184e8f03fd Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 19 Mar 2003 22:27:37 +0000 Subject: [PATCH] kludge because openssl and zlib both typedef free_func :( svn:r208 --- trunk/src/or/or.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trunk/src/or/or.h b/trunk/src/or/or.h index af5f881404..4871ee3b78 100644 --- a/trunk/src/or/or.h +++ b/trunk/src/or/or.h @@ -37,7 +37,9 @@ #include #include #ifdef USE_ZLIB +#define free_func zlib_free_func #include +#undef free_func #endif #include "../common/crypto.h"