Author: rjung Date: Thu Dec 18 03:02:57 2008 New Revision: 727695 URL: http://svn.apache.org/viewvc?rev=727695&view=rev Log: Add missing define for MAX_PATH on Netware. Thanks to Guenter.
Modified: tomcat/connectors/trunk/jk/native/common/jk_global.h tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml Modified: tomcat/connectors/trunk/jk/native/common/jk_global.h URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/jk_global.h?rev=727695&r1=727694&r2=727695&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/native/common/jk_global.h (original) +++ tomcat/connectors/trunk/jk/native/common/jk_global.h Thu Dec 18 03:02:57 2008 @@ -370,6 +370,14 @@ #define JK_INVALID_SOCKET (-1) #endif +#ifdef NETWARE +#ifdef __NOVELL_LIBC__ +#define MAX_PATH 511 +#else +#define MAX_PATH 255 +#endif +#endif + #ifdef AS400_UTF8 #define strcasecmp(a,b) apr_strnatcasecmp(a,b) #endif Modified: tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml?rev=727695&r1=727694&r2=727695&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml (original) +++ tomcat/connectors/trunk/jk/xdocs/miscellaneous/changelog.xml Thu Dec 18 03:02:57 2008 @@ -44,6 +44,9 @@ <subsection name="Native"> <changelog> <fix> + Missing define for MAX_PATH on Netware. Patch by Guenter Knauf. (rjung) + </fix> + <fix> <bug>46352</bug>: Fix Apache crash when using SetHandler jakarta-servlet in VHost without any JkMount. Crash due to incorrect initialization of mount extensions. (rjung) --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org