stas 2003/08/25 16:28:25
Modified: xs/APR/APR APR.xs
Log:
get rid of the dependency on ap_
Revision Changes Path
1.7 +2 -3 modperl-2.0/xs/APR/APR/APR.xs
Index: APR.xs
===================================================================
RCS file: /home/cvs/modperl-2.0/xs/APR/APR/APR.xs,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- APR.xs 21 Aug 2003 02:11:30 -0000 1.6
+++ APR.xs 25 Aug 2003 23:28:24 -0000 1.7
@@ -19,9 +19,8 @@
apr_pool_t *global_pool;
apr_status_t rv = apr_pool_create(&global_pool, NULL);
if (rv != APR_SUCCESS) {
- ap_log_error(APLOG_MARK, APLOG_CRIT, rv, NULL,
- "Fatal error: unable to create global pool "
- "for use with by the scoreboard");
+ fprintf(stderr, "Fatal error: unable to create global pool "
+ "for use with by the scoreboard");
}
/* XXX: mutex locking? */
apr_hook_global_pool = global_pool;