Skip to content
Snippets Groups Projects
Commit 24310e15 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Initial commit.

parent 17d2fd7b
No related branches found
No related tags found
No related merge requests found
.deps
Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.h
config.h.in
config.log
config.status
configure
netscape-remote
stamp-h1
NEWS 0 → 100644
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.)
README 0 → 100644
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
#!/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
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment