sctemme 2003/06/25 11:51:11
Modified: specweb99/specweb99-2.0 mod_specweb99.c Log: Inexplicably, apr_strings.h does not do this, so it doesn't pick up <strings.h> on Solaris. We need this because we use index() in our do_post() function. Or, maybe we should explicitly #include apr_want.h? Revision Changes Path 1.28 +1 -0 httpd-test/specweb99/specweb99-2.0/mod_specweb99.c Index: mod_specweb99.c =================================================================== RCS file: /home/cvs/httpd-test/specweb99/specweb99-2.0/mod_specweb99.c,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- mod_specweb99.c 25 Jun 2003 18:03:18 -0000 1.27 +++ mod_specweb99.c 25 Jun 2003 18:51:11 -0000 1.28 @@ -66,6 +66,7 @@ #include "ap_config.h" #include "apr.h" +#define APR_WANT_STRFUNC #include "apr_strings.h" #include "apr_lib.h" #include "apr_file_info.h"
