hgomez      2002/09/24 15:45:18

  Modified:    jk/native2/include jk_msg.h jk_global.h
  Log:
  AS/400 back port from 1.2.0.
  
  Revision  Changes    Path
  1.14      +3 -0      jakarta-tomcat-connectors/jk/native2/include/jk_msg.h
  
  Index: jk_msg.h
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/include/jk_msg.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- jk_msg.h  2 Jul 2002 16:53:59 -0000       1.13
  +++ jk_msg.h  24 Sep 2002 22:45:18 -0000      1.14
  @@ -142,6 +142,9 @@
       int (*appendString)(struct jk_env *env, struct jk_msg *_this, 
                            const char *param);
   
  +    int (*appendAsciiString)(struct jk_env *env, struct jk_msg *_this, 
  +                             const char *param);
  +
       int (*appendMap)(struct jk_env *env, struct jk_msg *_this, 
                        struct jk_map *map);
   
  
  
  
  1.14      +10 -3     jakarta-tomcat-connectors/jk/native2/include/jk_global.h
  
  Index: jk_global.h
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native2/include/jk_global.h,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- jk_global.h       10 Jun 2002 23:58:52 -0000      1.13
  +++ jk_global.h       24 Sep 2002 22:45:18 -0000      1.14
  @@ -73,6 +73,13 @@
   #include <time.h>
   #include <ctype.h>
   
  +#ifdef AS400
  +#include "ap_config.h"
  +#include "apr_strings.h"
  +#include "apr_lib.h"
  +extern char *strdup (const char *str);
  +#endif
  +
   #include <sys/types.h>
   #include <sys/stat.h>
   
  @@ -119,10 +126,10 @@
           #include <netinet/tcp.h>
           #include <arpa/inet.h>
           #include <sys/un.h>
  -        #ifndef _OSD_POSIX
  +        #if !defined(_OSD_POSIX) && !defined(AS400) && !defined(CYGWIN)
               #include <sys/socketvar.h>
           #endif
  -        #ifndef HPUX11
  +        #if !defined(HPUX11) && !defined(AS400)
               #include <sys/select.h>
           #endif
       #endif
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to