From: Andrew Tridgell Date: Sat, 30 Mar 2002 11:09:26 +0000 (+0100) Subject: define LOCK_EX for solaris X-Git-Tag: v1.0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1fa78d96a04dcd6c8954ebcbafa76d161050f8ef;p=thirdparty%2Fccache.git define LOCK_EX for solaris --- diff --git a/ccache.h b/ccache.h index 6aaee51cc..64a7567f0 100644 --- a/ccache.h +++ b/ccache.h @@ -103,3 +103,6 @@ ARGS *args_init(void); void args_add(ARGS *args, const char *s); void args_pop(ARGS *args, int n); +#ifndef LOCK_EX +#define LOCK_EX 2 +#endif