<     int i,j;
---
>     int i;
394a395
> #if 0
398c399
<         temp_core->limit_cpu = (struct rlimit *)apr_palloc (r->pool,sizeof(struct rlimit));
---
>         temp_core->limit_cpu = (struct rlimit *)apr_palloc (sizeof(struct rlimit));
427c428,430
<     return APR_SUCCESS ;
---
> #endif
>
>     return APR_SUCCESS;
433c436
<     int i,len;
---
>     int i;
439c442
<
---
>
443,446c446
< #if defined(RLIMIT_DATA) || defined(RLIMIT_VMEM) || defined(RLIMIT_AS) || defined(RLIMIT_NPROC) || defined(RLIMIT_CPU)
<     core_dir_config *conf = ap_get_module_config(r->per_dir_config,&core_module);
< #endif
<       if (suexec_mod) {
---
>     if (suexec_mod) {
502c502,503
<
---
>
> #if 0
538c539
<
---
> #endif
647c648
<
---
>
672c673
<
---
>
701,704c702,703
<         core_dir_config *conf = ap_get_module_config(r->per_dir_config,
<                                                               &core_module);
<
<               if (((rc = apr_procattr_create(&procattr, ptrans)) != APR_SUCCESS) ||
---
>
>         if (((rc = apr_procattr_create(&procattr, ptrans)) != APR_SUCCESS) ||
719,730d717
< #ifdef RLIMIT_CPU
<             ((rc = apr_procattr_limit_set(procattr, APR_LIMIT_CPU,
<                                       conf->limit_cpu)) != APR_SUCCESS) ||
< #endif
< #if defined(RLIMIT_DATA) || defined(RLIMIT_VMEM) || defined(RLIMIT_AS)
<             ((rc = apr_procattr_limit_set(procattr, APR_LIMIT_MEM,
<                                       conf->limit_mem)) != APR_SUCCESS) ||
< #endif
< #ifdef RLIMIT_NPROC
<             ((rc = apr_procattr_limit_set(procattr, APR_LIMIT_NPROC,
<                                       conf->limit_nproc)) != APR_SUCCESS) ||
< #endif
