From 24310e1544ba05ad0adcc9de89a652f8060787af Mon Sep 17 00:00:00 2001
From: Per Cederqvist <ceder@lysator.liu.se>
Date: Sat, 1 Jun 2002 20:21:28 +0000
Subject: [PATCH] Initial commit.

---
 .cvsignore   | 12 ++++++++++++
 NEWS         |  9 +++++++++
 README       | 27 +++++++++++++++++++++++++++
 bootstrap.sh |  9 +++++++++
 configure.ac |  9 +++++++++
 5 files changed, 66 insertions(+)
 create mode 100644 .cvsignore
 create mode 100644 NEWS
 create mode 100644 README
 create mode 100755 bootstrap.sh
 create mode 100644 configure.ac

diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 0000000..9266f1e
--- /dev/null
+++ b/.cvsignore
@@ -0,0 +1,12 @@
+.deps
+Makefile
+Makefile.in
+aclocal.m4
+autom4te.cache
+config.h
+config.h.in
+config.log
+config.status
+configure
+netscape-remote
+stamp-h1
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..d695543
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,9 @@
+News in 1.2 (release date 2002-06-01)
+=====================================
+
+ * The "expected version 1.1 but found version 4.79 instead" warning is gone.
+
+ * Some very minor bugfixes.
+
+ * GNU-style makefile framework added.  (Note!  This program is *not*
+   covered by the GNU GPL!  See AUTHORS for details.)
diff --git a/README b/README
new file mode 100644
index 0000000..0097151
--- /dev/null
+++ b/README
@@ -0,0 +1,27 @@
+netscape-remote is a utility that can control a running Netscape just
+like "netscape -remote ...", but since netscape-remote is a very tiny
+application it is much faster.
+
+The source code to netscape-remote is available from Netscape.  It is
+easy to compile.  You could get it here:
+
+	http://wp.netscape.com/newsref/std/remote.c
+	http://wp.netscape.com/newsref/std/vroot.h
+
+This package of netscape-remote adds a GNU-style configure script and
+convenient makefiles.  The core program is hardly modified, but see
+NEWS for the details.
+
+I don't expect there to be a need for any future releases of
+netscape-remote, since it is a stable program.  But if you have an
+improvement to this program, please do send it to me (unified diff
+prefered).  If I like your patch, I will give you write access to the
+CVS repository I use for this program.  Use this address:
+
+	ceder+netscape@lysator.liu.se
+
+Anonymous CVS access is available.  You need to use ./bootstrap.sh if
+you fetch the code from CVS.  Here is the magic command line:
+
+    cvs -d :pserver:anonymous@cvs.lysator.liu.se:/cvsroot/netscape-remote \
+	co netscape-remote
diff --git a/bootstrap.sh b/bootstrap.sh
new file mode 100755
index 0000000..c303d8b
--- /dev/null
+++ b/bootstrap.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+aclocal
+autoconf
+autoheader
+# We want most files that automake adds by default, but not the GNU
+# GPL license.
+automake -a
+rm COPYING
+automake --foreign
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..c7782f0
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,9 @@
+AC_INIT(netscape-remote, 1.2)
+AM_INIT_AUTOMAKE
+AM_CONFIG_HEADER(config.h)
+AC_PROG_CC
+AC_PATH_XTRA
+AC_CONFIG_FILES([Makefile])
+AC_DEFINE([STANDALONE], [1], 
+          [Define is netscape-remote is compiled standalone])
+AC_OUTPUT
-- 
GitLab