aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/demos/tunala/autogunk.sh
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2004-03-17 12:11:09 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2004-03-17 12:11:09 +0000
commite787e57d2fcf53c0141dcfdc5974bd8a706f0308 (patch)
tree086fb6b3d3e003caef8aabe591caecaedc86210a /crypto/openssl/demos/tunala/autogunk.sh
parent81ac585294418460a598ae2c6d3eeaf0d993b18a (diff)
This commit was manufactured by cvs2svn to create tagvendor/openssl/0.9.7c-patch1
'openssl-vendor-crypto-v0_9_7c_patch1'.
Notes
Notes: svn path=/vendor-crypto/openssl/dist/; revision=127114 svn path=/vendor-crypto/openssl/0.9.7c-patch1/; revision=127116; tag=vendor/openssl/0.9.7c-patch1
Diffstat (limited to 'crypto/openssl/demos/tunala/autogunk.sh')
-rwxr-xr-xcrypto/openssl/demos/tunala/autogunk.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/crypto/openssl/demos/tunala/autogunk.sh b/crypto/openssl/demos/tunala/autogunk.sh
deleted file mode 100755
index c9783c6261c3..000000000000
--- a/crypto/openssl/demos/tunala/autogunk.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-# This script tries to follow the "GNU way" w.r.t. the autobits.
-# This does of course generate a number of irritating files.
-# Try to get over it (I am getting there myself).
-
-# This should generate any missing crud, and then run autoconf which should turn
-# configure.in into a "./configure" script and "Makefile.am" into a
-# "Makefile.in". Then running "./configure" should turn "Makefile.in" into
-# "Makefile" and should generate the config.h containing your systems various
-# settings. I know ... what a hassle ...
-
-# Also, sometimes these autobits things generate bizarre output (looking like
-# errors). So I direct everything "elsewhere" ...
-
-(aclocal
-autoheader
-libtoolize --copy --force
-automake --foreign --add-missing --copy
-autoconf) 1> /dev/null 2>&1
-
-# Move the "no-autotools" Makefile out of the way
-if test ! -f Makefile.plain; then
- mv Makefile Makefile.plain
-fi