From: Roger Dingledine Date: Sat, 29 Jun 2002 03:01:49 +0000 (+0000) Subject: ./autogen.sh runs auto* and then ./configure X-Git-Tag: tor-0.0.2pre8~453 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcc9fa865753626e365563f52d2104702c304eb2;p=thirdparty%2Ftor.git ./autogen.sh runs auto* and then ./configure It should be all you need to do to get working Makefiles on your platform, whatever your platform is. :) Let me know if it doesn't generate Makefiles for you. There will still be some bugs to work out in detecting openssl correctly, in checking for only the right header files, etc. But we're on our way. svn:r15 --- diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000000..0b1eec9d8a --- /dev/null +++ b/autogen.sh @@ -0,0 +1,5 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. +aclocal && autoheader && autoconf && automake +./configure --enable-debug +