>clar 2004/06/11 13:13:19 > > Added NetWare specific option in apr_cmdtype_e to start program in a > separate address space for cmdtype field in apr_procattr_t struct > > --- apr_thread_proc.h 10 Jun 2004 10:57:24 -0000 1.105 > +++ apr_thread_proc.h 11 Jun 2004 20:13:19 -0000 1.106 > +#ifdef NETWARE > + APR_PROGRAM_ADDRSPACE, /**< invoke the program in its own address > space */ > +#endif [...] > } apr_cmdtype_e;
APR constants must not be platform conditional, as Jeff points out, this would just be a no-op on non-Netware platforms. Bill
