Hi, On Mon, Apr 08, 2013 at 11:04:17AM -0400, Maureen Barger wrote: > This is very thorough and I thank you, but I am not finding anything > like that in the subversion dir tree. > Daniel, I am also not finding 'You could look for a '#define > AP_HAVE_C99 1' line in files that > http_log.h includes.'
The usual way to gain hard evidence about current settings of defines is to #define AP_HAVE_C99 foo_force_conflict somewhere prominent in a relevant compile unit (.cpp or some important header that participates in the build), to forcibly cause a define conflict which will make gcc barf about it and thereby show where the actual define was originally defined (*iff* it was defined). You might need to relocate the temporary force-define to some other location in order to have it be effective, though. HTH, Andreas Mohr