r1189580 | gstein | 2011-10-27 02:07:35 +0000 (Thu, 27 Oct 2011) Fix SQL transformation on Windows (and NetWare) builds. The \r\n pattern messed up the output files. Reported by: NormW <normw{_AT_}gknw.net> * build/transform_sql.py: (Processor.process_file): strip trailing whitespace from the line before placing it into the output. this will clear off a \r character, and any potential trailing spaces. (continue to add a space in the format string so that string-joining does not create something like: "... FROM tableWHERE ...") we keep leading whitespace for nice indentation of the queries.
r1204407 | julianfoad | 2011-11-21 09:10:37 +0000 (Mon, 21 Nov 2011) Change a switch statement to an equivalent 'if' statement to work around the OWC compiler's current inability to handle a 64-bit switch expression, and thus to enable Subversion to be compiled with OWC, since this is the only place where it stumbles. Patch by: NormW <normw{_AT_}gknw.net> * subversion/libsvn_ra_svn/client.c (optbool_to_tristate): Use 'if' instead of 'switch'.