From: hno <> Date: Thu, 19 Jun 2003 22:42:40 +0000 (+0000) Subject: 2003-01-09 06:04 robertc X-Git-Tag: SQUID_3_0_PRE1~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4116bdb8a0fb95c2ee60ac24d4cd830396c0119;p=thirdparty%2Fsquid.git 2003-01-09 06:04 robertc Require _REENTRANT when compiing aufs --- diff --git a/src/fs/aufs/aiops.cc b/src/fs/aufs/aiops.cc index e3fb62b016..b3f99bac47 100644 --- a/src/fs/aufs/aiops.cc +++ b/src/fs/aufs/aiops.cc @@ -1,5 +1,5 @@ /* - * $Id: aiops.cc,v 1.23 2003/02/21 22:50:29 robertc Exp $ + * $Id: aiops.cc,v 1.24 2003/06/19 16:42:40 hno Exp $ * * DEBUG: section 43 AIOPS * AUTHOR: Stewart Forster @@ -32,6 +32,10 @@ * */ +#ifndef _REENTRANT +#error "_REENTRANT MUST be defined to build squid async io support." +#endif + #include "squid.h" #include "store_asyncufs.h"