X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=src%2Fproject.h;h=06412cd825e1fcd1fb130807ee9e8da24b1378c6;hp=08191d85a1f21d52111e655f4d16ab80b545b39f;hb=6664b73fc176fce736341f7483a103163a31ed88;hpb=1be7853caf227f7c422675a77de841c55f94e466 diff --git a/src/project.h b/src/project.h index 08191d85..06412cd8 100644 --- a/src/project.h +++ b/src/project.h @@ -1,10 +1,10 @@ #ifndef PROJECT_H_INCLUDED #define PROJECT_H_INCLUDED /** Version string. */ -#define PROJECT_H_VERSION "$Id: project.h,v 2.1 2002/06/04 16:35:56 jongfoster Exp $" +#define PROJECT_H_VERSION "$Id: project.h,v 2.2 2002/07/12 04:26:17 agotneja Exp $" /********************************************************************* * - * File : $Source: /cvsroot/ijbswa/current/src/project.h,v $ + * File : $Source: /cvsroot/ijbswa//current/src/project.h,v $ * * Purpose : Defines data structures which are widely used in the * project. Does not define any variables or functions @@ -37,6 +37,14 @@ * * Revisions : * $Log: project.h,v $ + * Revision 2.2 2002/07/12 04:26:17 agotneja + * Re-factored 'chat()' to become understandable and maintainable as + * a first step in adding Transparent Proxy functionality. + * + * Added several new static functions in jcc.c, and moved some data + * parameters up into project.h to allow them to be passed between + * the new functions. + * * Revision 2.1 2002/06/04 16:35:56 jongfoster * Moving three variable declarations to jcc.c from project.h * @@ -458,6 +466,8 @@ /* Need time_t for file_list */ #include +/* Needed for pcre choice */ +#include "config.h" /* * Include appropriate regular expression libraries. @@ -468,7 +478,11 @@ #ifdef STATIC_PCRE # include "pcre.h" #else -# include +# ifdef PCRE_H_IN_SUBDIR +# include +# else +# include +# endif #endif #ifdef STATIC_PCRS @@ -480,7 +494,11 @@ #ifdef STATIC_PCRE # include "pcreposix.h" #else -# include +# ifdef PCRE_H_IN_SUBDIR +# include +# else +# include +# endif #endif #ifdef AMIGA