Return-Path: Mailing-List: contact apreq-cvs-help@httpd.apache.org; run by ezmlm Delivered-To: mailing list apreq-cvs@httpd.apache.org Received: (qmail 63360 invoked by uid 1099); 11 Feb 2001 23:33:51 -0000 Date: 11 Feb 2001 23:33:51 -0000 Message-ID: <20010211233351.63359.qmail@apache.org> From: jimw@apache.org To: httpd-apreq-cvs@apache.org Subject: cvs commit: httpd-apreq/Request Request.xs jimw 01/02/11 15:33:50 Modified: Cookie Cookie.xs Request Request.xs Log: win32 patches from randy Revision Changes Path 1.6 +66 -0 httpd-apreq/Cookie/Cookie.xs Index: Cookie.xs =================================================================== RCS file: /home/cvs/httpd-apreq/Cookie/Cookie.xs,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- Cookie.xs 2001/01/07 03:25:03 1.5 +++ Cookie.xs 2001/02/11 23:33:50 1.6 @@ -1,6 +1,72 @@ #include "apache_cookie.h" + +#ifdef WIN32 + +#ifdef uid_t +#define apache_uid_t uid_t +#undef uid_t +#endif +#define uid_t apache_uid_t + +#ifdef gid_t +#define apache_gid_t gid_t +#undef gid_t +#endif +#define gid_t apache_gid_t + +#ifdef stat +#define apache_stat stat +#undef stat +#endif + +#ifdef lstat +#define apache_lstat lstat +#undef lstat +#endif + +#ifdef sleep +#define apache_sleep sleep +#undef sleep +#endif + +#endif /* WIN32 */ + #undef __attribute__ #include "mod_perl.h" + +#ifdef WIN32 + +#undef uid_t +#ifdef apache_uid_t +#define uid_t apache_uid_t +#undef apache_uid_t +#endif + +#undef gid_t +#ifdef apache_gid_t +#define gid_t apache_gid_t +#undef apache_gid_t +#endif + +#ifdef apache_lstat +#undef lstat +#define lstat apache_lstat +#undef apache_lstat +#endif + +#ifdef apache_stat +#undef stat +#define stat apache_stat +#undef apache_stat +#endif + +#ifdef apache_sleep +#undef sleep +#define sleep apache_sleep +#undef apache_sleep +#endif + +#endif /* WIN32 */ typedef ApacheCookie * Apache__Cookie; 1.10 +66 -0 httpd-apreq/Request/Request.xs Index: Request.xs =================================================================== RCS file: /home/cvs/httpd-apreq/Request/Request.xs,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- Request.xs 2001/01/29 18:16:45 1.9 +++ Request.xs 2001/02/11 23:33:50 1.10 @@ -1,6 +1,72 @@ #include "apache_request.h" + +#ifdef WIN32 + +#ifdef uid_t +#define apache_uid_t uid_t +#undef uid_t +#endif +#define uid_t apache_uid_t + +#ifdef gid_t +#define apache_gid_t gid_t +#undef gid_t +#endif +#define gid_t apache_gid_t + +#ifdef stat +#define apache_stat stat +#undef stat +#endif + +#ifdef lstat +#define apache_lstat lstat +#undef lstat +#endif + +#ifdef sleep +#define apache_sleep sleep +#undef sleep +#endif + +#endif /* WIN32 */ + #undef __attribute__ #include "mod_perl.h" + +#ifdef WIN32 + +#undef uid_t +#ifdef apache_uid_t +#define uid_t apache_uid_t +#undef apache_uid_t +#endif + +#undef gid_t +#ifdef apache_gid_t +#define gid_t apache_gid_t +#undef apache_gid_t +#endif + +#ifdef apache_lstat +#undef lstat +#define lstat apache_lstat +#undef apache_lstat +#endif + +#ifdef apache_stat +#undef stat +#define stat apache_stat +#undef apache_stat +#endif + +#ifdef apache_sleep +#undef sleep +#define sleep apache_sleep +#undef apache_sleep +#endif + +#endif /* WIN32 */ typedef ApacheRequest * Apache__Request; typedef ApacheUpload * Apache__Upload;