Author: stas Date: Mon Dec 6 06:51:57 2004 New Revision: 109974 URL: http://svn.apache.org/viewcvs?view=rev&rev=109974 Log: Fix `strEQ' redefined warnings in the perl build
Modified: httpd/apreq/branches/1.x/Changes httpd/apreq/branches/1.x/Cookie/Cookie.xs httpd/apreq/branches/1.x/Request/Request.xs Modified: httpd/apreq/branches/1.x/Changes Url: http://svn.apache.org/viewcvs/httpd/apreq/branches/1.x/Changes?view=diff&rev=109974&p1=httpd/apreq/branches/1.x/Changes&r1=109973&p2=httpd/apreq/branches/1.x/Changes&r2=109974 ============================================================================== --- httpd/apreq/branches/1.x/Changes (original) +++ httpd/apreq/branches/1.x/Changes Mon Dec 6 06:51:57 2004 @@ -4,6 +4,8 @@ =item 1.33 +Fix `strEQ' redefined warnings in the perl build [Stas] + Upgrade license to the Apache License Version 2.0. [davidw, joes] =item 1.32 Modified: httpd/apreq/branches/1.x/Cookie/Cookie.xs Url: http://svn.apache.org/viewcvs/httpd/apreq/branches/1.x/Cookie/Cookie.xs?view=diff&rev=109974&p1=httpd/apreq/branches/1.x/Cookie/Cookie.xs&r1=109973&p2=httpd/apreq/branches/1.x/Cookie/Cookie.xs&r2=109974 ============================================================================== --- httpd/apreq/branches/1.x/Cookie/Cookie.xs (original) +++ httpd/apreq/branches/1.x/Cookie/Cookie.xs Mon Dec 6 06:51:57 2004 @@ -14,7 +14,6 @@ */ #define PERL_NO_GET_CONTEXT /* we want efficiency */ -#include "apache_cookie.h" #ifdef WIN32 @@ -54,6 +53,7 @@ #undef __attribute__ #include "mod_perl.h" +#include "apache_cookie.h" #ifdef WIN32 Modified: httpd/apreq/branches/1.x/Request/Request.xs Url: http://svn.apache.org/viewcvs/httpd/apreq/branches/1.x/Request/Request.xs?view=diff&rev=109974&p1=httpd/apreq/branches/1.x/Request/Request.xs&r1=109973&p2=httpd/apreq/branches/1.x/Request/Request.xs&r2=109974 ============================================================================== --- httpd/apreq/branches/1.x/Request/Request.xs (original) +++ httpd/apreq/branches/1.x/Request/Request.xs Mon Dec 6 06:51:57 2004 @@ -14,8 +14,6 @@ */ #define PERL_NO_GET_CONTEXT /* we want efficiency */ -#include "apache_request.h" -#include "patchlevel.h" #ifdef WIN32 @@ -55,6 +53,8 @@ #undef __attribute__ #include "mod_perl.h" +#include "apache_request.h" +#include "patchlevel.h" #ifdef WIN32
