From a191dbdbeab6f252c8b1e183f2b4b98ebd051e93 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 29 Jun 2002 03:01:49 +0000 Subject: [PATCH] ./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 --- trunk/autogen.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 trunk/autogen.sh diff --git a/trunk/autogen.sh b/trunk/autogen.sh new file mode 100755 index 0000000000..0b1eec9d8a --- /dev/null +++ b/trunk/autogen.sh @@ -0,0 +1,5 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. +aclocal && autoheader && autoconf && automake +./configure --enable-debug +