On 24.02.2018 11:18, Paul Hammant wrote: > Based on Brane's email from yesterday, I did a build for Subversion on > the Mac, with Homebrew and XCode installed already. > > brew install apr apr-util httpd serf zlib berkeley-db swig lz4 utf8proc > > # These two were necessary for me, for some reason > # Although handing flags to ./configure was an alternative > brew link --force apr > brew link --force apr-util
Not such a good idea; this may break the default httpd and other tools installed on macOS that use the system default APR and APR-Util. > ./autogen.sh > > ./configure Better to use --with-apr and --with-apr-util here; you'd also need --with-apxs, to be on the safe side. Note that Homebrew uses its own build of APR and APR-Util with Subversion, and doesn't "brew link --force" them. -- Brane