From: wessels <> Date: Thu, 13 Aug 1998 23:38:18 +0000 (+0000) Subject: try again to disable assert under purify X-Git-Tag: SQUID_3_0_PRE1~2910 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aaf1b23520b7ae20c89412985f68b2eca3caecd7;p=thirdparty%2Fsquid.git try again to disable assert under purify --- diff --git a/src/squid.h b/src/squid.h index 75f0c76272..fbfd7240ff 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.175 1998/07/22 20:37:50 wessels Exp $ + * $Id: squid.h,v 1.176 1998/08/13 17:38:18 wessels Exp $ * * AUTHOR: Duane Wessels * @@ -68,6 +68,11 @@ #define FD_SETSIZE SQUID_MAXFD #endif +#if PURIFY +/* disable assert() under purify */ +#define NODEBUG +#endif + #if HAVE_UNISTD_H #include #endif @@ -283,8 +288,6 @@ struct rusage { #endif #if PURIFY -/* disable assert() under purify */ -#define NODEBUG #define LOCAL_ARRAY(type,name,size) \ static type *local_##name=NULL; \ type *name = local_##name ? local_##name : \