X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=jcc.h;h=fba29af18821980167b4f853a7c0b7ef842e9b4c;hp=b821a7c9453ed9bf14c202d61b153364ee551115;hb=7537bf8433682b12ccf1099e1e30c978f4bd52a2;hpb=9988f554a0fa118d4e5bdc68ee151011d882b3fc diff --git a/jcc.h b/jcc.h index b821a7c9..fba29af1 100644 --- a/jcc.h +++ b/jcc.h @@ -1,6 +1,6 @@ #ifndef JCC_H_INCLUDED #define JCC_H_INCLUDED -#define JCC_H_VERSION "$Id: jcc.h,v 1.14 2006/07/18 14:48:46 david__schmidt Exp $" +#define JCC_H_VERSION "$Id: jcc.h,v 1.15 2006/09/02 10:24:30 fabiankeil Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jcc.h,v $ @@ -35,6 +35,14 @@ * * Revisions : * $Log: jcc.h,v $ + * Revision 1.15 2006/09/02 10:24:30 fabiankeil + * Include pthread.h for OpenBSD to make Privoxy build again. + * + * Tested shortly on OpenBSD 3.9 without problems, but the OpenBSD + * port has additional patches to use the mutexes OSX_DARWIN needs, + * and it should be investigated if they are still required for + * reliable operation. + * * Revision 1.14 2006/07/18 14:48:46 david__schmidt * Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch) * with what was really the latest development (the v_3_0_branch branch) @@ -137,14 +145,13 @@ extern int g_terminate; #if defined(OSX_DARWIN) || defined(__OpenBSD__) #include -#endif /* defined(OSX_DARWIN) || defined(__OpenBSD__) */ - #ifdef OSX_DARWIN extern pthread_mutex_t gmtime_mutex; extern pthread_mutex_t localtime_mutex; +#endif /* def OSX_DARWIN */ extern pthread_mutex_t gethostbyaddr_mutex; extern pthread_mutex_t gethostbyname_mutex; -#endif /* def OSX_DARWIN */ +#endif /* defined(OSX_DARWIN) || defined(__OpenBSD__) */ #ifdef FEATURE_PTHREAD extern pthread_mutex_t log_mutex;