1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
From: Lars Brinkhoff <lars@nocrew.org>
Date: Fri, 13 Nov 2015 17:59:35 +0100
Subject: Generate autotools files.
Applied-Upstream: commit:21cc94753aa44ff673b8deaa9c89251ce388f326
---
README | 4 +++-
autogen.sh | 6 ++++++
2 files changed, 9 insertions(+), 1 deletion(-)
create mode 100755 autogen.sh
diff --git a/README b/README
index 5466aef..7562947 100644
--- a/README
+++ b/README
@@ -12,6 +12,9 @@ can find some useful information in the FAQ file.
This program is mostly intended for technically oriented users.
They should know what to do.
+Read INSTALL for instructions on how to build a released version.
+If you build the development repository, run ./autogen.sh first.
+
httptunnel is free software. See COPYING for terms and conditions.
If you like it, I would appreciate if you sent a post card to:
Lars Brinkhoff
@@ -22,7 +25,6 @@ If you like it, I would appreciate if you sent a post card to:
Information and/or latest release should be available from these places:
http://www.nocrew.org/software/httptunnel.html
http://www.gnu.org/software/httptunnel/httptunnel.html
- ftp://ftp.nocrew.org/pub/nocrew/unix
ftp://ftp.gnu.org/pub/httptunnel
I take no responsibility for what you do with this software. It has
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..4baa9eb
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+aclocal
+autoheader
+autoconf
+automake
|