On Tue, 27 Nov 2001, Cliff Woolley wrote: > +1 on concept, but if you're going to do this, the things need APR_ > namespace protection.
ok, wasn't sure if those values might already be defined in a system header file. if so, then i'll change to: #ifdef MMAP_THXéRĉOLD # define APR_MMAP_THRESHOLD MMAP_THRESHOLD #else # ifdef SUNOS4 # define APR_MMAP_THRESHOLD (8*1024) # else # define APR_MMAP_THRESHOLD 1 # endif /* SUNOS4 */ #endif /* MMAP_THRESHOLD */ otherwise, i'll just prefix them all with APR_. lemme know which.