On May 7, 2012 7:10 AM, <s...@apache.org> wrote: >... > +++ subversion/trunk/subversion/svnserve/main.c Mon May 7 11:10:05 2012 > @@ -150,6 +150,11 @@ void winservice_notify_stop(void) > #define SVNSERVE_OPT_CACHE_REVPROPS 267 > #define SVNSERVE_OPT_SINGLE_CONN 268 > > +/* Helper macros to stringify ra_svn's default port number. */ > +#define SVNSERVE_PORT(p) SVNSERVE_PORT_STR(p) > +#define SVNSERVE_PORT_STR(p) #p
I'd suggest APR_STRINGIFY rather than new macros. >... Cheers, -g