Hi, In <599af4e205040709004801be9e / mail.gmail.com> "Accessing SVN through Ruby" on Fri, 8 Apr 2005 01:00:27 +0900, Bob Aman <vacindak / gmail.com> wrote: > I saw the Subversion SWIG > bindings in the Subversion repository at > http://svn.collab.net/repos/svn/trunk/subversion/bindings/swig/ruby/ > but when I tried to work with them, I couldn't figure out how to set > them up properly. Try the following sequence: % svn co http://svn.collab.net/repos/svn/trunk svn % cd svn % ./autogen.sh # or # % env AUTOCONF=autoconf259 \ # AUTOHEADER=autoheader259 \ # LIBTOOL_M4=/usr/local/share/aclocal/libtool15.m4 \ # ./autogen.sh # (If you are working on FreeBSD.) % ./configure # or # % ./configure \ # --with-apr=/usr/local/lib/apache2 \ # --with-apr-util=/usr/local/lib/apache2 # (If you are working on FreeBSD.) % make check-swig-rb % sudo make install-swig-rb # if you pass all test. -- kou