INSTALLATION INTRODUCTION
-------------------------

This file describes how to compile and install lukemftp on your
system.

For most systems, execute the following to compile and install
lukemftp:
	./configure
	make
	make install

A preformatted manual page (src/ftp.cat1) is also installed. If
you wish to install the source (src/ftp.1), ensure that your system
has up-to-date mandoc macros. groff ships with this macro suite,
but it has bugs. Try:
    ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-current/src/share/tmac/
for a more recent version.


CONFIGURATION OPTIONS
---------------------

lukemftp is configured using an `autoconf' generated `configure'
script.  `configure' supports the following options:

* The standard `autoconf configure' options, including:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [same as prefix]
  --srcdir=DIR            find the sources in DIR [configure dir or ..]
                          BSD or GNU make may be required for this to work.

* Specific options:
  --enable-editcomplete   Turn on command line editing and completion.
  --disable-editcomplete  Turn off command line editing and completion
                          [default: enabled].
  --with-socks            Compile with SOCKS firewall traversal support.
  --with-socks5[=PATH]    Compile with SOCKS5 firewall traversal support.
  --with-socks4[=PATH]    Compile with SOCKS4 firewall traversal support.

The following environment variables can be set to override various
compiler related settings.
  CC=compiler		specify name of the C compiler (default: gcc or cc)
  CFLAGS=flags		specify flags to C compiler (default: -O -g or just -O)
  LDFLAGS=flags		specify flags to linker (default: none)

This can be achieved with:
	env CC="compiler" CFLAGS="flags" LDFLAGS="flags" ./configure


		=======================================
		NOTE: You will need an ANSI C compiler.
		=======================================


PLATFORM SPECIFIC NOTES
-----------------------

The following platforms & compilers have been tested:

- BSD/OS 4.0.1 (x86)
	Compiler: /bin/cc
	 version: gcc 2.7.2.1

- HP/UX 10.20:
	Compiler: /opt/ansic/bin/cc -Ae -D_HPUX_SOURCE
	 version: A.10.32.03

- HP/UX 11.00:
- HP/UX 11.00 64 bit:
	Compiler: /opt/ansic/bin/cc -Ae -D_HPUX_SOURCE
	 version: A.11.01.00

- IRIX 6.5.4
	Compiler: /bin/cc
	 version: MIPSpro Compilers: Version 7.2.1

- NetBSD 1.3.3 (i386)
- NetBSD 1.4N (alpha)
	Compiler: /usr/bin/cc

	Ignore warnings about ``passing arg 3 of `tputs' from
	incompatible pointer type''.

- RedHat Linux 5.0 (i386)
	Compiler: cc

- Solaris 2.5 (sparc)
- Solaris 2.6 (sparc)
- Solaris 7 (sparc)
- Solaris 7 (x86)
	Compiler: /opt/SUNWspro/bin/cc
	 version: SC3.0 15 Dec 1993
	 version: WorkShop Compilers 5.0
	Compiler: gcc
	 version: egcs-1.1.2
	 version: gcc 2.8.1
	 version: gcc 2.95.1

- Solaris 7 (sparc) 64 bit
	Compiler: /opt/SUNWspro/bin/cc -xarch=v9
	 version: WorkShop Compilers 5.0

- Ultrix 4.5
	Compiler: cc
	 version: MIPS C Compiler 3.0
	Compiler: gcc
	 version: 2.7.2.2
