Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
OK, so I can get so far ... svn co http://svn.apache.org/repos/asf/subversion/trunk subversion cd subversion brew install libtool apr cp /usr/local/Cellar/libtool/2.4.6_1/share/libtool/build-aux/config.sub build/ autoconf ./configure --build=x86_64 --prefix=/usr/local --with-openssl --with-ssl --w

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
Thank you, that allows configure to complete w/o error. Next up, libtool $ make /bin/sh "/scm/oss/subversion/libtool" --tag=CC --silent --mode=compile gcc -std=c90 -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10 -Werror=unknown-warning-option -g -O2 -g -O2 -I./subversion/include -I.

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
Yup, glibtool is needed on the Mac (brew install libtool makes /usr/local/bin/glibtool). That and a corresponding shim source: #!/bin/sh /usr/local/bin/glibtool "$@"

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
Yup, that builds through to completion, now. Thanks Troy.

Contributing to the "how to build" documentation

2017-10-28 Thread Paul Hammant
There's a file tools/dev/unix-build/README that has some information. Is it up to date? It's not referred to in other files. Most importantly, not in/from /README. - Paul

Re: Building Subversion on the Mac

2017-10-28 Thread Branko Čibej
On 28.10.2017 14:02, Paul Hammant wrote: > OK, so I can get so far ... > > svn co http://svn.apache.org/repos/asf/subversion/trunk subversion > cd subversion > brew install libtool apr > cp > /usr/local/Cellar/libtool/2.4.6_1/share/libtool/build-aux/config.sub > build/ >

Re: Building Subversion on the Mac

2017-10-28 Thread Paul Hammant
> > I sent you my build script for the Mac, that uses Homebrew, a while ago. > Why are you still having problems? > > You're right, you did. I'll take another look, Brane. Meanwhile I wrote: https://github.com/subsyncit/subsyncit/wiki/Building-Subversion-on-the-Mac

Python3 Swig Bindings Branch (was Re: Python 3 Bindings Query)

2017-10-28 Thread Troy Curtis Jr
Howdy guys, I thought I'd point out my first (useful) commit to the ^/subversion/branches/swig-py3 branch, r1813665. This adds the py3c library to the build and replaces (hopefully all) the various functions that are incompatible between 2 and 3 with the appropriate py3c provided interfaces. The