Hi all, regardless at which APR version I look at - everywhere I find: /** * This symbol is defined for internal, "development" copies of APR. This * symbol will be #undef'd for releases. */ #undef APR_IS_DEV_VERSION
so it seems to me that this flag is currently not used, and: /** Internal: string form of the "is dev" flag */ #ifdef APR_IS_DEV_VERSION #define APR_IS_DEV_STRING "-dev" #else #define APR_IS_DEV_STRING "" #endif does never apply...; what's the reason that we dont use this with APR? Guenter.
