OSDN Git Service

Remove SFTP support to release 1.98f.
[ffftp/ffftp.git] / contrib / putty / MKAUTO.SH
diff --git a/contrib/putty/MKAUTO.SH b/contrib/putty/MKAUTO.SH
deleted file mode 100644 (file)
index 6548951..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-#! /bin/sh\r
-# This script makes the autoconf mechanism for the Unix port work.\r
-# It's separate from mkfiles.pl because it won't work (and isn't needed)\r
-# on a non-Unix system.\r
-\r
-# It's nice to be able to run this from inside the unix subdir as\r
-# well as from outside.\r
-test -f unix.h && cd ..\r
-\r
-# Persuade automake to give us a copy of its install-sh. This is a\r
-# pain because I don't actually want to have to _use_ automake.\r
-# Instead, I construct a trivial unrelated automake project in a\r
-# temporary subdirectory, run automake so that it'll copy\r
-# install-sh into that directory, then copy it back out again.\r
-# Hideous, but it should work.\r
-\r
-mkdir automake-grievous-hack\r
-cat > automake-grievous-hack/hello.c << EOF\r
-#include <stdio.h>\r
-int main(int argc, char **argv)\r
-{\r
-    printf("hello, world\n");\r
-    return 0;\r
-}\r
-EOF\r
-cat > automake-grievous-hack/Makefile.am << EOF\r
-bin_PROGRAMS = hello\r
-hello_SOURCES = hello.c\r
-EOF\r
-cat > automake-grievous-hack/configure.ac << EOF\r
-AC_INIT\r
-AM_INIT_AUTOMAKE(hello, 1.0)\r
-AC_CONFIG_FILES([Makefile])\r
-AC_PROG_CC\r
-AC_OUTPUT\r
-EOF\r
-echo Some news > automake-grievous-hack/NEWS\r
-echo Some text > automake-grievous-hack/README\r
-echo Some people > automake-grievous-hack/AUTHORS\r
-echo Some changes > automake-grievous-hack/ChangeLog\r
-rm -f install-sh # this won't work if we accidentally have one _here_\r
-(cd automake-grievous-hack && autoreconf -i && \\r
-  cp install-sh ../unix/install-sh)\r
-rm -rf automake-grievous-hack\r
-\r
-# That was the hard bit. Now run autoconf on our real configure.in.\r
-(cd unix && autoreconf && rm -rf aclocal.m4 autom4te.cache)\r