#if !defined(_KERNEL) && !defined(_LIMITS_H_) && !defined(_SYS_PARAM_H_) #if __GNUC__ #warning "No user-serviceable parts inside." #endif #endif
looking in apr.h where we include sys/syslimits.h, we're also including limits.h, which on this system gets us the contents of sys/syslimits.h anyway, so my first instinct is to change it to only include sys/syslimits.h if we don't have limits.h, but i suppose that is likely to break on other systems or something...
any ideas?
-garrett
