//quick option to disable all renewal option, used by ./configure
//#define PRERE
#ifndef PRERE
Like the comment said, if you want to disable all renewal options, just remove '//' before '#define PRERE', so this ONE line is uncomment, no need to touch other lines. Your server will run in pre-renewal mode. The C code means:
"I defined PRERE (so I'm wanting this server running in pre-renewal mode. After that line is a condition check, #ifndef PRERE means 'if not defined PRERE', of course I defined PRERE above so that check is false, and everything after that check is skipped.
In the original file, #define PRERE is commented (//#define PRERE) so when the check occurs, PRERE is not defined before, and it return true (if not defined? check), and every options which define renewal settings after that check is enable."
The commented lines makes no sense to a C compiler, its sole purpose is to make code easier to read for human and make auto-doc tools do their job. If A then B is something like normal English, so if A is wrong we do not do B and vice versa.